need to erase code from the wp site

Edit your theme's footer.php
Post the content here...
 
this is what it says
<?php
global $wpHelper, $TemplateBuilder, $layoutHelper, $htmlHelper;
?>

<?php $layoutHelper->contentTagClose(); ?> <!-- .main-content end -->
<?php $layoutHelper->getSidebarForPage('right'); ?>
</div> <!-- .row-fluid end -->
</div> <!-- .content-wrap-end -->

<!-- BEGIN footer -->

<?php
$firstSidebarHtml = $htmlHelper->getSidebarHtml('gumm-footer-sidebar-1');
$secondSidebarHtml = $htmlHelper->getSidebarHtml('gumm-footer-sidebar-2');
$thirdSidebarHtml = $htmlHelper->getSidebarHtml('gumm-footer-sidebar-3');
$fourthSidebarHtml = $htmlHelper->getSidebarHtml('gumm-footer-sidebar-4');

$hasWidgets = ($firstSidebarHtml || $secondSidebarHtml || $thirdSidebarHtml || $fourthSidebarHtml);
?>

<div class="footer-wrap">
<div class="footer-content wrap-color-element">
<?php if ($hasWidgets): ?>
<div class="color-container">
<div class="container-fluid">
<div class="row-fluid">
<div class="span3"><?php echo $firstSidebarHtml; ?></div>
<div class="span3"><?php echo $secondSidebarHtml; ?></div>
<div class="span3"><?php echo $thirdSidebarHtml; ?></div>
<div class="span3"><?php echo $fourthSidebarHtml; ?></div>
</div>
</div>
<?php endif; ?>
</div>
</div>
<div class="copyrights-content wrap-color-element">
<div class="color-container">
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<?php
if ($footerText = $wpHelper->getOption('footer_text')) {
echo $footerText;
}
?>
<div class="social-icons-wrap">
<?php View::renderElement('social-links'); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>

<!-- END footer -->

</div><!-- .roki-wrap-end -->

<?php if (Configure::read('build') !== 'release'): ?>
<?php View::renderElement('front-end-preview-panel'); ?>
<?php endif; ?>

<?php echo $wpHelper->getOption('google_analytics'); ?>

<?php wp_footer(); ?>
</body>
</html>
 
what if i say no text
 
ok i got it, i just erased <?php
if ($footerText = $wpHelper->getOption('footer_text')) {
echo $footerText;
}
?>
 
You can go the theme editor and try to find the footer section and see if you can remove it.
 
Add me on skype... Will help you out tomorrow ;) ... free of charge

p.s. gn guys


Sent from my iPhone using Tapatalk
 
Back
Top