• Resolved peterteszary

    (@peterteszary)


    Hello Support,

    I would like to ask for some help. I have switched to Your plugin, because it has the option to display stipre fees on cart and checkout pages.

    I’ve set the option: ”?Display Stripe Fee” to true. But it still not showing up.
    I am using Bricks Builder and everihting is the latest.

    Thanks,
    Peter

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Payment Plugins

    (@mrclayton)

    Hi @peterteszary

    I’ve set the option: ”?Display Stripe Fee” to true. But it still not showing up.

    That option is for displaying the fee that is charged to you by Stripe. Here is the description in the plugin settings for that option:

    If enabled, the Stripe fee will be displayed on the Order Details page. The fee and net payout are displayed in your Stripe account currency.

    The order details page is an admin dashboard page within WooCommerce. It displays information about the order such as transaction ID, order notes, etc.

    Kind Regards

    Thread Starter peterteszary

    (@peterteszary)

    Hi Payment Plugins,

    thank you for the fast reply. My main problem is that I would like to display the Stripe fee for the clients on the website, so they will know what the original price is, and what is the Stripe fee.

    So I have enabled this option, but I still not see the stripe fee separately from the original price on the front end as a client.

    Could you please help me with that?

    Thanks,
    Peter

    Plugin Author Payment Plugins

    (@mrclayton)

    so they will know what the original price is, and what is the Stripe fee.

    The Stripe fee doesn’t change the price of your products. Stripe deducts the fee from your transaction when it processes through their system.

    Example:

    Customer spends $100 buying products on your site. The $100 transaction is processed through Stripe. Stripe then deposits $97.50 into your account which is the order total – their fee.

    So I have enabled this option, but I still not see the stripe fee separately from the original price on the front end as a client.

    That option is for displaying the fee to the merchant. It is not a frontend option, it is meant only for the merchant to see.

    WooCommerce provides filters you can use to display any custom data you want on the checkout page. If you want to show the customer the fee you pay to Stripe, you can use those filters.

    Kind Regards

    Thread Starter peterteszary

    (@peterteszary)

    Thank you for the reply again.
    I see. Would you be so kind and could you please provide that filter to me. I have tried several code snippets, but none of them worked.

    Thanks,
    Peter

    Plugin Author Payment Plugins

    (@mrclayton)

    Hi @peterteszary

    The action I would recommend is woocommerce_review_order_after_order_total which is triggered when the order review section of the checkout page is being rendered.

    That action occurs within the order items table, so you can add a new table row entry with the fee information.

    Simple Example:

    add_action( 'woocommerce_review_order_after_order_total', function () {
    		?>
            <tr>
                <td>Stripe Fee</td>
                <td>2.75%</td>
            </tr>
    		<?php
    	} );

    Kind Regards

    tbo460

    (@thibotus01)

    Bare in mind that you may not know the exact fee until payment is completed since Stripe fee vary depending of the card & currency used.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Stripe Fee is not Showing on Cart or Checkout page either’ is closed to new replies.