stekky81
Forum Replies Created
-
Forum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Fatal errorHi, the error is still there and after each plugin update I have to patch the plugin manually ??
Forum: Plugins
In reply to: [Accept PayPal Payments using Contact Form 7] Fatal errorThe error occurs only in the backend when installing/updating a plugin that is when the hook upgrader_process_complete is triggered. Look at the closed parentheses the the end of your add_action; the first one is in the wrong place:
add_action(‘upgrader_process_complete’,array( $this, ‘option_tbl_upgrade_action’, 10, 2) );
from WP documentation add_action is like:
add_action( string?$hook_name, callable?$callback, int?$priority?=?10, int?$accepted_args?=?1?): true
as you can see in your code the priority and accepted args are inside the callback array (in bold):
add_action(‘upgrader_process_complete’,array( $this, ‘option_tbl_upgrade_action’, 10, 2) );
when they should be outside:
add_action(‘upgrader_process_complete’,array( $this, ‘option_tbl_upgrade_action’), 10, 2 );
Forum: Plugins
In reply to: [ACF to Custom Database Tables] ACF Option PagesThank you very much!
Yep, I can confirm the problem. I’ve already opened a support request in italian, you can find it here:
I hope they fix it soon, but no response so far…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Caousel proportionThanks for your help! Yesterday I look at the documentation but I didn’t see the “Older posts” button at the end of first page and the filter you mentioned was in the second page. Sorry, my mistake