Matteo
Forum Replies Created
-
Forum: Plugins
In reply to: [Cookie Information | Free GDPR Consent Solution] italian languageI uploaded without success po and mo files “wp-gdpr-compliance-it_IT” into wp-content/plugins/wp-gdpr-compliance/languages/
Forum: Plugins
In reply to: [AWS for WordPress] Serious conflict or bug with woocommerce?for the cache I think
Forum: Plugins
In reply to: [AWS for WordPress] Serious conflict or bug with woocommerce?Thank you and please how to exclude from translation the domain? Because the plugin translate also the text “sopravvivi.com”
Forum: Plugins
In reply to: [Say It!] Woocommerce Conflictsolved, the error was autoptimize and cdn enabler on staging site
Forum: Plugins
In reply to: [AWS for WordPress] Serious conflict or bug with woocommerce?solved, the error was autoptimize and cdn enabler on staging site
Forum: Plugins
In reply to: [Code Snippets] fatal error when I copy paste cssit’s true, thank you very much
Forum: Plugins
In reply to: [Code Snippets] fatal error when I copy paste cssthank you, so I tried with this code that works on my css theme:
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link, .added_to_cart {
background-color: #3d9cd2 !important;
border-color: #3d9cd2 !important;
color: white !important;
text-decoration: none !important;
}
.wp-block-button__link:not(.has-background):hover, .wp-block-button__link:not(.has-background):focus, .wp-block-button__link:not(.has-background):active {
border-color: #3d9cd2 !important;
background-color: #3d9cd2 !important;
text-decoration: none !important;
}And I added this code:
add_action( ‘wp_head’, function () { ?>
<style>.wc-block-grid__products .wc-block-grid__product .wp-block-button__link, .added_to_cart {
background-color: #3d9cd2 !important;
border-color: #3d9cd2 !important;
color: white !important;
text-decoration: none !important;
}
.wp-block-button__link:not(.has-background):hover, .wp-block-button__link:not(.has-background):focus, .wp-block-button__link:not(.has-background):active {
border-color: #3d9cd2 !important;
background-color: #3d9cd2 !important;
text-decoration: none !important;
}</style>
<?php } )But the results is fatal error 🙁
fixed through xoo-el-register-section.php
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] background colorsolved 🙂
.woocommerce-checkout #payment div.payment_box {
background: white !important;
color: black !important;
}
.woocommerce-checkout #payment {
background: white !important;
}
.woocommerce-checkout #payment ul.payment_methods {
border-bottom: 0px solid white !important;
}Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] background colorsolved with this code but still a blue line https://snipboard.io/twgJYh.jpg 🙁
.woocommerce-checkout #payment div.payment_box {
background: white !important;
color: black !important;
}Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] background colorI tried this code without success:
.woocommerce-checkout #payment div.payment_box {
background-color: transparent;
color: black;
}It works great, thank you very much
I would be happy if I got an answer XD