dobled
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Address Geocoder] Not compatible with WordPress 5.5Same here,
You need to execute the js on window.load.
Just edit address-geocoder.js and add this:
line4:
$(window).load(function(){
line71:
});
Forum: Plugins
In reply to: [Simple Taxonomy Ordering] wp_dropdown_categories: how to order by nameThis doesn’t works: I can’t access the method with $this outside the class.
The plugin doesn’t instantiate the class into a variable and i don’t know how to remove the filter without it.
I temporarly modified the plugin. Not the best solution but it works…
Thanks anyways
Forum: Plugins
In reply to: [Simple Taxonomy Ordering] wp_dropdown_categories: how to order by nameThere are several pages using this dropdown.
I think it would be better to remove the filter, call the dropdown and restore the filter again. Is it possible?Forum: Plugins
In reply to: [Simple Taxonomy Ordering] wp_dropdown_categories: how to order by nameRemoved the ‘order’ and placed the ‘orderby’ as a first element on the array. Still the same ??
Forum: Plugins
In reply to: [Simple Taxonomy Ordering] wp_dropdown_categories: how to order by nameYes, it’s a custom taxonomy. This are the arguments i used:
$servicios_args = array( 'show_option_all' => '', 'show_option_none' => '', 'option_none_value' => '-1', 'orderby' => 'name', 'order' => 'ASC', 'show_count' => 0, 'hide_empty' => 0, 'child_of' => 0, 'exclude' => '', 'include' => '', 'echo' => 1, 'selected' => get_query_var($values['servicios_name']), 'hierarchical' => 0, 'name' => $values['servicios_name'], 'id' => 'servicios_select', 'class' => 'postform', 'depth' => 0, 'tab_index' => 0, 'taxonomy' => 'servicio', 'hide_if_empty' => false, 'value_field' => 'slug', );
Viewing 5 replies - 1 through 5 (of 5 total)