Doug
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 |
---|---|---|---|---|---|
Is it possible to set up Toolset through Multisite, where data is shared?
Started by: Doug in: Toolset Professional Support |
2 | 3 | 1 month, 3 weeks ago | ||
AJAX sorting/filtering doesn't work on Google Chrome
Started by: Doug
in: Toolset Professional Support
Problem: I'm using a view with AJAX sorting and filtering, along with the "Show only filter options that would produce results" feature. It works perfectly in Safari but not in Chrome, where it endlessly loads. Disabling AJAX and the filter option resolves the issue in Chrome. Solution: The issue is related to a CORS error that occurs when accessing the site without the "www" prefix in the URL. The AJAX request is blocked because it is treated as a cross-origin request. To resolve this, you need to configure your server to include the Access-Control-Allow-Origin header for the admin-ajax.php file. This can be done by modifying your server's configuration: 1. For Apache: <ifmodule mod_headers.c> Header set Access-Control-Allow-Origin "https://mlpt.com" Header set Access-Control-Allow-Methods "GET, POST, OPTIONS" Header set Access-Control-Allow-Headers "Content-Type" </ifmodule> 2. For Nginx: location /wp-admin/admin-ajax.php { add_header 'Access-Control-Allow-Origin' 'https://mlpt.com'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; add_header 'Access-Control-Allow-Headers' 'Content-Type'; } 3. In WordPress (PHP): function add_cors_http_header() { header("Access-Control-Allow-Origin: https://mlpt.com"); header("Access-Control-Allow-Methods: GET, POST, OPTIONS"); header("Access-Control-Allow-Headers: Content-Type"); } add_action('init', 'add_cors_http_header'); |
2 | 8 | 3 months, 2 weeks ago | ||
How can I align Toolset search fields horizontally?
Started by: Doug in: Toolset Professional Support |
2 | 3 | 4 months, 1 week ago | ||
Displaying Fields that Belong to the Related Post
Started by: Doug in: Toolset Professional Support |
2 | 6 | 6 months, 3 weeks ago | ||
Error page when trying to add or edit Content Templates
Started by: Doug in: Toolset Professional Support |
2 | 4 | 10 months, 1 week ago | ||
Field groups for repeating fields don't show up
Started by: Doug in: Toolset Professional Support |
2 | 2 | 10 months, 2 weeks ago | ||
Sort custom posts by year
Started by: Doug in: Toolset Professional Support |
3 | 7 | 12 months ago | ||
How do you create a view editable with the Block Editor directly?
Started by: Doug in: Toolset Professional Support |
3 | 6 | 1 year ago | ||
How to de-activate additional padding in single fields
Started by: Doug in: Toolset Professional Support |
1 | 2 | 1 year ago | ||
Display objects that are in a relationship, that in turn are in a relationship
Started by: Doug in: Toolset Professional Support |
2 | 3 | 1 year ago | ||
How do I delete intermediary posts without deleting associated relationships
Started by: Doug in: Toolset Professional Support |
2 | 7 | 1 year ago | ||
How to filter child posts in a loop for duplicates
Started by: Doug in: Toolset Professional Support |
2 | 7 | 1 year ago |