amiable93
Forum Replies Created
-
Yes thank you a lot 🙂
I am having some tabs and I query products based on the categories they belong.
<?php foreach ( $terms as $term ) { ?> <?php $prds=new WP_Query(array( 'post_type' => 'products', 'orderby' => 'date', 'order' => 'ASC', 'posts_per_page' => 6 , 'tax_query' => array( array( 'taxonomy' => 'product_categories', 'terms' => $term ->term_id, 'field' => 'ID' )))); ?> <?php } ?>But the categories are not specific they are coming from this
<?php $terms = get_terms( $taxonomyName, array( 'parent' => $custom_term->term_id, 'orderby' => 'slug', 'hide_empty' => false ) ); ?>My only problem is that i recreate the whole thing in the shortcode builder except the time when I reach this and I have to select the terms instead of having them somehow dynamicaly generated like in the query above.

To make it short.
In that one [ajax_load_more post_type=”post” taxonomy=”product_categories” taxonomy_terms=”plotter-product-house” taxonomy_operator=”IN”]
Can I make it to this one? [ajax_load_more post_type=”post” taxonomy=”product_categories” taxonomy_terms=”TERM_ID” taxonomy_operator=”IN”]- This reply was modified 9 years, 6 months ago by amiable93.
Hi, i think it makes sense to redirect to a page to say login failed etc.
Wouldnt be back if u implement it.
Anyways, the problem i have is that i have my small log in form in the footer and when is wrong it just reload the page without getting back to the footer section where the error message label is beeing displayed above the input boxes.