Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi There Codeless Support.
Can you please advise me how to edit the Portfolio “Project Description” title and also how to remove/turn off/delete the default second title below it?
Kind Regards
Mark
Hello,
You can edit “Project Description” from files:
-includes\view\portfolio\single-container.php
-includes\view\portfolio\single-floating.php
-includes\view\portfolio\single-fullwidth.php
-includes\view\portfolio\single-gallery.php
To remove the “Project Details” , add this code into your custom css box:
.single_portfolio_container .details {
display: none;
}
Best regards!
The Product Description Text is part of WooCommerce.
You can translate it using Translation Plugins.
If you need to edit in directly in code add this code in functions.php
add_filter( ' woocommerce_product_description_heading', 'custom_product_desc' );
function custom_product_desc($text){
return 'Custom Product Description';
}
Let me know if it’s this what you need
Thanks
You must be logged in to reply to this topic.