add product 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!

Viewing 2 reply threads
  • Author
    Posts
    • #104650
      ozkancol
      Participant

      Hi,
      When we add product under some tabs >> Shipping >>inventory >>seo
      Can we do always open not clicable ?

    • #104740
      Molay Das
      Keymaster

      Hi,

      This will require bulk custom development work. Please contact us here for the purpose: https://wclovers.com/woocommerce-multivendor-customization/

      We’ll get back to you.

      Thanks,

    • #105696
      WCFM Forum
      Keymaster

      Hi,

      Can we do always open not clicable ?

      – Sorry, it’s not very clear to me. Do you want to keep product manager all tabs by default open?

      If so, then please add this code to your site –

      add_action( 'after_wcfm_products_manage', function() {
      	?>
        <style>
        .wcfm-tabWrap .page_collapsible, .wcfm-tabWrap .page_collapsible + .wcfm-container {
        	width: 98% !important;
        	position: relative !important;
        }
        .wcfm-tabWrap {
        	height: auto !important;
        }
        </style>
        <script>
        jQuery( document ).ready( function( $ ) {
        	setTimeout(function() {
        		$('.wcfm-tabWrap .page_collapsible').off('click');
        		$('.wcfm-tabWrap').find('.wcfm-container').removeClass('collapse-close').addClass('collapse-open').show();
        	}, 2000 );
        });
        </script>
      	<?php
      });

      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

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