franck86
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Plugins
In reply to: [WP Cassify] Not compatible with POHP 8 and above2 Solutions
Solution 1:
In wp_cassify configuration, add a false url in “White List URL(s)”
Solution 2:
To make it works you need to modify one file
wp-cassify/classes/wp_cassify_plugin.php
insert line 1138 : if (trim($wp_cassify_redirect_url_white_list)!==”) {
and line 1147 : }
The function should look like this
private function wp_cassify_is_in_while_list( $url ) { $is_in_while_list = false; $wp_cassify_redirect_url_white_list = WP_Cassify_Utils::wp_cassify_get_option( $this->wp_cassify_network_activated, 'wp_cassify_redirect_url_white_list' ); if (trim($wp_cassify_redirect_url_white_list)!=='') { $white_list_urls = explode( ';', $wp_cassify_redirect_url_white_list ); if ( ( is_array( $white_list_urls ) ) && ( count( $white_list_urls ) > 0 ) ){ foreach( $white_list_urls as $white_url ) { if ( strrpos( $url, $white_url, -strlen( $url ) ) !== false ) { $is_in_while_list = true; } } } } return $is_in_while_list; }- This reply was modified 2 years ago by franck86.
Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] Newsletter bugCan’t update because i am in WordPress 4.9.9 and last version of mailpoet do not work with message :
Unknown “mailpoet_locale” function.
Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] Newsletter bugI am using 3.17.2
Viewing 3 replies - 1 through 3 (of 3 total)