Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Will there be 7.6 support anytime soon? A bunch of my new projects need this SEO tool.
Let me know if it's in the works, or if it does already work!
Should work in 7.6 already, if you encounter any problems, please let me know
Thanks, I'll check it out! The project page said untested, so I wasn't sure.
Keywords is definitely not working!
Can you explain the problem? Do you get an error?
I have no errors, I can enter tags fine! It's just not rending it properly.
This is the code I used from your package:
<meta name="keywords" content="@Umbraco.Field("seoMetaKeywords", recursive: true)">
When I view source on the live page:
Solution
<meta name="keywords" content=" @if(CurrentPage.HasValue("seoMetaKeywords")){ foreach (var tagItem in CurrentPage.seoMetaKeywords){ var SplitTags = tagItem; SplitTags = SplitTags + ","; @SplitTags } } ">
Was able to reproduce this and will be fixed in the new version I'm releasing later this day
https://github.com/markwemekamp/RankOne-Umbraco-SEO-Tool/commit/6114fad8419d85b846e9d2c56a763246b22519d0
@if(Model.Content.HasProperty("seoMetaKeywords") && Model.Content.HasValue("seoMetaKeywords")){ var keywordsValue = string.Join(", ", Model.Content.GetPropertyValue<System.String[]>("seoMetaKeywords")); <meta name="keywords" content="@keywordsValue"> }
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
7.6 Support
Will there be 7.6 support anytime soon? A bunch of my new projects need this SEO tool.
Let me know if it's in the works, or if it does already work!
Should work in 7.6 already, if you encounter any problems, please let me know
Thanks, I'll check it out! The project page said untested, so I wasn't sure.
Keywords is definitely not working!
Can you explain the problem? Do you get an error?
I have no errors, I can enter tags fine! It's just not rending it properly.
This is the code I used from your package:
When I view source on the live page:
Solution
Was able to reproduce this and will be fixed in the new version I'm releasing later this day
https://github.com/markwemekamp/RankOne-Umbraco-SEO-Tool/commit/6114fad8419d85b846e9d2c56a763246b22519d0
is working on a reply...