Announcement

Collapse
No announcement yet.

switch off components throughout the site

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    switch off components throughout the site

    Is it possible to switch off all of the components, attributes & choices throughout the site...?? The reason for doing this is that I have switched off the pricing for the whole site but I’m still left with the remaining components which just looks odd... Can anyone help?

    #2
    quick hack: make them invisible.

    in your templates, enclose the appropriate amount of components building code in a div like this:

    <div class="peekaboo">
    [your components are here]
    </div>

    and in your stylesheet, do this:

    .peekaboo {
    display:none;
    }

    Comment


      #3
      LMFAO!

      You're on form Mr. Gabe.
      "Opportunities multiply as they are seized." - Sun Tzu

      Comment


        #4
        ta

        thanks very much i will give it a try...

        Comment

        Working...
        X