Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jon 23 posts 53 karma points
    Jan 02, 2015 @ 17:59
    Jon
    0

    Unable to add 'Related Links'

    Hi,

     

    I've been trying to add links with the 'Related Links' property but unable to do so. Umbraco states that it has successfully added the new value but doesn't actually add it when I hit the 'Add' button.

     

     

    What could be wrong here?

     

    Thanks,

    Jon

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Jan 02, 2015 @ 18:10
    Jan Skovgaard
    0

    Hi Jon

    What is the exact version of Umbraco 7 that you're using? And do you see any error messages in your browser console when you add and save?

    /Jan

  • Jon 23 posts 53 karma points
    Jan 04, 2015 @ 22:10
    Jon
    0

    Hi Jan,

     

    I'm currently using 7.2.1. Theres no error messages displayed, though it does say:

    'Content Saved: Remember to publish to make changes visible'

     

    But it doesn't actually save the content or display it. Is there a log I can send over for you to examine?

     

    Thanks,

    Jon

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Jan 07, 2015 @ 09:29
    Jan Skovgaard
    0

    Hi Jon

    Does the /App_Data/Logs file reveal any entries with ERROR or WARNING?

    Could you post a screendump of what it looks like when you save the content?

    Also...have you checked that it's not a weird permission issue?

    /Jan

  • Jon 23 posts 53 karma points
    Jan 13, 2015 @ 14:56
    Jon
    0

    Hey Jan, sorry for the delayed response.

     

    Heres a screen dump of adding a link:

     

     

     

    I've checked the user permissions though it looks like I have permission to do everything. I have also checked in the database and it seems I have administrator permissions set.

     

    Here is my log:

    https://www.dropbox.com/s/gky3e4jbllug7d9/log.txt?dl=0

     

    I'm not really sure why it's not working. I've tried this on 2 seperate systems with the same result.

     

    I also have an issue with an image slider not displaying the images in Umbraco, the slider displays images fine in normal HTML but when the images have been imported to Umbraco as MediaPicker then it's having issues. Here's my code for it:

     

     <article style="position: absolute; width: 100%; opacity: 0;"> 

     <div class="banner-wrap">

     <div class="slider-left">

     

    @Umbraco.Field("slider1Header")

     

     

    <button class="sliderBtn"><a class="popup-with-zoom-anim" href="#">REQUEST A DEMO</a></button>

    @{

    if(Model.Content.HasValue("sliderImage1")){

    var mediaItem = Umbraco.TypedMedia(Model.Content.GetPropertyValue("sliderImage1")); 

    <img src="@mediaItem.GetPropertyValue("umbracoFile")" alt="@mediaItem.GetPropertyValue("Name")"/>    

    }   

    }

     

    </div>

    <div class="clear"></div>

    </div>

    </article>

     

      <article style="position: relative; width: 100%; opacity: 1;"> 

     <div class="banner-wrap">

     <div class="slider-left">

     

    @Umbraco.Field("slider2Header")

     

    <button class="sliderBtn"><a class="popup-with-zoom-anim" href="#">REQUEST A DEMO</a></button>

    </div>

    <div class="slider-right">

       @{

    if(Model.Content.HasValue("sliderImage2")){

    var mediaItem = Umbraco.TypedMedia(Model.Content.GetPropertyValue("sliderImage2")); 

    <img src="@mediaItem.GetPropertyValue("umbracoFile")" alt="@mediaItem.GetPropertyValue("Name")"/>    

    }   

    }

    </div>

    <div class="clear"></div>

    </div>

      </article>

     

  • Jon 23 posts 53 karma points
    Jan 16, 2015 @ 11:22
    Jon
    0

    Bumping this thread :) Still having issues with the Related Links not adding 

  • Lucas 5 posts 25 karma points
    Jan 20, 2015 @ 21:59
    Lucas
    0

    Also having the same issue when trying to add a related link. An error is produced in the console. "$scope.model.value.push is not a function"

  • Jon 23 posts 53 karma points
    Jan 20, 2015 @ 22:50
    Jon
    0

    Sorry this is more of a double post now. A solution can be found here: http://our.umbraco.org/forum/umbraco-7/using-umbraco-7/60498-Using-Textstring-as-link

  • Lucas 5 posts 25 karma points
    Jan 20, 2015 @ 23:17
    Lucas
    0

    Is there a way to fix this issue without implementing a workaround? We've had issues implementing packages in the past so we'd rather not go down that path unless we absolutely have to.

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Jan 21, 2015 @ 07:36
    Jan Skovgaard
    0

    Hi Lucas

    What exact version of Umbraco are you using? Seems that there are some issues with this property editor in the 7.2.1 release...perhaps also 7.2.

    /Jan

  • Lucas 5 posts 25 karma points
    Jan 21, 2015 @ 15:10
    Lucas
    0

    Jan,

    We are using 7.2.1. Are you aware of any possible fixes for the issue?

    Thanks, Lucas

  • Steve Morgan 1346 posts 4453 karma points c-trib
    Jan 21, 2015 @ 17:10
    Steve Morgan
    0

    I've had this issue.. it happens something like - I forget to click Add then save and publish. I remember then try and click add and it won't. The workaround is to load a different node and then come back it - ensuring you add your link before clicking Save and Publish.

     

  • Lucas 5 posts 25 karma points
    Jan 21, 2015 @ 18:05
    Lucas
    0

    When you say "load a different node", what does that exactly mean?

  • Steve Morgan 1346 posts 4453 karma points c-trib
    Jan 21, 2015 @ 18:06
    Steve Morgan
    0

    Just click on a different content item (AKA node) on the tree.. e.g. load something else and come back. 

  • Lucas 5 posts 25 karma points
    Jan 21, 2015 @ 18:51
    Lucas
    0

    Doesn't seem to want to work for me. Any other ideas on how to fix? Thanks for the help!

  • Jan Skovgaard 11280 posts 23678 karma points MVP 10x admin c-trib
    Jan 21, 2015 @ 20:00
    Jan Skovgaard
    0

    Hi Lucas

    Unfortunately I'm not aware of any fixes currently apart form the workaround by using the Multi Url Picker package, which is mentioned in the post Jon referred to yesterday.

    /Jan

  • bengan 26 posts 90 karma points
    Jan 26, 2017 @ 13:22
    bengan
    0

    Hi there,

    this thread is a little bit old now, but nevertheless I wanted to add, that this issue still exists in v7.2.8. Sometimes, when clicking the add button, the link is not added but the page is saved instead (as if the save button was clicked). As Steve already mentioned, moving to another node and coming back is the workaround here.

    We are going to use the newest Umbraco release version (7.5.x +) for a new Umbraco project. I will check if the issue still exists here.

    Regards,

    Ben

Please Sign in or register to post replies

Write your reply to:

Draft