|
|
Default filter results in a view
Started by: johnC-6
in: Toolset Professional Support
Quick solution available
Problem:
I want to have the default search show the results from a specific category named "recent".
Solution:
There isn't such kind of built-in feature, in your case, you just need to pass URL parameter wpv-category=recent to that page, for example:
https://SITE-URL/transactions/?wpv-category=recent
Relevant Documentation:
|
|
2 |
3 |
3 years, 9 months ago
johnC-6
|
|
|
Still incompatibility issues with SEO Press after Toolset code added
Started by: MargeP6083
in: Toolset Professional Support
Quick solution available
Problem:
Fix compatibility issue between SEO Press pro plugin and Toolset Access plugin.
Solution:
You can exclude custom post types of SEO Press plugin from Access control, for example:
add_filter('toolset-access-excluded-post-types', function($excluded_post_types){
$excluded_post_types[] = 'seopress_404';
return $excluded_post_types;
});
Relevant Documentation:
|
|
2 |
9 |
3 years, 9 months ago
MargeP6083
|