Viewing 2 replies - 1 through 2 (of 2 total)
  • Can you post a link to your site so we can see where this is happening?

    You can hard code it by doing the following. Keep in mind though that if/when you update woocommerce, these changes will be lost.

    plugins -> woocommerce -> templates -> checkout -> review-order.php

    Add this style="opacity:0;" right after this "<?php echo esc_attr( $gateway->order_button_text ); ?>" on line 135

    That hides the radio button.

    Then, on the next line add the font attribute <font color="#FFFFFF"></font> around this line <?php echo $gateway->get_title(); ?> so it should look like <font color="#FFFFFF"><?php echo $gateway->get_title(); ?></font>

    That hides the payment type text

    There’s probably a simpler way of doing it with a CSS display:none attribute, but someone else can chime in if they want.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not show any payment gateway to customer’ is closed to new replies.