Buenos días.
Wordpress, Tema Anima
Llevo tiempo intentando quitar del footer de mi web: Funciona con Anima & Wordpress, pero no lo consigo, he seguido varios tutoriales pero funcionan con otros temas, no con Anima, Por favor ¿me podeis ayudar?
Gracias anticipadas
Hola Raquel.
¿ Quieres eliminar todo el bloque o solo lo de funcina con ?
Para eliminar Funcionan Con :
.- Accede a tu cuenta de cpanel -> Administrador de archivos.
.- Accede a la carpeta de la instalación -> wp-content -> themes -> anima -> includes
.- Editar el archivo core.php
.- Sobre la línea 307 tienes el siguiente código:
add_action( 'cryout_master_footer_hook', 'anima_master_footer' );
function anima_master_footer() {
$the_theme = wp_get_theme();
do_action( 'cryout_footer_hook' );
echo '<div id="footer-separator"></div>';
echo '<div id="site-copyright">' . do_shortcode( wp_kses_post( cryout_get_option( 'anima_copyright' ) ) ) . '</div>';
echo '<div style="display:block;float:right;clear: right;">' . __( "Powered by", "anima" ) .
'<a target="_blank" href="' . esc_html( $the_theme->get( 'ThemeURI' ) ) . '" title="';
echo 'Anima WordPress Theme by ' . 'Cryout Creations"> ' . 'Anima' .'</a> & <a target="_blank" href="' . "http://wordpress.org/";
echo '" title="' . esc_attr__( "Semantic Personal Publishing Platform", "anima") . '"> ' . sprintf( " %s.", "WordPress" ) . '</a></div>';
}
.- Modifica ese bloque por el siguiente:
add_action( 'cryout_master_footer_hook', 'anima_master_footer' );
function anima_master_footer() {
$the_theme = wp_get_theme();
do_action( 'cryout_footer_hook' );
echo '<div id="footer-separator"></div>';
echo '<div id="site-copyright">' . do_shortcode( wp_kses_post( cryout_get_option( 'anima_copyright' ) ) ) . '</div>';
}
Lo que hemos realizado a sido eliminar las líneas que muestran ese bloque:
echo '<div style="display:block;float:right;clear: right;">' . __( "Powered by", "anima" ) .
'<a target="_blank" href="' . esc_html( $the_theme->get( 'ThemeURI' ) ) . '" title="';
echo 'Anima WordPress Theme by ' . 'Cryout Creations"> ' . 'Anima' .'</a> & <a target="_blank" href="' . "http://wordpress.org/";
echo '" title="' . esc_attr__( "Semantic Personal Publishing Platform", "anima") . '"> ' . sprintf( " %s.", "WordPress" ) . '</a></div>';
Un saludo
Wow! Por fin!! Muchisimas gracias, problema resuelto, Muchas gracias Pepe, muy amable. Así da gusto!!
Saludos.
Hola Raquel.
Nada, gracias a ti 😀
Ya sabes, cualquier consulta que tengas nos puedes encontrar por aquí 😉
Cerramos el tema.
Un Saludo