Description and Description tab are Missing from Product Pages, Rearrange tabs

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!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WCFM – Ultimate Description and Description tab are Missing from Product Pages, Rearrange tabs

Viewing 2 reply threads
  • Author
    Posts
    • #98137
      Phoenix
      Participant

      My product page does not display the descriptions. It displays the short description.
      There is no description tab either.

      Is there a way to enable this? The description and the description tab were both working until I installed this plugin.

      I would also like to rearrange the tabs on the product page. Is there a way to do this?

      Thanks!

    • #98138
      Phoenix
      Participant

      Oh! I figured out the description, a silly error on my part, but is there a way to rearrange tabs?

    • #98458

      Hello,

      add_filter( 'woocommerce_product_tabs', 'reordered_tabs', 98 );
      function reordered_tabs( $tabs ) {
          
          $tabs['description']['priority'] = 10; //change the number as per order-number of tabs
          $tabs['reviews']['priority'] = 15;
       
          return $tabs;
      }

      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/

      Thanks.

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