• intheraw

    (@intheraw)


    Hi, recently installed your plugin and it works great. however it is not compatible with Quick Buy For Woocommerce.

    Is there any possible solution for this??

    Please help! I need to co-exist your plugin and the other plugin. Willing to pay for this fix. thank you!!

    • This topic was modified 5 years ago by intheraw.
    • This topic was modified 5 years ago by intheraw.
    • This topic was modified 5 years ago by intheraw.
Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author xootix

    (@xootix)

    Hello @intheraw

    You don’t have to pay for the support. A good review is all that keep us working.
    Please share your page link with the “quick buy” button.
    I will look into it.

    Thread Starter intheraw

    (@intheraw)

    Hi,

    Here is my staging site URL:

    https://staging3.southernindustrial.ca/en-ca/store/product/circuit-tester-59003/

    Thank you very much in advance!

    Plugin Author xootix

    (@xootix)

    Hello @intheraw

    I checked your site.
    There is a redirect set on add to cart, as our plugin is based on ajax, you don’t see the redirection.
    Please check if this plugin has any option to set redirects. If yes, kindly remove them.

    Thread Starter intheraw

    (@intheraw)

    I remove the redirection but still it didn’t work. when i click the add to cart button it works but when i try to click the buy now button the spinner/loader freeze. https://snipboard.io/BT79LG.jpg

    Plugin Author xootix

    (@xootix)

    Hello @intheraw

    I tried to install this plugin & test, but it doesn’t render any quick buy button on my product page.

    Currently when you click on “Buy now” button on your site, it submits the add to cart form, which cart popup plugin does as well & redirects to cart page.
    You need to find a way to separate add to cart form & quick buy button.

    Go to quick buy plugin settings & disable the button on product page.
    Then use its shortcode to make it appear outside add to cart form

    add_action( 'woocommerce_after_add_to_cart_form', function(){
    	global $product;
    	echo do_shortcode('[wc_quick_buy_link product="'.$product->get_id().'"]');
    } );
    Thread Starter intheraw

    (@intheraw)

    Hi,

    I followed your instructions. First i disable the quick buy button in the plugin settings page. then i paste the shortcode above in my function.php but i cannot see any quick buy button in my single product page. Did i miss something?

    Thread Starter intheraw

    (@intheraw)

    Any updates would be highly appreciated. thanks

    Plugin Author xootix

    (@xootix)

    Hello @intheraw

    Sorry for the late response.
    This is the correct way to include shortcode. I got this shortcode from their wordpress page

    add_action( 'woocommerce_after_add_to_cart_form', function(){
    	global $product;
    	echo do_shortcode('[wc_quick_buy_link product="'.$product->get_id().'"]');
    } );

    If the shortcode is not outputting any button, then there is an issue with the plugin. I tried to install this & the shortcode did not work for me as well.
    You need to contact the plugin author regarding shortcode not working.
    The compatibility solution is :-
    “You need to move the quick buy button outside “add to cart” form & put it somewhere else”

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not working or compatible to other plugin’ is closed to new replies.