AzzurraM25
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
| Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
|---|---|---|---|---|---|
|
Restricted API key for Maps not accepted
Gestartet von: AzzurraM25 in: Toolset Professional Support |
|
2 | 8 | vor 3 years, 3 months | |
|
Views got suddenly broken
Gestartet von: AzzurraM25 in: Toolset Professional Support |
|
2 | 12 | vor 3 years, 3 months | |
|
Which JS to defer?
Gestartet von: 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 | vor 3 years, 6 months |