• Resolved pointline

    (@pointline)


    Hi,
    I love your plugin and it works perfect for what I need but it is not responsive
    I’d like the SKU column to be removed OR to be able to place the table under the image and short description of each product.
    I don’t have a nice full view of the table and my qty boxes disappear to the right.
    See Screen Shot

    If anyone has a solution. Please help.

    The page I need help with: [log in to see the link]

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

    (@dots)

    Hello pointline,

    Thanks for reaching out to us.

    Yes, you can remove the SKU using the below filter.

    /*************** Start code for unset SKU column on product page ***************/
    function wc_quick_cart_for_multiple_variations_unset_sku( $default_headers ) {
    
    	unset( $default_headers['sku'] );
    	return $default_headers;
    }
    add_filter( 'wqcmv_table_headers', 'wc_quick_cart_for_multiple_variations_unset_sku', 20, 3 );
    /*************** End code for unset SKU column on product page ***************/

    Please add the above code in your functions.php file and let us know how it works.

    Thanks,

    Plugin Author Dotstore

    (@dots)

    Hello pointline,

    I hope you are fine and your query gets resolve from our last given solution.

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Delete SKU Table’ is closed to new replies.