Francesco
Forum Replies Created
-
Forum: Plugins
In reply to: [Hotel Booking] Exceptions not workingCiao,
in effetti… hai ragione… grazie per il consiglio πForum: Plugins
In reply to: [Hotel Booking] Exceptions not workingCiao,
in pratica il plugin non lavora come dovrebbe con le date italiane.Non ho perso tempo a correggerlo, ho modificato la lingua di wordpress in inglese per lavorare con le date in formato inglese.
Forum: Plugins
In reply to: [WooCommerce] Shared user account ?Hello Niels, thanks for your reply.
Yes, i know single customer order will not track but I think it will be enough to know which table (and related account) the order came from.
Thanks for your reply.
I find your lack of documentation disturbing.
Forum: Plugins
In reply to: [WooCommerce] Amount of people have that product in cartSorry for the late reply,
Cart reports does not seem what i’m looking for.
I just need a string on my frontend after product name or price, saying “X people have added (this product) to cart”.
Forum: Plugins
In reply to: [Brizy - Page Builder] Remove Brizy notice from backendI don’t give WP credentials, expecially now with new GDPR rules.
I just used a snippet to hide message via CSS in admin area.
In functions.php of your CHILD theme:
add_action('admin_head', 'custom_admin_css'); function custom_admin_css() { echo '<style> brizy-notice-css-class {display: none;} </style>'; }Inspect the brizy notice into your admin area to get the correct css class.
This is not a solution, just a temporary workaround until developer fix this.