Hi,
I have 2 issues here.
1: Paypal and Payal Credit buttons appear on every product pages. How to have them removed?
2: The little cart icon over at the top right hand corner is not showing up properly.
Please help.
Thank You!
Hey hanlinsg,
I took a look at your site, and found that your menu items were not showing on your shop pages, product pages, or the check-out page, along with your cart button and it’s dropdown menu. So the css below addresses these issues, and hiding the PayPal buttons.
Please try this code in the General Styling > Quick CSS field:
#top.single-product .header_color .main_menu ul:first-child > li > a,#top.post-type-archive-product .header_color .main_menu ul:first-child > li > a,#top.woocommerce-cart .header_color .main_menu ul:first-child > li > a {
color: #000 !important;
}
#top.single-product .wcppec-checkout-buttons.woo_pp_cart_buttons_div {
display: none !important;
}
.header_color .cart_dropdown .dropdown_widget li a, #top .header_color .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link, #top .header_color p.order-info mark {
color: #000 !important;
}
Best regards,
Mike
Thank you very much, Mike!