How to optimise your website for search engines. SEO in Umbraco

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ม.ค. 2025

ความคิดเห็น • 19

  • @AbuSakeenah0
    @AbuSakeenah0 4 ปีที่แล้ว

    Hello Paul, You are using a custom made Model. What if I have already a generated model with all the propertyvalues like name, titel and so forth? How can I make it possible to inherit my custom made model from the generated model? I keep getting a nullpointerexception because of the Html.RenderAction in the baseView..

    • @AbuSakeenah0
      @AbuSakeenah0 4 ปีที่แล้ว

      Hello Paul, nevermind. I solved it by just not using a partial view and custom model. I'm using the generated model. Anyway thanks for this helpful video. Will there be more videos about Umbraco v8 in the future? Kind regards.

    • @CodeSharePaul
      @CodeSharePaul  4 ปีที่แล้ว

      Hi I’m glad you got it sorted. I will continue to make videos about v8

    • @edwinconsultoninstagramhel4416
      @edwinconsultoninstagramhel4416 4 ปีที่แล้ว

      Edwinconsult __ on Instagram fixed up SEO related issues on my website.. could talk em over

  • @dharmendrakumarsingh8840
    @dharmendrakumarsingh8840 3 ปีที่แล้ว

    Hi Paul thanks for a nice tutorial,When i am rendering text for swidish language browser not rendering some text in swidish.Can you please let me know am i missing something? i am using umbraco 8.14

  • @shanedriveinit
    @shanedriveinit 6 ปีที่แล้ว +2

    If the method "GetPropertyValue" isn't available for you for CurrentPage it's probably because you have forgotten to include Umbraco.Web on top of the page. Silly mistake I did which took me few minutes to realise.

    • @CodeSharePaul
      @CodeSharePaul  6 ปีที่แล้ว +1

      Yeah I used to forget that too

  • @phucnk007
    @phucnk007 4 ปีที่แล้ว

    Hello Paul, Please help me how to make the sitemap in Umbraco 8. Thanks

    • @CodeSharePaul
      @CodeSharePaul  4 ปีที่แล้ว +1

      Hi, there is a tutorial here our.umbraco.com/Documentation/Tutorials/Creating-an-XML-Site-Map/

    • @phucnk007
      @phucnk007 4 ปีที่แล้ว

      @@CodeSharePaul Thanks so much.

  • @MrNgueyong
    @MrNgueyong 7 ปีที่แล้ว

    Hey Paul great videos because of you and your.tutorials.I am now an embrace certified developer. Thank you for this great content. Please keep it coming I was wondering if you could please do a video.on embrace macros which enable content editors to compose pages themselves

  • @ericaput8685
    @ericaput8685 7 ปีที่แล้ว

    Followed along pretty cool stuff.

  • @hongthien15
    @hongthien15 6 ปีที่แล้ว

    Hey Paul, Can I get Umbraco dictionary field in Controller?

    • @CodeSharePaul
      @CodeSharePaul  6 ปีที่แล้ว

      Yes you can. I don't have the code to hand but I've done it many times.

  • @hongthien15
    @hongthien15 6 ปีที่แล้ว

    hey Paul! How can I get Umbraco field in another Content? I saw in your code you using CurrentPage!

  • @jandersson5198
    @jandersson5198 7 ปีที่แล้ว

    This is how my keywords output became following your example wierd enough.

    • @hi3pathi
      @hi3pathi 6 ปีที่แล้ว

      Following will resolve it:
      var keywords = (string[])CurrentPage.GetPropertyValue("keywords");
      model.Keywords = string.Join(",", keywords);