lucyD
In den letzten 30 Tagen erstellte Support-Threads: 1
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
| Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
|---|---|---|---|---|---|
|
Most Toolset blocks not available
Gestartet von: lucyD
in: Toolset Professional Support
Problem: Activating the MemberPress Courses extension caused most Toolset blocks to disappear from the standard WordPress block editor because MemberPress restricted the allowed block types too broadly. Solution: MemberPress confirmed the issue and plans to fix it in an upcoming release. As a temporary workaround, use the provided allowed_block_types_all filter in the child theme’s functions.php file or through WPCode, then remove it after updating to the fixed MemberPress Courses version. |
|
1 | 13 | vor 2 weeks, 2 days | |
|
Map view not using values set in distance filter
Gestartet von: lucyD
in: Toolset Professional Support
Problem: A Toolset Map View was not using the distance selected in the search filter. The list results respected the chosen radius, but the map still used its own hard-coded distance value, so it showed extra results. Solution: A custom code snippet was added using the wpv_view_settings filter to sync the Map View distance settings from the URL parameters. The code updates the map radius, unit, and center from toolset_maps_distance_radius , toolset_maps_distance_unit , and toolset_maps_distance_center . The search View also needed to use a full page refresh so those URL parameters are available to the Map View. The customer confirmed this resolved the issue. |
|
1 | 3 | vor 4 months, 1 week | |
|
Map not updating when location deleted
Gestartet von: lucyD in: Toolset Professional Support |
|
1 | 15 | vor 9 months, 4 weeks | |
|
Insert map in Divi template for single custom post
Gestartet von: lucyD in: Toolset Professional Support |
|
1 | 4 | vor 11 months, 2 weeks | |
|
Protect access to bbpress forum pages
Gestartet von: lucyD in: Toolset Professional Support |
|
1 | 3 | vor 1 year, 5 months | |
|
Change color of map markers
Gestartet von: lucyD in: Toolset Professional Support |
|
1 | 3 | vor 1 year, 5 months | |
|
Add Toolset map to Elementor page
Gestartet von: lucyD
in: Toolset Professional Support
Problem: I am trying to add a map, created with Toolset, that displays locations from a repeatable field group on a page designed with Elementor. However, when using the shortcodes, the map appears without markers. Solution: Create the View using Toolset's legacy mode and include the map and its markers within the View. Then, use the [wpv-view name="Name of the view"] shortcode in Elementor to display the map. Make sure to enable legacy views under "Toolset > Settings > General". Relevant Documentation: https://toolset.com/course-lesson/enabling-legacy-version-of-toolset-views/ |
|
2 | 2 | vor 1 year, 10 months | |
|
I would like a search on the home page that goes to the main directory page
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 11 | vor 1 year, 10 months | |
|
Use AND when filtering by custom taxonomy
Gestartet von: lucyD
in: Toolset Professional Support
Problem: Solution:
add_filter('wpv_filter_query', 'custom_taxonomy_query_operator', 10, 3);
function custom_taxonomy_query_operator($query_args, $view_settings, $view_id) {
if ($view_id == 509) {
if (isset($query_args['tax_query'])) {
foreach ($query_args['tax_query'] as &$tax_query) {
if (isset($tax_query['operator']) && $tax_query['operator'] == 'IN') {
$tax_query['operator'] = 'AND';
}
}
}
}
return $query_args;
}
|
|
2 | 7 | vor 2 years | |
|
Content template not saving
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 5 | vor 2 years | |
|
General text search and distance filter don't work together
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 7 | vor 2 years, 1 month | |
|
Showing general text search results on map
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 6 | vor 2 years, 1 month | |
|
Ordering results by distance only when the distance filter is used
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 9 | vor 2 years, 2 months | |
|
Can I order results by distance only when the distance filter is used
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 3 | vor 2 years, 4 months | |
|
Display all directory entries on map but list with pagination
Gestartet von: lucyD in: Toolset Professional Support |
|
2 | 9 | vor 2 years, 5 months |