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

SEO friendly URLs for faceted search (control indexability by depth/number of filters selected)

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.

Hello

Thank  you for  your  cooperation!

This is what is needed

I passed this to the developers to implement.

Depth control for each rule(url)?

Depth control rule that can be applied globally for indexable URLs

Hello

Ok! I already made a task for developers

If you want, I can inform you before the release of the new version, as soon as this functionality is done

That would be great - thank you. Are you including the other changes discuss on this ticked in the next release?

Yes.

Fix texts(h1,title,meta) after filter reset in ajax mode

Handle canonical links

Aliases for URL Values

Add more dynamic variables {} (site name, page title, category)

indexing depth control

 

Thanks - also:

a) 'clear all filters' to revert to the default/parent category page

And

b) more flexibility over the filters, for example setting SEO data for the page with URL path /colour-family-black/product_cat-2-seater-sofas/ - in this example, we might want to allow popular colours like black 2 seater sofas, but would want control to not allow pink 2 seater sofas

I spoke to my client yesterday - point b) above is important to them as not all tags (e.g. rare colours, types, styles, etc) should be indexed, so a more refined level of control would be very useful.

Hello

OK!

Fix texts(h1,title,meta) after filter reset in ajax mode  =   'clear all filters' to revert to the default/parent category page

b) as I understand it, you need rules to exclude from indexing

Hello

We have updated the plugin

added work with canonical links, indexing depth setting and text variables for the current category

woof_seo_do_index - https://share.pluginus.net/image/i20230508185146.png  -  New hook for more flexible control. for example don't index red color:

add_filter('woof_seo_do_index', function($do_index, $curr_url, $request_data){

if (isset($request_data['pa_color'])) {
$colors = explode(',', $request_data['pa_color']);
if (in_array('red', $colors)) {
$do_index = false;
}
}

return $do_index;
},10,3);