Quantcast
Viewing all articles
Browse latest Browse all 130

CRM4: Hiding Existing Products/ Write-In Products Navigation Labels

Paste this into your onload of your quote entity.

{codecitation style="brush: javascript;"}
var existingProducts = document.getElementById("navExistingProducts");
var writeInProducts = document.getElementById("navWriteInProducts");

if (existingProducts != null)
{
writeInProducts.style.display = "none";
}

if (writeInProducts != null)
{
writeInProducts.style.display = "none";
}
{/codecitation}

Viewing all articles
Browse latest Browse all 130

Trending Articles