Olsi Ferazini
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Google maps not showing at front endGood to know you found the solution, and sorry for my late response.
For others:
This JS put before </body> closed body TAG.Peace
Forum: Fixing WordPress
In reply to: Update HTTPS for WordPressThe fastest way and the easiest is below define(‘WP_DEBUG’, false); on wp-config.php you can add these two lines:
define(‘WP_HOME’,’https://yoursite.com’);
define(‘WP_SITEURL’,’https://yoursite.com’);Forum: Plugins
In reply to: [Clean Login] Password Reset with SSLHi Ajshepherd
You can define your new ssl site below this code:
just add this two lines belowdefine(‘WP_DEBUG’, false);
define(‘WP_HOME’,’https://yoursite.com’);
define(‘WP_SITEURL’,’https://yoursite.com’);on the wp-config.php
You can disable these plugins at phpmyadmin on cpanel, and you can access website again, or you can try to restore from last backup on cpanel.
Forum: Plugins
In reply to: [The Events Calendar] Google Maps not showing even with API enabledIts not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.Peace
Its not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.Peace
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Google Maps API warning: NoApiKeysIts not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.Peace
Forum: Themes and Templates
In reply to: [Storefront] Google maps not showing at front endIts not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.I just tested it to some platforms and worked well
Peace 🙂
Its not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.Peace 🙂
Forum: Plugins
In reply to: [The Events Calendar] Google map not showing the map…Its not a problem with plugins but another js who load api by the theme.
The solution is here, if you have created api key on google developer page and have installed Wp Google Maps Plugin, you can add that simple JS on footer or to any other page you want to load Google Maps.<script type=”text/javascript”
src=”https://maps.googleapis.com/maps/api/js?key=PUT_YOUR_KEY_HERE&libraries=geometry,places”>
</script>I just used Geometry and Places to load on Google Maps, bur you can add other options there.
This JavaScript its not only for WordPress CMS but you can use it on other platforms either.Peace 🙂
Forum: Fixing WordPress
In reply to: Images not showing upHello Human 😀
Its only a jQuery problem.
Just add this code to functions.php
function wpse_use_previous_jquery() {
if ( ! is_admin() ) {
wp_deregister_script( ‘jquery’ );
wp_register_script( ‘jquery’, ‘https://code.jquery.com/jquery-1.11.3.min.js’ );
wp_enqueue_script( ‘jquery’ );
}
}
add_action( ‘init’, ‘wpse_use_previous_jquery’ );