Paypal button not visible on minicart

This is for Goya version 1.0 only

The paypal button from WooCommerce PayPal Checkout Gateway plugin is not visible on the mini cart because of the absolute positioning of the cart/checkout buttons.

To make the Paypal button visible get this file goya-mini-cart.zip and upload the .php to wp-content/themes/goya/woocommerce/cart/mini-cart.php

The following snippet, for goya-child/style.css adds some styling for those buttons.

.woocommerce-mini-cart__buttons .button {
  padding: 8px 12px;
}
.woocommerce-mini-cart__buttons.buttons.wcppec-cart-widget-spb {
  margin: 10px 0 -10px;
}Code language: CSS (css)

Because the mini cart is cached you need to add a new product to cart to refresh it an see the changes.

Leave a Reply

Your email address will not be published. Required fields are marked *