• Resolved Quadropehenia

    (@quadropehenia)


    Hi there,

    First of all, thanks for this great plugin. By far the best plugin regarding table variatons on the product page.

    But to make it perfect and suitable for our live store there are three things left which I want to change. I think they are pretty easy to resolve, let’s hope I’m right. Here we go:

    1). Is it possible to change the position of the table? Now it’s placed under the short description, but I need it above the (long) description. So in general it needs to be placed between the product MAIN and product FOOTER. There were a few other plugins who had this function available in the setting, so I guess it’s possible somehow.

    2).
    As I’m running a wholesale B2B portal, I need to find a way to hide the price in the table when NOT logged in. I have already a plugin running which does the trick, but unfortunately it doesn’t cover this plugin. There is a message ‘Please, login to see prices and buy’ displayed in the top of the screen, but in your table there are still prices available. Would be great if I can mention a force login message.

    3). In the variation title there is also the SKU displayed. Not bad, but there is also an extra column with the SKU inside. So in general the first SKU after the title is unnecessary. I know how to remove the SKU column, but can I hide the SKU in the first (Title) column.

    I guess this is everything I need to know for now. Again, this plugin has great potential, so keep developing into a masterpiece!

    I hope you can help me out as soon as possible!

    Best wishes!

    • This topic was modified 4 years, 5 months ago by Quadropehenia.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Quadropehenia

    (@quadropehenia)

    Update

    I think I found a workaround for 3).. If I change:

    $variation_title = $product->get_formatted_name();
    into
    $variation_title = $product->get_name();

    The SKU will be removed after the variation title and it will only be displayed in the SKU column. Now I just need to know how I can edit this in my child theme functions.php.

    I also think that I can edit 1). in the theme or WooCommerce options, but I’m not sure… So if someone can help me out with hiding the prices in the table as mentioned in 2)., I’m very happy!

    Best wishes!

    Thread Starter Quadropehenia

    (@quadropehenia)

    Is this plugin still being supported?

    Plugin Author Dotstore

    (@dots)

    Hello quadropehenia,

    Thanks for reaching out to us.

    Yes, we provide the support for this plugin but, as per your request it is site specific changes and we do not provide this type of custom support.

    If you want to remove the SKU and Price then, you can use below code.

    /*************** Start code for unset SKU column on product page ***************/
    function wc_quick_cart_for_multiple_variations_unset_sku( $default_headers ) {

    unset( $default_headers[‘sku’] ); //will hide the SKU column
    unset( $default_headers[‘price’] ); //will hide the price column
    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 ***************/

    Let us know still if any.

    Thanks,

    Plugin Author Dotstore

    (@dots)

    Hello quadropehenia,

    This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to open a new thread if any other questions come up and we’d be happy to help. ??

    Thanks,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Three questions left for perfection!’ is closed to new replies.