Thank you so much!
]]>Desarrollado por: WordPress | Theme: Catch Everest
]]>Can anybody help tell me exactly which part of the functions.php I need to delete? Here’s the section that I believe needs editing:
// function tied to the excerpt_more filter hook.
function simplify_excerpt_length( $Length ) {
global $simplifyExcerptLength;
if ($simplifyExcerptLength) {
return $simplifyExcerptLength;
} else {
return 50; //default value
} }
add_filter( ‘excerpt_length’, ‘simplify_excerpt_length’, 999 );
function simplify_excerpt_more($more) {
global $post;
return ‘ID) . ‘” class=”read-more”>Read More…‘;
}
add_filter(‘excerpt_more’, ‘simplify_excerpt_more’);
// Content Type Showing
function simplify_content() { the_content(‘<span class=”read-more”>Read More…</span>’); }
function simplify_creditline() { echo ‘<span class=”credit”>| Simplify Theme by: <img src=”‘ . get_template_directory_uri() . ‘/images/d5logofooter.png” /> D5 Creation | Powered by: WordPress</span>’; }
Thank you so much!!! This has been a nightmare for me
<?php
/** Themify Default Variables
@var object */
global $themify; ?>
<?php themify_layout_after(); //hook ?>
</div>
<!--/body -->
<div id="footerwrap">
<?php themify_footer_before(); //hook ?>
<div id="footer" class="pagewidth clearfix">
<?php themify_footer_start(); //hook ?>
<?php get_template_part( 'includes/footer-widgets'); ?>
<?php if (function_exists('wp_nav_menu')) {
wp_nav_menu(array('theme_location' => 'footer-nav' , 'fallback_cb' => '' , 'container' => '' , 'menu_id' => 'footer-nav' , 'menu_class' => 'footer-nav'));
} ?>
<div class="footer-text">
<?php
if(themify_get('setting-footer_text_left') != "") {
echo themify_get('setting-footer_text_left');
}
else {
echo '? <a href="'.home_url().'">'.get_bloginfo('name').'</a> '.date('Y') . '';
} ?>
<?php
if(themify_get('setting-footer_text_right') != "") {
echo themify_get('setting-footer_text_right');
} else {
echo apply_filters('themify_footer_text_two', 'Powered by <a href="https://www.remarpro.com">WordPress</a> ? <a href="https://fudugo.com">FuduGo WordPress Themes</a>');
} ?>
</div>
<!--/footer-text -->
<?php themify_footer_end(); //hook ?>
</div>
<!--/footer -->
<?php themify_footer_after(); //hook ?>
</div>
<!--/footerwrap -->
</div>
<!--/pagewrap -->
<?php
/**
* Stylesheets and Javascript files are enqueued in theme-functions.php
*/
?>
<!-- wp_footer -->
<?php wp_footer(); ?>
<?php themify_body_end(); //hook ?>
</body>
</html>
[Please use the code buttons when posting code here – as is your code may have been corrupted.]
I went to the editor, and accessed functions.php. here is how the code looks like:
// Footer elegantwhite
function elegantwhite_footer_text() {
$ew_text = 'Theme: elegantWhite by <a href="https://fimply.de">Fimply</a>';
echo $ew_text;
}
I tried tweaking with this but either modifying or deleting any of what’s in there resulted in my site being completely broken. I couldn’t access anything, all I saw was a blank page (both front and back ends). So I had to access my file folder through my host’s cPanel and delete the theme.
So I’m a bit confused. Where can I delete the theme’s credits and replace it with my own text/links?
Many thanks!!
]]>[Code moderated as per the Forum Rules. Please use the pastebin]
]]>