ScratchCode Io
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal ErrorI think you are using TheGem theme in your WordPress.
You need to directly contact theme supporter, they have better equipment to solve the issue.
Check your theme discussion here.
https://themeforest.net/item/thegem-creative-multipurpose-highperformance-wordpress-theme/16061685/comments?page=20Forum: Fixing WordPress
In reply to: Front page submenu not workingHello @dcschoolhub,
I checked your website.
And your submenu seems like working.
Please tell me which device and in which browser you are testing.
Thank & Best Regards.Forum: Fixing WordPress
In reply to: Front page is blocking all my other pagesHello @olivierlafont,
I am a developer.
I checked your website homepage.
I also checked you website page source.
There are no other pages you had included.
Can I see your HTML or any other thing so that I can help you.
Thanks & Best Regards.- This reply was modified 7 years, 11 months ago by ScratchCode Io.
Forum: Plugins
In reply to: [WooCommerce] Session has expiredIf you have any issue in you woocommerce like “Sorry, Your session has expired.Return to homepage”. Then please check this link, I can bet you, It will solve your problem.
[link moderated]
- This reply was modified 7 years, 10 months ago by Andrew Nevins.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] Google Maps api keyIf you are using free ACF plugin add following code in your function.php file. Replace your google maps API key with “xxx”.
if(is_admin()):
function my_acf_google_map_api($api){
$api[‘key’] = ‘xxx’;
return $api;
}
add_filter(‘acf/fields/google_map/api’, ‘my_acf_google_map_api’);
endif;If you are using ACF pro plugin, then add following code in your function.php file
if(is_admin()):
function my_acf_init() {
acf_update_setting(‘google_api_key’, ‘xxx’);
}
add_action(‘acf/init’, ‘my_acf_init’);
endif;> Note: Most important things that you have to keep in mind for the best
> solution of above issue. If you are using ACF pro plugin then you must
> enter ACF pro plugin activation key. After inserting the key in plugin
> check your backend your issue is solved.For more information you can visit here : https://www.krazzycodes.com/google-map-not-showing-in-wordpress-backend-acf-plugin/