• Hello again ??

    Can you please make the default specification table to hide automatically when we use your table shortcode on is found at the product page. I don’t want that the table is being displayed twice when i use the shortcode. The reason i am using the shortcode is that i want the table to be displayed at a different position than the default table.

    Btw: Is there a possibility than i pay you for this and also the multiple selection function implantation job. Because i need this feature very urgent. Please let me know if you are interested and how much you think this will cost to do.

    Do you have PayPal?

    PS: Please excuse my poor english; it’s not my mother tongue.

    Best regards
    Pascal

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

    (@dornaweb)

    Well hiding the default woocommerce tab is not that hard,
    just follow this guide : you could use something like this in your functions.php file :

    add_filter( 'woocommerce_product_tabs', function($tabs){
        unset( $tabs['additional_information'] );
        return $tabs; 
    }, 98 );
    Thread Starter orangensaft

    (@orangensaft)

    Dear Amin

    How are you doing?

    Thanks for your reply. Your PHP code snippet is not working at my site. I have done a screenshot of the chrome developer console.

    Could you please send we a working snippet. The screenshot might help you.

    View post on imgur.com

    Or implement this feature as a button in your new plugin update.

    best regards
    Pascal

    Plugin Author Dornaweb

    (@dornaweb)

    Hi @orangensaft
    This feature already exists in the plugin’s setting page.
    The php code may work if you manipulate with priority number a bit ( 98 ).
    Try increasing it.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide default table when using shortcode’ is closed to new replies.