etcoder
Forum Replies Created
-
Hi there,
I have the same problem.
The gateway doesn’t mark active even when it is connected.
https://www.screencast.com/t/Fzi142BIACan somebody help me with this issue?
Thanks!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Search with custom fieldsAsking permission to answer the above question.
I think we have the same problem.
Here’s my shortcodeecho do_shortcode('[ajax_load_more post_type="deal" search="'.$searchresult.'" meta_key="wpcf-town" meta_value="'.$searchresult.'"]');
The reason why i need to put the same value in search term and meta value is because i need to include the custom field in search result. But unfortunately, I can’t do that.
Do you have answer for this problem?
Thanks in advance.
Hi dcooney
I tried your solution to change the relation of taxonomy to “AND” and it works perfect.
Thanks for your help I can proceed now to my other tasks
Keep it up!Thanks dcooney, looking someday for this to be functional.
For now, i will try your suggestion to combine it in single tax_queryThanks
taxonomy is working
echo do_shortcode('[ajax_load_more post_type="mypost" taxonomy="place" taxonomy_terms="city"]');
categories is also working
echo do_shortcode('[ajax_load_more post_type="mypost" category="trips"]');
but if i combined them error occur
echo do_shortcode('[ajax_load_more post_type="mypost" taxonomy="place" taxonomy_terms="city" category="trips"]');
result of combined codes:
all city posts display on the top but in the bottom display all the trip categorieswhat I want is to display all “trip” categories under the “city” taxonomy
I have one custom post type “mypost” and one custom taxonomy “place” and terms “city”
but I have many categories:
-trips
-play
-more…what i want is to show all custom post filtered by “city” terms and “trips” category.
But what i’ve got is showing all the posts under custom taxonomy.I’m using the shortcode above but the result is showing all posts under “city” terms