• Resolved myrandaggmm

    (@myrandaggmm)


    Hello, I would still like the default product variation dropdowns to show in my theme and have this variation table on the product page. Is that possible?

    Also is it possible to have a dropdown feature of an attribute on the variation table itself. For ex. having a dropdown of a color selection on each row of the variation.

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

    (@hakik)

    Hi @myrandaggmm

    Thanks for reaching out to me.

    I would still like the default product variation dropdowns to show in my theme and have this variation table on the product page. Is that possible?

    Please put the below code to your child theme’s functions.php or you can use Code Snippet plugin to use the below code as snippet-

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

    is it possible to have a dropdown feature of an attribute on the variation table itself.

    Unfortunately, it is not possible right now 😥 . Basically the purpose of my plugin is cart a variation in one click rather select multi dropdown. So, the code base will not allow dropdown inside multi foreach loop.

    But yes I will think about it. Please let me know if the above snippet works for you. 🙂

    Thanks

    Plugin Author Hakik Zaman

    (@hakik)

    Hi @myrandaggmm

    It’s been a while I didn’t get any response from you. Is it resolved your issue?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Keep Default Variation Dropdown’ is closed to new replies.