• Resolved cpsharp

    (@cpsharp)


    I have selected only the product title and variation as I want to show the table info but don’t need the add to cart/quantity info – instead, I’d like to use the regular WooCommerce product variation dropdown. Is that possible?

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

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

    (@hakik)

    Hi @cpsharp

    Thanks for your interest and really sorry for the inconvenience.
    Please create a child theme and put the below code to your child theme’s functions.php file.

    function pvt_support(){
    	global $pvtfw_table;
    	remove_action('template_redirect', array( $pvtfw_table, 'remove_add_to_cart'), 29 );
    
    }
    add_action('template_redirect', 'pvt_support');

    I hope it will resolve your issue.

    Thanks for using our plugin.

    Thread Starter cpsharp

    (@cpsharp)

    Awesome, that worked great – thanks!

    • This reply was modified 3 years, 4 months ago by cpsharp.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Keep existing variation drop down and quantity’ is closed to new replies.