• Resolved altaf123

    (@altaf123)


    Hi @emilywil there is nopayment method is showing like Google Pay link and apple Pay in bundle product while same link is showing on simple product .
    Also the payment method is not showing the checkout page only showing pay by card and COD while we have Google pay and apply pay Services its not showing on checkout page if there is bundle on the cart its showing only to simple product .

    ae.prcnstore.com
    this is our website link i attached the picture but not successfully loaded
    the first one is bundle product not showing link as on the second picture which is simple product

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Emily Wilson

    (@emilywil)

    Hi @altaf123

    On the product page, the bundle products only work with “Add to cart” button.

    We checked the checkout with a simple product and a bundle product and there are same payment methods available in the checkout.

    Please check the screenshots below.

    https://ibb.co/2764tnGt
    https://ibb.co/Mkxyw51H

    First please fix the issue, in the checkout for the simple products then let us know if there is an issue with bundle products in the cart.

    Also, please let us know which payment method plugin are you using.

    Best regards

    • This reply was modified 4 months, 1 week ago by Emily Wilson.
    Plugin Support Emily Wilson

    (@emilywil)

    Hi @altaf123

    Please add the code below to your child theme functions.php and try again.

    add_filter( 'wc_stripe_payment_request_supported_types', function ( $types ) {
    $types[] = 'easy_product_bundle';
    return $types;
    } );

    I hope it helps.

    Best regards

    • This reply was modified 4 months, 1 week ago by Emily Wilson.
    Thread Starter altaf123

    (@altaf123)

    First of All Thanks for your reply
    2nd i attached the screenshot but not showing to you its showing payment method of strip ( Google Pay , Apple Pay,) to bundle product fallow this link and process to checkout and wait for 1 sec then Google pay adn pay with link button will appear
    https://ae.prcnstore.com/share-cart/1KYKJR
    3rd i paste your code but its hide All my Add to cart Button from my product

    Plugin Support Emily Wilson

    (@emilywil)

    Hi @altaf123

    You are welcome. 😊

    We have tested the code below and it is working fine in the checkout page.

    add_filter( 'wc_stripe_payment_request_supported_types', function ( $types ) {
    if ( \AsanaPlugins\WooCommerce\ProductBundles\is_product_page() ) {
    return $types;
    }

    $types[] = 'easy_product_bundle';
    return $types;
    }, 1000 );

    In case the above code doesn’t work on your website, please contact us here for further investigation.

    I hope it helps.

    Best regards

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

You must be logged in to reply to this topic.