• Resolved Samuel

    (@samuel1376)


    In the Zindi II theme, it has a default “About Us” div (which I’ve renamed “Follow Our RSS Feeds” above the widgets in the sidebar. It only shows up on pages, not on blog posts, search results, archives or tag results. I would like for it to show site wide, on everything. How would I make such happen?

    The site is; verde results.com

    In the sidebar.php file, the markup looks like this;

    <?php  if ( is_home() || is_page() ) { ?>
    
    		<div class="kutu2">
    
    	<div class="ust2"><span></span></div>
    
    	<div class="spacer">
    
    <h2>Follow Our RSS Feeds</h2>
    
    				<p><ul><a href="https://www.verderesults.com/feed/" target="_blank"><img src="<?php bloginfo('template_url'); ?>/images/RSS.png" alt="Verde Results RSS Feed" height="74" width="75" /></a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://www.verderesults.com/feed/" target="_blank"> Subscribe to RSS Blog Feed</a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://verderesults.disqus.com/latest.rss" target="_blank"> Subscribe to RSS Commments Feed</a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://feedburner.google.com/fb/a/mailverify?uri=VerdeResults&loc=en_US" target="_blank"> Subscribe to Verde Results by Email</a></ul></p>
    
    	</div>	<div class="alt2"><span></span></div></div>
    
    <?php } ?>

    Is there something in the first line of this (<?php if ( is_home() || is_page() ) { ?>) that disables it from showing up in said pages? All the .php files call on the sidebar.php, so I’m thinking it must be, but I’m not sure of how to change it.

    How could this be changed?

    Any help is greatly appreciated!!

    thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try:

    <div class="kutu2">
    
    	<div class="ust2"><span></span></div>
    
    	<div class="spacer">
    
    <h2>Follow Our RSS Feeds</h2>
    
    				<p><ul><a href="https://www.verderesults.com/feed/" target="_blank"><img src="<?php bloginfo('template_url'); ?>/images/RSS.png" alt="Verde Results RSS Feed" height="74" width="75" /></a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://www.verderesults.com/feed/" target="_blank"> Subscribe to RSS Blog Feed</a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://verderesults.disqus.com/latest.rss" target="_blank"> Subscribe to RSS Commments Feed</a></ul>
                    <ul><img src="<?php bloginfo('template_url'); ?>/images/rss.gif" height="10" width="20" /><a href="https://feedburner.google.com/fb/a/mailverify?uri=VerdeResults&loc=en_US" target="_blank"> Subscribe to Verde Results by Email</a></ul></p>
    
    	</div>	<div class="alt2"><span></span></div></div>
    Thread Starter Samuel

    (@samuel1376)

    Perfect! Thank you esmi, I knew it was something simple.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Zindi II php Question’ is closed to new replies.