elvisc1
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Job Manager] Error on google mapsHi,
I refer to the functions.php file
It is located under Listable folder:
wp-content\themes\listableLocate in the code: function listable_scripts()
Change:
$google_maps_key = listable_get_option( ‘google_maps_api_key’ );To:
$google_maps_key = get_option( ‘job_manager_google_maps_api_key’ );Forum: Plugins
In reply to: [WP Job Manager] Error on google maps@jenhooks,
We use theme Listable Child By PixelGrade.The problem was in the Theme functions, method listable_scripts
This return empty key
$google_maps_key = listable_get_option( ‘google_maps_api_key’ );I changed to:
get_option( ‘job_manager_google_maps_api_key’ );Forum: Plugins
In reply to: [WP Job Manager] Error on google mapsfound the problem
the Theme functions used wrong option to get the key
Forum: Plugins
In reply to: [SI CAPTCHA Anti-Spam] Captcha not validatingThanks,
Not sure how this thread helps, maybe I’m missing somethingMy problem is that when submitting the form, no validation is done
for example. on post comments form, after submit I get a page with a message saying wrong captcha
I need the same behavior herewell,
adding <?php do_action(‘register_form’); ?>
solved itThanks to Mike Challis!
Found it in the new reCaptcha support forum- This reply was modified 9 years, 1 month ago by elvisc1.