epigrapisa
Forum Replies Created
-
Hi everyone,
I have the same problem, I’ve translated in italian, I have both the .po and .mo files but when I upload it doesn’t translate it at all.
I’ve sent the translated file to @jeff Star and waiting for response.
It’s pretty important for me because it’s one of the last steps in order to complete my project for the final exam at university for my degree.
If anyone can help I’d appreciate a lot.
Thanks everyoneForum: Themes and Templates
In reply to: [Clean Retina] remove footerthank you!
Forum: Themes and Templates
In reply to: [Clean Retina] cleanretina_custom_tag_widget titlethank you!
Forum: Themes and Templates
In reply to: Clean Retina -Theme Horse footerI’ve done this:
That’s a neat theme and very organized. But changing the copyright properly requires a little coding.
First create a child theme for Clean Retina. Put the child theme’s style.css file in themes/clean-retina-child.
/* Theme Name: Clean Retina Child Theme Author: Self-Help WordPress User Template: clean-retina */ @import url("../clean-retina/style.css");
The footer for that theme is added via this action in the parent theme:
add_action( 'cleanretina_footer', 'cleanretina_footer_info', 25 );
You want to remove that action and add your own instead. To do that in your child theme directory create a blank functions.php file and add these lines to it.
<?php // Remove old copyright text add_action( 'init' , 'mh_remove_copy' ); function mh_remove_copy() { remove_action( 'cleanretina_footer' , 'cleanretina_footer_info ', 25 ); } // Add my own copyright text add_action( 'cleanretina_footer' , 'mh_footer_info' , 25 ); function mh_footer_info() { $output = '<div class="copyright">'.'Copyright ? [the-year] [site-link] Powered by: SUPER MARTIANS FROM MARS! '.'</div><!-- .copyright -->'; echo do_shortcode( $output ); }
Which on your installation should produce something like
Copyright ? 2012 B .Dinelli for Hair Powered by: SUPER MARTIANS FROM MARS!
You can read about adding and removing actions in child themes at this site.https://themeshaper.com/2009/05/25/action-hooks-wordpress-child-themes/
Hope that helps.
But this code:
<?php // Remove old copyright text add_action( 'init' , 'mh_remove_copy' ); function mh_remove_copy() { remove_action( 'cleanretina_footer' , 'cleanretina_footer_info ', 25 ); }
doesn’t work, I mean it inserts my copyright, but still doesn’t remove the old one.
Thanks
Forum: Themes and Templates
In reply to: [Clean Retina] How to insert a non standard fontthanks a lot!
Forum: Themes and Templates
In reply to: [Clean Retina] remove title and tag cloud pagethank you so much!
Forum: Themes and Templates
In reply to: [Clean Retina] remove title and tag cloud pageHi, I need help again ?? I want to cancel the visualization of author, date and category from the articles. I know that I should modify page.php but I can’t find those parts that let me erase author, date and cathegory. Thanks for the help, kind regards
Forum: Themes and Templates
In reply to: [Clean Retina] remove title and tag cloud pagethank you so much!