AzzurraM25
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
| Status | Debate | Supporter | Voces | Mensajes | Caducidad |
|---|---|---|---|---|---|
|
Restricted API key for Maps not accepted
Iniciado por: AzzurraM25 en: Toolset Professional Support |
|
2 | 8 | 3 years, 3 months ago | |
|
Views got suddenly broken
Iniciado por: AzzurraM25 en: Toolset Professional Support |
|
2 | 12 | 3 years, 3 months ago | |
|
Which JS to defer?
Iniciado por: AzzurraM25
en: 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, 6 months ago |