AzzurraM25
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
| Status | Topic | Supporter | Voices | Posts | Freshness |
|---|---|---|---|---|---|
|
Restricted API key for Maps not accepted
Started by: AzzurraM25 in: Toolset Professional Support |
|
2 | 8 | 3 years, 2 months ago | |
|
Views got suddenly broken
Started by: AzzurraM25 in: Toolset Professional Support |
|
2 | 12 | 3 years, 2 months ago | |
|
Which JS to defer?
Started by: AzzurraM25
in: Toolset Professional Support
Problem: How to force the Javascript file of the Maps plugin to load at a later time? Solution: There is no such an option in Toolset. You can force Toolset to avoid loading the Map Javascript files by adding the code below:
function my_dequeue_script() {
wp_deregister_script( 'google-maps' );
wp_dequeue_script( 'google-maps' );
}
add_action( 'wp_print_scripts', 'my_dequeue_script', 200 );
After that, you can add the Javascript files below at a later time that you want: /wp-content/plugins/toolset-maps/resources/js/jquery.geocomplete.min.js |
|
2 | 5 | 3 years, 5 months ago |