d79
Forum Replies Created
-
Oh, I got it: I ‘ve mistaken the native “submit for review” function of WordPress for new posts of contributor-like roles with something from your plugin.
Thank you
Forum: Plugins
In reply to: [WP Activity Log] Error on updateHello @robert681,
I’m sorry for the late reply.
I can confirm what @hvianna has already pointed out: you need to go first from 4.3.6 to 4.4.0, and then update to 4.4.1.
It would be nice if in the future this kind of updates would work regardless of the versions jump.
Thank you for your help.
Forum: Plugins
In reply to: [Mongoose Page Plugin] No longer works@codimex my comment wasn’t meant for you and your visitors, but for the author, in order to solve the issue ??
Forum: Plugins
In reply to: [Mongoose Page Plugin] No longer worksIt seems to be working if you’re logged in Facebook, but not otherwise (try on a browser window in incognito mode).
- This reply was modified 4 years, 4 months ago by d79.
Forum: Plugins
In reply to: [WP Post Expires] [Bug] Posts marked as expired even when they’re notDone ??
Forum: Plugins
In reply to: [Post Types Order] Script loaded even in taxonomy admin pageI’m glad, let’s hope they fix it soon.
Forum: Plugins
In reply to: [WP Show Site by IP] Not working with ssl ?Hi and thanks for the feedback.
HTTPS is not a problem (all my websites that are using this plugin are on HTTPS).
In order to make it work it should be enough to install and activate the plugin, then enable the filter with the relative option in the settings page (/wp-admin/tools.php?page=wssbi).
As for the whitelist you are right, it would be handy: I’m placing it on my todo list and I’ll try to make it asap.Let me know if the issue persists.
Forum: Plugins
In reply to: [WP Show Site by IP] HTML site not working properlyHey, thanks for the feedback.
The issue was a due to an error sanitizing the HTML: now it should work fine.
Please, update and let me know if the problem persists.Also stay tuned because I’m about to release another version with lots of changes (improvements I hope).
Forum: Plugins
In reply to: [WP Show Site by IP] WP Show Site by IP@heartlandish Thanks to your input I’ve added a warning with instructions to avoid other misadventures.
Forum: Plugins
In reply to: [WooCommerce VAT] Vat id not display on adminreplace VAT_cui with billing_VAT_cui on both occurences in woocommerce-vat.php
diff --git a/woocommerce-vat.php b/woocommerce-vat.php index f6521c0..2829864 100644 --- a/woocommerce-vat.php +++ b/woocommerce-vat.php @@ -50,7 +50,7 @@ class WoocommerceCustomCheckoutVATField { // Our hooked in function - $fields is passed via the filter! public function VAT_override_checkout_fields( $fields ) { - $fields['billing']['VAT_cui'] = array( + $fields['billing']['billing_VAT_cui'] = array( 'label' => __('VAT', 'woocommerce'), 'placeholder' => _x('VAT', 'placeholder', 'woocommerce'), 'required' => true, @@ -64,7 +64,7 @@ class WoocommerceCustomCheckoutVATField { public function VAT_custom_checkout_field_order_meta_keys( $order ) { echo "<p><strong>VAT:</strong>" . //$order->order_custom_fields['_VAT_cui'][0] . "</p>"; - get_post_meta( $order->id, '_VAT_cui', true ) . "</p>"; + get_post_meta( $order->id, '_billing_VAT_cui', true ) . "</p>"; }