Sidebar/Footer not appearing as it should
-
Hey guys, desperate here – I’ve tried disabling all plugins, renabling all plugins, putting in the unedited theme files back to the original state, and back again – and no luck. As you can see on my site the footer and sidebar aren’t appearing as they should, no changes to theme functions or anything has occured, I’m at a loss why it’s all of a sudden happened after a year of no issue.
Here’s my sidebar:
<div id=”sidebar”><div id=”box-newsletter” class=”box”>
<div class=”top”></div>
<div class=”mid”>
<h2>Subscribe To New Hustle</h2>
<div class=”interior”>
<p>Daily delivery to your inbox</p>
<form id=”subscribe” action=”https://www.feedburner.com/fb/a/mailverify” method=”post” target=”popupwindow” onsubmit=”window.open(‘https://feedburner.google.com/fb/a/mailverify?uri=THENEWHUSTLENET’, ‘popupwindow’, ‘scrollbars=yes,width=550,height=520’);return true”>
<span><input type=”text” value=”Email address, press enter” onfocus=”if (this.value == ‘Email address’) {this.value = ”;}” onblur=”if (this.value == ”) {this.value = ‘Email address’;}” name=”email” /></span>
<input type=”hidden” value=”THENEWHUSTLENET” name=”uri” />
<input type=”hidden” name=”loc” value=”en_US”/>
<input type=”hidden” value=”Subscribe” name=”title” />
</form>
</div>
</div>
<div class=”bot”></div>
</div><?php
$ad_250 = get_option(‘magaling_ad_250’);
if (!empty($ad_250)) {
?>
<div id=”box-googleads” class=”box”>
<div class=”top”></div>
<div class=”mid”>
<h2>Google Ads</h2>
<div class=”interior”>
<?php echo stripslashes($ad_250); ?>
</div>
</div>
<div class=”bot”></div>
</div>
<?php
}
?>
<div class=”box box-adverts”>
<div class=”top”></div>
<div class=”mid”>
<h2>Why You’re Here</h2>
<div class=”interior”>
<center><img border=”4″ border-color=”ffffff” src=”https://www.newhustle.net/wp-content/uploads/2010/02/rsz_1sidebar2.jpg” title=”Millennial Inspiration For a Hustling Generation – New Hustle Logo”></center><p style=”text-align: justify; font-size: small”>The blueprint for success can be broken down in to one question: how hard can you hustle? Your wildest dreams manifest from the very decisions you make with the remaining minutes of this day. Don’t leave it to society to tell you how much you’re worth, how far you can go, or what dreams you’ll never be able to achieve. You are here to learn that all the books, blogs and motivational hacks in the world will never be able to teach you how to tap in to the inexplicable strength within each of us. Harnessing this power in to <B><i>action</b></i> is the key. Welcome to motivation for the <b><i>millennial generation</b></i> – the world is yours for the taking, make the most of whatever time left you have here – <b><i>nobody wants to live with regrets on their deathbed.</b></i></p>
</div>
</div>
<div class=”bot”></div>
</div>
<?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘Side Bar’) ) : ?>
<?php endif; ?>
<div class=”box box-adverts”>
<div class=”top”></div>
<div class=”mid”>
<h2>Sponsors</h2>
<div class=”interior”>
<div>
<?php
$sqbtn_1_img = get_option(‘magaling_sqbtn_1_img_url’);
$sqbtn_1_url = get_option(‘magaling_sqbtn_1_web_url’);
$sqbtn_2_img = get_option(‘magaling_sqbtn_2_img_url’);
$sqbtn_2_url = get_option(‘magaling_sqbtn_2_web_url’);
?>
“><img alt=”Advertisement” src=”<?php echo (!empty($sqbtn_1_img)) ? $sqbtn_1_img : get_bloginfo(‘template_url’) . ‘/images/your-ads-125×125.jpg’; ?>” />
“><img alt=”Advertisement” src=”<?php echo (!empty($sqbtn_2_img)) ? $sqbtn_2_img : get_bloginfo(‘template_url’) . ‘/images/your-ads-125×125.jpg’; ?>” />
</div>
<div>
<?php
$sqbtn_3_img = get_option(‘magaling_sqbtn_3_img_url’);
$sqbtn_3_url = get_option(‘magaling_sqbtn_3_web_url’);
$sqbtn_4_img = get_option(‘magaling_sqbtn_4_img_url’);
$sqbtn_4_url = get_option(‘magaling_sqbtn_4_web_url’);
?>
“><img alt=”Advertisement” src=”<?php echo (!empty($sqbtn_3_img)) ? $sqbtn_3_img : get_bloginfo(‘template_url’) . ‘/images/your-ads-125×125.jpg’; ?>” />
“><img alt=”Advertisement” src=”<?php echo (!empty($sqbtn_4_img)) ? $sqbtn_4_img : get_bloginfo(‘template_url’) . ‘/images/your-ads-125×125.jpg’; ?>” />
</div>
</div>
</div>
<div class=”bot”></div>
</div><div id=”box-tabs” class=”box box-tabs”>
<div class=”top”></div>
<div class=”mid”>
<h2>Interesting Topics</h2>
<div class=”interior”>
<ul class=”tabs”>
<li class=”blr”>Blogroll
<li class=”arc”>Recent
<li class=”cat”>Categories<div class=”tabcontent” id=”tab-blr”>
-
<?php themefunction_list_bookmarks(); ?>
</div>
<div class=”tabcontent” id=”tab-arc”>
<?php themefunction_recentpost(); ?>
</div>
<div class=”tabcontent” id=”tab-cat”>-
<?php
add_filter(‘wp_list_categories’,’themefunction_alterlinks’);
wp_list_categories(‘sort_column=name&optioncount=0&hierarchical=0&title_li=’);
remove_filter(‘wp_list_categories’,’themefunction_alterlinks’);
?></div>
</div>
</div>
<div class=”bot”></div>
</div>Footer is visible on view source on webpage … any ideas? Thanks much.
- The topic ‘Sidebar/Footer not appearing as it should’ is closed to new replies.