-
AuthorPosts
-
August 7, 2018 at 12:08 am #994151
Hello,
How can i change the top-left title “Blog : A la une” :
Please see this capture : https://ibb.co/m9vzfeThanks for your help,
NicolasAugust 7, 2018 at 1:23 pm #994406Hey plichart1,
Here is a thread for you to consider
If you need further assistance please let us know.
Best regards,
VictoriaAugust 7, 2018 at 7:14 pm #994530Please it doesn’t help me at all …
August 8, 2018 at 4:24 pm #995041Hi plichart1,
You will need to replace this code in single.php line 11:
$title = __('Blog - Latest News', 'avia_framework'); //default blog titleI would suggest using a child theme: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#why-child-theme so you can safely update the Enfold theme without losing the changes made.
Hope this helps.Best regards,
NikkoAugust 9, 2018 at 6:58 am #995262Thank a lot.
I’d also like this text to link to my “news” page, insteed of the homepage. How can i do this please ?
Regards,
NicolasAugust 9, 2018 at 9:23 am #995317Hi,
Please add this code to your child theme functions.php:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); function avf_title_args_mod($args,$id) { if ( is_singular('post') ) { $args['title'] = get_the_title($id); $args['link'] = get_permalink($id); } return $args; }You can replace get_the_title($id) with a static text like:
$args['title'] = 'My news page';and replace $args[‘link’] = get_permalink($id); with a static url to your news page like:
$args['link'] = 'https://www.idt.pf/actualites/';Best regards,
DudeAugust 9, 2018 at 5:59 pm #995634Awesome ! Thanks a lot !
August 9, 2018 at 6:51 pm #995659Hi,
Glad we could help you :)
Best regards,
Dude -
AuthorPosts
- The topic ‘Change blog title’ is closed to new replies.
