WordPress evolve theme Help

by 4 replies
5
Hello,


Am currently using evolve WordPress theme and i need to remove words in my footer php

file but am not familiarly with html and css.I need help from any one,Below is my footer

php file.And i need to remove these words,

evolve theme by Theme4Press • Powered by WordPress and

HTML Snippets Powered By : XYZScripts.com




<?php
/**
* Template: Footer.php
*
* @package EvoLve
* @subpackage Template
*/
?>
<!--END #content-->
</div>
<!--END .container-->
</div>
<!--END .content-->
</div>
<!--BEGIN .content-bottom-->
<div class="content-bottom">
<!--END .content-bottom-->
</div>
<!--BEGIN .footer-->
<div class="footer">
<!--BEGIN .container-->
<div class="container container-footer">
<?php $evolve_widgets_footer = evolve_get_option('evl_widgets_num','disable');
// if Footer widgets exist
if (($evolve_widgets_footer == "") || ($evolve_widgets_footer == "disable"))
{ } else { ?>
<?php
$evolve_footer_css = '';
if ($evolve_widgets_footer == "one") { $evolve_footer_css = 'widget-one-column col-sm-6'; }
if ($evolve_widgets_footer == "two") { $evolve_footer_css = 'col-sm-6 col-md-6'; }
if ($evolve_widgets_footer == "three") { $evolve_footer_css = 'col-sm-6 col-md-4'; }
if ($evolve_widgets_footer == "four") { $evolve_footer_css = 'col-sm-6 col-md-3'; }
?>
<div class="widgets-back-inside row">
<div class="<?php echo $evolve_footer_css; ?>">
<?php if ( !dynamic_sidebar( 'footer-1' ) ) : ?>
<?php endif; ?>
</div>
<div class="<?php echo $evolve_footer_css; ?>">
<?php if ( !dynamic_sidebar( 'footer-2' ) ) : ?>
<?php endif; ?>
</div>
<div class="<?php echo $evolve_footer_css; ?>">
<?php if ( !dynamic_sidebar( 'footer-3' ) ) : ?>
<?php endif; ?>
</div>
<div class="<?php echo $evolve_footer_css; ?>">
<?php if ( !dynamic_sidebar( 'footer-4' ) ) : ?>
<?php endif; ?>
</div>
</div>
<?php } ?>
<div class="clearfix"></div>
<?php $footer_content = evolve_get_option('evl_footer_content','<p id=\"copyright\"><span class=\"credits\"><a href=\"http://theme4press.com/evolve-multipurpose-wordpress-theme/\">evolve</a> theme by Theme4Press&nbsp;&nbsp;&bull;&nbsp;&nbsp;Powered by <a href=\"http://wordpress.org\">WordPress</a></span></p>');
if ($footer_content === false) $footer_content = '';
echo do_shortcode($footer_content);
?>
<!-- Theme Hook -->
<?php evolve_footer_hooks(); ?>
<!--END .container-->
</div>
<!--END .footer-->
</div>
<!--END body-->
<?php $evolve_pos_button = evolve_get_option('evl_pos_button','right');
if ($evolve_pos_button == "disable" || $evolve_pos_button == "") { ?>
<?php } else { ?>
<div id="backtotop"><a href="#top" id="top-link"></a></div>
<?php } ?>
<?php $evolve_custom_background = evolve_get_option('evl_custom_background','0'); if ($evolve_custom_background == "1") { ?>
</div>
<?php } ?>
<?php wp_footer(); ?>
</body>
<!--END html(kthxbye)-->
</html>
#website design #evolve #theme #wordpress
  • Hi

    This is what you want to edit. You can completely remove all of bolded part including the red, or replace the links and wording in red with your own.

    <?php $footer_content = evolve_get_option('evl_footer_content','
    <p id=\"copyright\"><span class=\"credits\">
    <a "></a> ></a></span>
    </p>
  • I have tried to remove but still those words exist.
  • do you have cache plugin? if yes try to delete your website cache after code updating or give us your website url

    and you need to remove this:
    in post above there is no php closing statement
    • [1] reply

Next Topics on Trending Feed