• roxslide

    (@roxslide)


    Quick question that I Have been pulling my hair out on and can’t seem to figure out. I have wordpress multisite installed and have six different sites. All six websites use the same templates and theme. I am trying to put a slider on the index page of all six sites. Problem is, they all use the same template so when I attempt to add a second meta tag that solilouqy generates into the homepage template, it gives me an error.

    Is there a way of entering the meta tag info for all six sliders into the single template without causing conflict? Or do I need to create a different template for each index page?

    Thanks.

Viewing 1 replies (of 1 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    That greatly depends on the theme… You could code it in to check which site it’s being called on via blog_id

    <?php
    global $blog_id;
    
    if ($blog_id == 2) {
    code here;
    } 
    
    elseif ($blog_id == 3) {
    and here;
    } 
    
    else {
    and default here;
    }
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Solilouqy Slider w/Multisite’ is closed to new replies.