PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

How can we show the specific category products first?

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Hi,
Hope you are well!
We would like to customize the Exam Paper page so when you land on this page, we can customize which papers you can see.
Because it's alphabetical at the moment, users only see the first ones from the letter A. We would like to show a range of exams from all the top, most popular schools.
Please find the website URLs here Exam Papers
I have also tried to use the below shortcode to display the specific category exams.
[products limit="8" product_category category="forest-school, clsg" columns="4" orderby="date" order="desc"]
But it doesn't disapper when we do the search filter so can we disapper this when we use the search filter?
Looking forward to hearing from you!

Thanks
Lokendra




Actually we want to highlight specific exam papers.

Hello

Try  to  use  [woof_products]  - https://products-filter.com/shortcode/woof_products/  attribute: taxonomies

and [woof] (to  show  filter) wit the same  attribute : taxonomies - https://products-filter.com/shortcode/woof/

My plugin does not affect product sorting

Thanks for your reply!

Can you help me to appear the specific products on the shop page by using  [woof_products]?

When I try to use this shortcode [products ids="16523, 15916, 15642, 15169"].  It works perfectly. But the filter is not working properly.

Can you let me know how I can appear the above products through their ids by using [woof_products]? Maybe it will work perfectly by using it.

 

 

 

 

 

Hello

  It works perfectly. But the filter is not working properly.  - The filter should work with a standard shortcode. Describe the problem in more detail please

unfortunately  [woof_products] does not have this feature

Hi,

Thanks for your reply.

Please have a look into this URL https://ibb.co/vsmkDNC 

We are using the shortcode however the first code is appearing only the four products by using their ids.

And the second code is displaying all the products.

But when we come to our shop page and filter it to find a specific result. It doesn't work well. Look at this. https://ibb.co/6P0RL2F

I have selected 11+ and school Alleyn's but the first one is giving wrong results [products ids="16523, 15916, 15642, 15169"] whereas the second one works fine. [woof_products per_page=10]

This is shop test URLs https://metalrockseducation.co.uk/shop-test/

Looking forward to hearing from you.

Thanks

Lokendra

 

Hello  Lokendra

Do you are using comparison logic as AND?

Hi,

Yes, we are using the AND because we do select multiple options at the same time otherwise it doesn't filter the multiple records.

 

Thanks

Lokendra

Hello Lokendra

Try in file -  \wp-content\plugins\woocommerce-products-filter\index.php - add  code - https://c2n.me/49qmeOu.png

$tax_relations = apply_filters('woof_main_query_tax_relations', array());
if (!empty($tax_relations)) {
$tax_query = $query_args['tax_query'] ;
foreach ($tax_query as $key => $value) {
if (isset($value['taxonomy'])) {
if (in_array($value['taxonomy'], array_keys($tax_relations))) {
if (count($tax_query[$key]['terms'])) {
$tax_query[$key]['operator'] = $tax_relations[$value['taxonomy']];
$tax_query[$key]['include_children'] = 0;
}
}
}
}
$query_args['tax_query'] = $tax_query;
}