• Resolved adempozhari

    (@adempozhari)


    hi,

    can i show the table in the “description” tab instead of “Product specifications” ?

    which of the attribute type is for multi selection ? for example there is a product with two colors and select these both main colors form the drop-down menu or checklist?

    thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Dornaweb

    (@dornaweb)

    For your first problem you can remove the specs table tab with below code:

    // Remove Specs tab
    add_filter('woocommerce_product_tabs', function($tabs) {
    	unset($tabs['dwspecs_product_specifications']);
    	return $tabs;
    }, 9999);

    and you can append the table to end of the content tab with [specs-table] shortcode, here is a guide about how you can append content to woocommerce description(content) tab:

    // Append Content
    add_filter( 'the_content', function($content) {
    	if (is_product()) {
    		$content .= do_shortcode('[specs-table]');
    	}
    	
    	return $content;
    });

    Currently this plugin doesn’t support multi-checkboxes.

    Hi there,

    Excellent plugin, thank you.

    Quick question – when I’ve created a table/group, how can I remove the title of the group within the Product Spec tab?

    Thank you
    Sacha

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘show the table in description’ is closed to new replies.