Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Adding information to the vendors dashboard
- This topic has 2 replies, 2 voices, and was last updated 4 years, 7 months ago by memoryengravers.
Viewing 2 reply threads
- AuthorPosts
- March 28, 2020 at 8:59 am #113627memoryengraversParticipant
I would like to add a information in the areas above the add product and settings (preferably different texts per that section). Best practices for adding products, and best practices for settings.
they both have the same div tag container at the top:
<div class="wcfm-container wcfm-top-element-container">
Is there something that can be put into my child themes function.php or do I have to alter the code directly?
Thank You
- March 28, 2020 at 10:45 am #113637Sarmistha ChakrabortyMember
Hello,
add_action('wcfm_vendor_setting_header_before','custom_text_add_wcfm_vendor_setting_header_before'); function custom_text_add_wcfm_vendor_setting_header_before($userid) { echo 'your settings information '; } add_action('after_wcfm_products_manage_title','fn_after_wcfm_products_manage_title'); function fn_after_wcfm_products_manage_title() { echo 'your product information text'; }
Add this code in your child themes function.php.
Thanks.
- March 28, 2020 at 11:12 am #113642memoryengraversParticipant
Thank You!!!
- AuthorPosts
Viewing 2 reply threads
- You must be logged in to reply to this topic.