daveG-7
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
| Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
|---|---|---|---|---|---|
|
The map option zoom_control=’off’ doesnt’ seem to be working
Gestartet von: daveG-7 in: Toolset Professional Support |
|
1 | 7 | vor 2 months, 3 weeks | |
|
Is it possible to show all results of a view search on a map, but use pagination
Gestartet von: daveG-7 in: Toolset Professional Support |
|
1 | 6 | vor 3 months | |
|
Required fields not validating
Gestartet von: daveG-7
in: Toolset Professional Support
Problem: On the signup form, Toolset user form required fields could be bypassed if WordPress core required fields were filled first, allowing submission without completing Toolset-required fields. Solution: Add the required='true' attribute directly to the [cred_field] shortcode for each field that must be mandatory, ensuring proper validation and preventing form submission without them. Relevant Documentation: https://toolset.com/forums/topic/required-fields-in-front-end-forms/ |
|
1 | 9 | vor 3 months, 2 weeks | |
|
Changing permalink for custom post types so they don't use post name
Gestartet von: daveG-7
in: Toolset Professional Support
Problem: I want the custom post types for farms and restaurants on my site to not display the post name in their permalinks, using only the post ID instead. This is because I’m building a paid member directory, and displaying the name in the URL could give away sensitive information. Solution: The URL structure of custom post types is managed by WordPress settings, not Toolset. To achieve ID-based URLs, go to WordPress Dashboard > Settings > Permalinks and set the structure to "Plain". Relevant Documentation: |
|
2 | 7 | vor 1 year, 3 months | |
|
Theme sticky header doesn't work on Toolset Custom Post Type Single Pages
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 7 | vor 1 year, 3 months | |
|
On reaching the last page of results in pagination, scrolls down
Gestartet von: daveG-7 in: Toolset Professional Support |
|
3 | 11 | vor 2 years, 2 months | |
|
Help with displaying post expiration date
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 8 | vor 2 years, 4 months | |
|
Code snippet not running on Ajax calls on a search form
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 5 | vor 2 years, 4 months | |
|
I've found an issue with a previous solution to a different ticket
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 11 | vor 2 years, 6 months | |
|
Second page of ajax pagination after a custom search returns no results
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 5 | vor 2 years, 8 months | |
|
Add default text to multiselect taxonomy filters
Gestartet von: daveG-7
in: Toolset Professional Support
Problem: I am having an issue with adding default text to multi-select taxonomy filters in Toolset, as the default_label only works for select taxonomy filters. Solution: To add a value-less option with the desired text to the multi-select input, use the following JavaScript code:
document.addEventListener("DOMContentLoaded", function() {
// Get the select element
const selectElement = document.querySelector('select[name="wpv-offering[]"]');
// Create a new option element
const defaultOption = document.createElement('option');
defaultOption.value = 'any';
defaultOption.text = 'Any';
// Set the new option as the default selected option
defaultOption.selected = true;
// Add the new option to the beginning of the select element
selectElement.insertBefore(defaultOption, selectElement.firstChild);
});
This code waits for the DOM content to be loaded, gets the select element, creates a new option element, sets it as the default selected option, and adds it to the beginning of the select element. |
|
3 | 7 | vor 2 years, 8 months | |
|
Changing users role after membership expires
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 3 | vor 2 years, 8 months | |
|
Create user form is only showing up for admin level users
1
2
Gestartet von: daveG-7 in: Toolset Professional Support |
|
2 | 20 | vor 2 years, 9 months | |
|
Help with conditional output
Gestartet von: daveG-7
in: Toolset Professional Support
Problem: Solution: You can find proposed solution in this case with the following reply: Relevant Documentation: |
|
2 | 3 | vor 3 years, 9 months |