Hi friends…
Do you have some place to follow the chagelog of plugin? The link on plugin page (https://squadmodules.com/changelog) not working for me… only showing “Initial Release” in version 1.0
Thank you very much for all support… you are amazing ??
]]>I’m building a blog page but when using the plugin, I got no links on Post Title, Author Name and Category. I saw no option on module to enable this links.
I had to modify the plugin code to do it but it’s not the right way because I can’t update the plugin now.
It’s possible to add this feature to links?
Post Title -> Links to post
Author Name and Thumb -> Links to Author Page
Categories -> Links to Category Page
In time… have you a github to permit some contributions from community? ??
]]>Hi friends,
When I have the Rank Math plugin activated, all items of Squad Modules are displaying errors “Oops! An Error Has Occurred”
I made a screenshot that you can see here.
]]>The post grid module is not filtering by tag. When I try to show posts filtered by tags, on visual builder everything works, but on page, it loads the first category created.
]]>We uninstalled your plugin and now we can’t access our admin area. Regardless of what URL we try to access on the backend of our site it tries to redirect to …
https://vaxxchoice.com/wp-admin/admin.php?page=divi-forms-styler
… then throws this error …
vaxxchoice.com redirected you too many times.
Try deleting your cookies.
ERR_TOO_MANY_REDIRECTS
Pleas advise as this is a production website that’s now crippled.
]]>What I would like to see as an option to choose as an element is the author gravatar image.
]]>Hello,
I tryed to show blog posts with specific tag with the post grid module from the Squad Modules. Unfortunately, there’s a problem with accents in Content part (where I take the post excerpt) : letters with accents disappear.
]]>To allow Cross-Origin Resource Sharing (CORS) for JSON files in the wp-content
folder, you can configure Apache and Nginx servers as follows: Apache Configuration (in .htaccess
or Apache configuration file)
.htaccess
: Open or create the .htaccess
file in your wp-content
folder and add the following lines: <FilesMatch "\.(json)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
This snippet will set the Access-Control-Allow-Origin
header for JSON files.
httpd.conf
), you can add the following configuration: <Directory "/path/to/your/wp-content">
<FilesMatch "\.(json)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
</Directory>
Replace "/path/to/your/wp-content"
with the actual path to your wp-content
directory. Nginx Configuration (in nginx.conf
or virtual host configuration file)
nginx.conf
or Server Block: Open or create the configuration file for your Nginx server (commonly located in /etc/nginx/nginx.conf
or /etc/nginx/sites-available/your-site
) and add the following block: location ~* \.(json)$ {
add_header 'Access-Control-Allow-Origin' '*';
}
This will set the Access-Control-Allow-Origin
header for JSON files.
Remember to restart your Apache or Nginx server after making these changes for the configuration to take effect. Also, keep in mind that allowing all origins (*
) might have security implications, and it’s recommended to restrict it to specific domains if possible.