Andrea
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Search with Algolia] delete userHello,
looks a great solution, thank you!
Forum: Plugins
In reply to: [WP Search with Algolia] delete userexists a way to do with php?
Forum: Plugins
In reply to: [WP Search with Algolia] delete useri neri that is automate, esiste an action to trigger reindexing of single indice?
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] issue with User Switchingthe lastes 1.5.8
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] issue with User Switchingyes, i tried but not work
Forum: Plugins
In reply to: [User Switching] issue with Wp Cerbercan you be more specific about this rules?
Forum: Plugins
In reply to: [Repeat Order for WooCommerce] redirect after reorderi try with this solution, looks that it works
add_action( ‘woocommerce_ordered_again’, ‘ordered_again’ );
function ordered_again($order_id)
{
add_filter(‘wp_redirect’, ‘redirect_after_order_buy’,9999,2);
}
function redirect_after_order_buy($url, $status)
{
return wc_get_checkout_url();
}`hello,
there are news about bugfix?
thank youhello,
in 8.8.5 the problem still existsForum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] Problem with error messagesCan you keep us gently updated so we can resolve those errors promptly?
Thank you very much.i’m sorry but i downgrade the version to 8.8 and the issue is resolved
the problem was on 8.8.3
i don’t test on lastest versionForum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] validation privacy checkboxin chrome the problems appears
Forum: Plugins
In reply to: [WP Crontrol] unable to save custom eventi found the problem in different installation:
* Which version of PHP are you using?
7.4.7
* Which version of WordPress are you using?
5.6
* Which browser and OS are you using?
chrome
* Are you using the date and time pickers when choosing the time for the event?
yes
* Are there any errors showing in your PHP error log?
no
* Do you have an object caching plugin installed? (eg. for Redis or Memcached)
no
* What is your timezone?
romeForum: Plugins
In reply to: [WP Search with Algolia] disable algolia for some cptnow it works, the issues was caused for a my previuos function:
public function abilita_algolia_archivi($should_filter,$query) { if ( !empty($query->query['s']) ) { return true; } return false; }
now i edited in this way
public function abilita_algolia_archivi($should_filter,$query) { if (is_admin()) { return false; } if ( !empty($query->query['s']) ) { return true; } return false; }
And it works!
thank you for your time!