-
AuthorPosts
-
June 14, 2019 at 2:14 pm #1110330
Hi Guys,
I need to change the title for Related Products, centralise the text and alter the size of the font without affecting any of the H2 headers – many thanks.- This topic was modified 5 years, 5 months ago by lagruga.
June 14, 2019 at 8:01 pm #1110455Hey lagruga,
Please have a look at the following threads:
https://kriesi.at/support/topic/change-related-product-text/
Best regards,
VictoriaJune 14, 2019 at 8:44 pm #1110490Hey Victoria, thanks for the feedback.
It seems the settings would be wiped after a Woocommerce update? If this is the case then I would prefer a CSS change (under Enfold settings). Also please note that I had stated a few other items on the case – thanks.June 14, 2019 at 8:45 pm #1110491in addition to my previous response, I had already come across that post before I had posted my case on the forum thus saving us both time but it’s not really what I am after – thanks.
June 15, 2019 at 4:20 pm #1110683Hi,
To center the “related products” title and increase the font, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.related.products { text-align: center !important; } .related.products > h2 { font-size: 22px !important; }
please adjust to suit, Then clear your browser cache and any cache plugin, and check.
To change the related products text, Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_related_products(){ ?> <script> (function($){ $(document).ready(function(){ $('.related.products h2').each(function() { var text = $(this).text(); $(this).text(text.replace('Related products', 'Awesome Deals')); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_related_products');
Please adjust “Awesome Deals” to suit. Also note that with this text replace, case does matter, see ‘Related products’
Best regards,
MikeJune 17, 2019 at 11:17 am #1110977Hey Mike,
Thanks so much, worked a treat, please close the case.
Best Regards.
June 17, 2019 at 6:31 pm #1111099Hi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Please bookmark Enfold Documentation for future reference.
Thank you for using Enfold :)Best regards,
Basilis -
AuthorPosts
- The topic ‘Change “Related Products” Title’ is closed to new replies.