• Resolved EvelynWaugh

    (@wsjrcatarri)


    In stripe dashboard, in transaction I see all data from card and so on, but in order notes nothing, also also I need hook woocommerce_payment_complete, which now is not called. Thanks. And client also doesn’t see that transaction was succeful

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

    (@mrclayton)

    Hi @wsjrcatarri

    Any time a payment is made the order notes will contain the charge ID and the payment method. You will also see the transaction ID as a clickable link at the top of the order details page.

    It appears you have some plugin active that’s skipping the payment process. Order status management plugins are usually the culprit with this type of issue. I recommend you go through your list of active plugins and find the one that’s causing that behavior.

    If you’re struggling to find the plugin, you will need to deactivate plugins one by one until you find the culprit through process of elimination.

    This would not be an issue with the Stripe plugin.

    Kind Regards

    Thread Starter EvelynWaugh

    (@wsjrcatarri)

    Ok, thanks, I will try. By the way, is there an option to change theme button for apple/google pay ? from dark to light.

    And do you have github page to rebuild scripts with new theme for button ? I updated plugin and found theme in options, and what about height ?

    • This reply was modified 1 year, 5 months ago by EvelynWaugh.
    • This reply was modified 1 year, 5 months ago by EvelynWaugh.
    Thread Starter EvelynWaugh

    (@wsjrcatarri)

    And how find css selector for apple-button container, to make it not 100% width

    Plugin Author Payment Plugins

    (@mrclayton)

    By the way, is there an option to change theme button for apple/google pay ? from dark to light.

    Yes, if you look at the Google Pay Settings and Apple Pay Settings page you will see options for changing the button’s color.

    And how find css selector for apple-button container, to make it not 100% width

    It depends on what page you’re referring to since Apple Pay can be displayed on product pages, the cart page, or the checkout page. The button’s selector is .apple-pay-button

    Thread Starter EvelynWaugh

    (@wsjrcatarri)

    Add to cart button has 47px height. And I have added to .apple-pay-button styles which are not applied.

    And also why when I add height to button, then text gets bigger? How also manage font-size.

    • This reply was modified 1 year, 5 months ago by EvelynWaugh.
    Thread Starter EvelynWaugh

    (@wsjrcatarri)

    Also made height: 57px, it doesn’t change anything

    Plugin Author Payment Plugins

    (@mrclayton)

    Hi @wsjrcatarri

    When CSS doesn’t work, that doesn’t mean there is a plugin issue. It just means your CSS is not correct.

    Your CSS isn’t working because you need to also add a max-height property to override the plugin. Here is an example:

    @supports (-webkit-appearance: -apple-pay-button) {
        .apple-pay-button {
            display: block;
            -webkit-appearance: -apple-pay-button !important;
            height: 50px !important;
            max-height: 50px !important;
        }
    }

    Thanks

    Thread Starter EvelynWaugh

    (@wsjrcatarri)

    Yes many thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘No order about charges and also not calling woocommerce_payment_complete hook’ is closed to new replies.