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.
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.
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:
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.
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.
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.
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.
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
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
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
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
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>
Bumping this thread :) Still having issues with the Related Links not adding
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"
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
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.
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
Jan,
We are using 7.2.1. Are you aware of any possible fixes for the issue?
Thanks, Lucas
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.
When you say "load a different node", what does that exactly mean?
Just click on a different content item (AKA node) on the tree.. e.g. load something else and come back.
Doesn't seem to want to work for me. Any other ideas on how to fix? Thanks for the help!
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
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
is working on a reply...