Alessandro Cardinali
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Query Fields] Combine with Custom TaxonomiesOk, I use qmt plugin as a list and not as a dropdown. By doing so, I can filter serveral Times my search query. When submitting the form for filtering my custom fields I Get different results depending on the search I’ve done before:
Case 1: selection of one category from the qmt list –> by Submitting the custom fields form I get a good result.
Case 1.1: by selecting another category from the qmt list, the custom fields form I had before disappears.
Case 2: selection of 2 categories from the qmt list –> by Submitting the custom fields form I get an error result (the qmt filtrers disappear)Many thanks and I hope we’ll find a solution ??
Forum: Plugins
In reply to: [Custom Query Fields] Combine with Custom TaxonomiesHi Axenstar86, how did you solve this problem??
place: [dynamichidden email-author “authormail”]
in cf7 form editor.Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] pagination problemok… change my permalinks and now is god!! ??
I use this method:
put in function.php
//Shortcode CF7 Email autore annuncio function author_email($post_ID) { $user_email = get_the_author_meta('user_email',$authid); // retrieve user email return $user_email; } add_shortcode('authormail', 'author_email');
use this shortcode in CF7:
[dynamichidden email-author "authormail"]
regards.
Forum: Plugins
In reply to: [Query Multiple Taxonomies] [Plugin: Query Multiple Taxonomies] base blog urlsolved:
file core.phpstart from line 58:
public function get( $query = array() ) { $url = self::get_base(); if ( empty($query) ) return apply_filters( 'qmt_reset_url', $url);
add my page url after $url at line 62:
public function get( $query = array() ) { $url = self::get_base(); if ( empty($query) ) return apply_filters( 'qmt_reset_url', $url . '/my-blog-page/' );
??
this work with list method.
I used qmt Version: 1.5.1Forum: Plugins
In reply to: [Query Multiple Taxonomies] [Plugin: Query Multiple Taxonomies] base blog urltnx for reply.
I use a list method… ??ok… solve it.
the problem was generate by another plugin.regard
thanks ??
hello strikeengine, for categories I mean: Category. No Tags.
…I split the categories into several custom taxonomies, and is better.tnx!
I did as you told me. Now that’s better.Ok … I found a solution … perhaps rudimentary but it works:)
I edited the file “list-item.html” inside the folder “templates”:<li class="term-item {{#is-selected}}current-term{{/is-selected}}"> {{#is-selected}} <a class="remove-term" href="{{url}}" title="{{title}}">{{term-name}} ({{count}}) -</a> {{/is-selected}} {{^is-selected}} <a class="add-term" href="{{url}}" title="{{title}}">{{term-name}} ({{count}}) +</a> {{/is-selected}} {{#is-selected}} <!-- Mod --> {{#children}} <ul> {{{child-list}}} </ul> {{/children}} {{/is-selected}} <!-- /Mod --> </li>
Hello.
I am very interested in resolving this issue.
How can I hide the children term’s when they are not active?