Hi!
I need to make several changes to the slider article on our home page:
1) do not show the number of comments : I have tried adding the code you posted here, but it does not work.
2) make the excerpts text longer : have tried adding the code you suggested here, but it does not work.
Many thanks for your help,
Daria
Hey Fiorilla!
Thank you for using Enfold.
1.) Please use this to remove the comments info:
.slide-meta-comments, .slide-meta-comments + .slide-meta-del {
display: none !important;
}
2.) Use this code instead:
add_filter('avf_postgrid_excerpt_length','avf_postgrid_excerpt_length_mod', 10, 1);
function avf_postgrid_excerpt_length_mod($length) {
$length = 300;
return $length;
}
Best regards,
Ismael
Hi Ismael,
I have replaced the code I had with the two you mentioned, but there is absolutely no change… Would you mind having a second look?
Thank you,
Fiorilla
Hey!
As mentioned here – https://kriesi.at/support/topic/header-not-working-correctly-in-chrome/#post-610327 you added the code to Quick CSS field. I moved it to functions.php file. Please review your website now
Regards,
Yigit
Oh, perfect! Thanks so much, I misunderstood what needed to be done.
Fiorilla