• I bought the Headlines Theme from Woo Themes, but they haven’t answer or given me any help at all so far…

    THing is, the footer doesn’t show any footer bar or widgets. The footer code is:

    <!-- Footer Starts -->
    	<div id="footer-wrap">
    	<div id="footer">
    
    	<?php if ( ( function_exists('dynamic_sidebar') && (is_active_sidebar(3) || is_active_sidebar(4) || is_active_sidebar(5)) ) ) : ?>
    
    		<!-- Footer Widget Area Starts -->
    		<div class="footer-widgets">
    
    			<div class="block">
    				<?php dynamic_sidebar(3); ?>
    			</div>
    
    			<div class="block">
    				<?php dynamic_sidebar(4); ?>
    			</div>
    
    			<div class="block last">
    				<?php dynamic_sidebar(5); ?>
    			</div>
    
    		</div>
    		<!-- Footer Widget Area Ends -->
    
    		<div class="fix"></div>
    
    	<?php endif; ?>
    
    		<div id="credits">
    
    			<div id="copyright" class="col-left">
    				<p>&copy; <?php echo date('Y'); ?> <?php bloginfo(); ?>. <?php _e('All Rights Reserved.', 'woothemes') ?></p>
    			</div>
    
    			<div id="credit" class="col-right">
    				<p><?php _e('Powered by', 'woothemes') ?> <a href="https://www.www.remarpro.com">Wordpress</a>. <?php _e('Designed by', 'woothemes') ?> <a href="https://www.woothemes.com"><img src="<?php bloginfo('template_directory'); ?>/images/woothemes.png" width="87" height="21" alt="Woo Themes" /></a></p>
    			</div>
    
    		</div>
    
    	</div>
    	</div>
    	<!-- Footer Ends -->
    
    </div><!-- /#container -->
    <?php wp_footer(); ?>
    <?php if ( get_option('woo_google_analytics') <> "" ) { echo stripslashes(get_option('woo_google_analytics')); } ?>
    </body>
    </html>

    Yet, if you go to my website: you wont see it. And if you inspect the source, it wont even appear the footer at all!

Viewing 4 replies - 16 through 19 (of 19 total)
  • Thanks so much for this fix ajoull!

    mikethedj4

    (@mikethedj4)

    ajoull’s code worked a little for me, however the top footer, where the widgets would be was inside the bottom part where, the copyright, and credit would be at. So here’s my small fix to it!

    <!-- Footer Widget Area Starts -->
                <div id="footer-widgets">
    
    		<?php if ( ( function_exists('dynamic_sidebar') && (is_active_sidebar('footer-1') || is_active_sidebar('footer-2') || is_active_sidebar('footer-3')) ) ) : ?>
    
                    <div class="container col-full">
                        <div class="block">
                        <?php dynamic_sidebar('footer-1'); ?>
                        </div>
                        <div class="block">
                        <?php dynamic_sidebar('footer-2'); ?>
                        </div>
                        <div class="block last">
                        <?php dynamic_sidebar('footer-3'); ?>
                        </div>
                        <div class="fix"></div>
                    </div>
                </div>
                <!-- Footer Widget Area Ends -->
    
    		<div class="fix"></div>
    	<?php endif; ?>
    
    	<div id="footer">
    		<div class="col-full">
    
                <div id="copyright" class="col-left">
    		<p>? <?php echo date('Y'); ?> <?php bloginfo(); ?>. <?php _e('All Rights Reserved.', 'woothemes') ?></p>
                </div>
    
                <div id="credit" class="col-right">
    		<p><?php _e('Powered by', 'woothemes') ?> <a href="https://www.www.remarpro.com">WordPress</a>. <?php _e('Designed by', 'woothemes') ?> <a href="https://www.woothemes.com"><img src="<?php bloginfo('template_directory'); ?>/images/woothemes.png" width="87" height="21" alt="Woo Themes" /></a></p>
    		</div>
    		</div>
    	</div>
    	<!-- footer Ends -->
    
    </div><!-- /#container -->
    <?php wp_footer(); ?>
    <?php if ( get_option('woo_google_analytics') <> "" ) { echo stripslashes(get_option('woo_google_analytics')); } ?>
    </body>
    </html>
    yashmistrey

    (@yashmistrey)

    thanks the last code work really well, fine

    excellent friends, cheers

    can anyone tell me how to ad widget beweeen posts on index page

    for example see here Example

    search (ctrl+f) :’Popular Posts this Month’ in this site you’ll get there is an extra post with posts

Viewing 4 replies - 16 through 19 (of 19 total)
  • The topic ‘Headlines Theme Footer’ is closed to new replies.