jpburn
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] reCAPTCHA v3Same here, I don’t want to use a third party plugin for invisible recaptcha or recaptcha v3, most of them are not compatible with the javascript hooks in CF7 and my pages are rendered with ajax and I need to reset the form on page load.
Forum: Plugins
In reply to: [Theme My Login] Translating Theme My LoginIt looks like the language directory has been renamed in the plugin. /wp-content/plugins/theme-my-login/languages language should be plural since thats the path used in the load_textdomain. Thats why po mo werent working for me in v 6.4.3
Forum: Plugins
In reply to: [WP Sitemap Page] exclude post by category in sitemapyou could temporary modify get_categories() on line 559 and 529 like this
get_categories( array('exclude'=>'ID-OF-THE-CAT-YOU-DONT-WANT') );
but you wont be able to update the plugin anymore.The problem seems to be on line 321 of relationship.php:
do_action( ‘wpcf_relationship_save_child’, $child, $parent );
If I comment this line the post stops to unlink. Can you have a developer taking a closer look? If the bug is in WPML then you will have to see if they can fix it ?
Thanks
WPML works perfectly will all my post type & post_meta. Your plugin is responsible for saving Parents/Childs relationship with hooks. I’m pretty sure the problem rely there.
Forum: Plugins
In reply to: [WP Sitemap Page] sitemap duplicate entryPlease add this line on line 345 in wp-sitemap-page.php :
$args['suppress_filters'] = 0;
Otherwise people using WPML will see duplicate entries.Forum: Plugins
In reply to: [The Events Calendar] Monthly Calendar View No Longer WorksI had the same problem but now that we are on November (No more the 31st) the problem is fixed. To me it looks like a calculation problem for months with 31 days ….
Hi mbigul, I installed the version 1.3.1 today but I still have the same issue. Any idea ?
It happened to me too since im using THEME MY LOGIN (a custom login page). In a emergency case, you can go in wp_options Table and locate seedprod_comingsoon_options the in the option name column and modify the line
comingsoon_enabled";a:1
in the option_value forcomingsoon_enabled";a:0
… basically change the 1 for a 0.To fix this simply open codestyling-localization.php and remove extra space after the constant.
if (!defined('E_USER_DEPRECATED ')) define('E_USER_DEPRECATED', 16384);<code>should become</code>if (!defined('E_USER_DEPRECATED')) define('E_USER_DEPRECATED', 16384);