Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Add information text to product description boxes
Tagged: product info
- This topic has 6 replies, 2 voices, and was last updated 4 years, 11 months ago by WCFM Forum.
- AuthorPosts
- November 24, 2019 at 7:07 pm #93772tech2Participant
Hey,
I haven’t found this during a search so I wanted to ask. How can I Add information text to product description boxes?
What i would like is to add “Please do not add outside links to your product pages. This is not allowed”
Thank you in advance for your time and help
Cheers
- November 26, 2019 at 3:55 pm #94051WCFM ForumMember
HI,
Please add this code to your site for the purpose-
add_filter( 'wcfm_product_manage_fields_content', function( $content_fields, $product_id, $product_type ) { if( isset( $content_fields['excerpt'] ) ) { $content_fields['excerpt']['desc'] = 'Please do not add outside links to your product pages. This is not allowed!'; } if( isset( $content_fields['description'] ) ) { $content_fields['description']['desc'] = 'Please do not add outside links to your product pages. This is not allowed!'; } return $content_fields; }, 50, 3 );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/Thank You
- November 28, 2019 at 8:20 am #94333tech2Participant
Hey mate,
Thank you for getting back to me. The code returned this error:
Don’t Panic
The code snippet you are trying to save produced a fatal error on line 0:Exception thrown without a stack frame
The previous version of the snippet is unchanged, and the rest of this site should be functioning normally as before.Please use the back button in your browser to return to the previous page and try to fix the code error. If you prefer, you can close this page and discard the changes you just made. No changes will be made to this site.
- November 29, 2019 at 5:44 pm #94763tech2Participant
- December 7, 2019 at 2:56 pm #96456WCFM ForumMember
Well, this is PHP code. Hope you didn’t add this under CSS file by mistake!
- December 7, 2019 at 3:27 pm #96470tech2Participant
I posted using the plugin you recommended. This is actually now working so thank you for your help
- December 9, 2019 at 12:53 pm #96691WCFM ForumMember
Great … thanks for the update 🙂
- AuthorPosts
- The topic ‘Add information text to product description boxes’ is closed to new replies.