Closed rezzart-id closed 2 months ago
Craft CMS 3:
You can try it now by setting your semver in your composer.json
to look like this:
"nystudio107/craft-seomatic": "dev-develop as 3.5.4”,
Then do a composer clear-cache && composer update
…..
Craft CMS 4:
You can try it now by setting your semver in your composer.json
to look like this:
"nystudio107/craft-seomatic": "dev-develop-v4 as 4.1.4”,
Then do a composer clear-cache && composer update
…..
Craft CMS 5:
You can try it now by setting your semver in your composer.json
to look like this:
"nystudio107/craft-seomatic": "dev-develop-v5 as 5.1.4”,
Then do a composer clear-cache && composer update
@khalwat Thank you so much for the quick response and the fix! I applied the update and tested it, and I'm happy to report that it's working perfectly now. I really appreciate your help and support.
Describe the bug
When querying SEOmatic via GraphQL to fetch frontend text templates, the ads.txt file does not appear in the response. Instead, there are two entries for humans.txt, one of which contains content that should belong to
ads.txt
.To reproduce
Steps to reproduce the behaviour:
In Craft CMS 4, enable the
ads.txt
,robots.txt
,humans.txt
,security.txt
file through the Global SEO settings in the SEOmatic plugin.Run the following query via GraphQL:
Review the output from this query.
Expected behaviour
The
ads.txt
template should be included in the output with the correct filename and contents, and there should be no duplication of thehumans.txt
entry.Actual Behavior:
ads.txt
file is missing from the response.humans.txt
entries, one of which contains content that should be inads.txt
.Example Response:
Versions
Additional Notes:
I have tried clearing the SEOmatic cache and verifying that ads.txt is correctly enabled in the Global SEO settings, but the issue persists.