Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi Juan,
We can hide the `Browse...` link instead of `or Browse...` using CSS.
1. Create a HideBrowseLinks.css file.
.epi-visibleLink {
display: none !important;
}
2. Add created CSS file path in the module.config file.
<?xml version="1.0" encoding="utf-8"?>
<module>
<clientResources>
<add name="epi-cms.widgets.base" path="~/Styles/HideBrowseLinks.css" resourceType="Style" />
</clientResources>
</module>
Hi
Is it possible to remove "or Browse..." link from this property?
[Display(Name = "Category nodes", Description = "Soem description")] [AllowedTypes(new[] { typeof(CatalogNode) })] [BackingType(typeof(PropertyContentReferenceList))] [UIHint(UIHint.CatalogNode)] public virtual IList<ContentReference> SelectedCategories { get; set; }