• Resolved virtual03

    (@virtual03)


    Hallo,

    Thank you very much for your excellent plugin! It works perfectly, and I truly appreciate the effort you’ve put into it.

    However, I have two minor requests I’d like to address:

    1. On the mobile version (display width of 370px), the layout shifts slightly because the Google Pay button is too wide. Could you please adjust its size to make it a bit smaller?
    2. I’d like to remove the links for PayPal and Stripe from the WordPress sidebar menu, as the menu is getting too cluttered. Would it be possible to achieve this?

    I look forward to your feedback and thank you in advance for your assistance!

    Best regards,
    Daniel

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Clayton R

    (@mrclayton)

    Hi @virtual03

    Apologies for the late reply.

    1. Can you provide a screenshot of what you’re describing? It’s likely you can adjust this by adding some CSS to your theme. It’s impossible to make the plugin compatible with every theme so sometimes minor adjustments are needed.
    2. Yes that is possible using a simple code snippet. Here is an example:
    add_action('admin_menu', function(){
    remove_submenu_page('woocommerce', 'wc-ppcp-main');
    remove_submenu_page('woocommerce', 'wc-stripe-main');
    }, 100);

    Kind Regards

    Thread Starter virtual03

    (@virtual03)

    Hi @mrclayton

    Thank you very much for the code!

    If this is about the mobile version, you can also test it directly on your phone by setting the screen width to 370px. Of course, CSS can be used to make adjustments, but if the button is embedded via an iframe, CSS won’t work, right?

    Kind regards,
    Daniel

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

The topic ‘Feedback and Minor Adjustments Request’ is closed to new replies.