nickW-7
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
| Status | Topic | Supporter | Voices | Posts | Freshness |
|---|---|---|---|---|---|
|
How to style pagination on slider
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 7 | 3 years, 11 months ago | |
|
How to sort post items by newest to oldest
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 2 | 4 years, 2 months ago | |
|
Responsive view
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 12 | 4 years, 7 months ago | |
|
How to remove taxonomy pages
Started by: nickW-7
in: Toolset Professional Support
Problem: The issue here is that the user wanted to disable their taxonomy archives. Solution: This can be done with the code below.
/**
* Disable the taxonomy archive pages
*/
add_action('pre_get_posts', 'jb_disable_tax_archive');
function jb_disable_tax_archive($qry) {
if (is_admin()) return;
if (is_tax('tax-slug')){
$qry->set_404();
}
}
Add the above to your custom code section in Toolset -> Settings -> Custom Code and ensure that you've activated the code. Finally change the 'tax-slug' to the slug of the taxonomy that you want to disable the archive for. |
|
2 | 5 | 4 years, 7 months ago | |
|
How to add a checkbox
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 14 | 4 years, 7 months ago | |
|
view layout changes after refresh
1
2
Started by: nickW-7 in: Toolset Professional Support |
|
3 | 19 | 4 years, 9 months ago | |
|
Custom Field Link Title
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 3 | 4 years, 9 months ago | |
|
filter field settings
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 3 | 4 years, 11 months ago | |
|
post title filter drop-down
Started by: nickW-7 in: Toolset Professional Support |
|
2 | 3 | 4 years, 11 months ago | |
|
How to style custom search filters
Started by: nickW-7
in: Toolset Professional Support
This thread was about styling Toolset elements. In the meantime, we published a full training course about designing WordPress sites. Check it out to learn how to style Toolset elements and your whole site. |
|
2 | 6 | 4 years, 11 months ago |