Adding information to the vendors dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Viewing 2 reply threads
  • Author
    Posts
    • #113627
      memoryengravers
      Participant

      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

    • #113637

      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.

    • #113642
      memoryengravers
      Participant

      Thank You!!!

Viewing 2 reply threads
  • You must be logged in to reply to this topic.