how can i disable breadcrumbs only from one page?

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
bass115
User
Posts: 28

how can i disable breadcrumbs only from one page?

Post by bass115 »

Hi all,

First of all i would like to thank Mr. Mobhar for his great support.

I have simple question: how can i disable the breadcrumbs on the top of specific page (only one page not all pages)?

should i write css display: none or what?


mobhar
User
Posts: 11721

Post by mobhar »

Simply put the following jQuery code in "Startup Script" under "Client Scripts" -> "Table-Specific" -> "List Page":

$(document).ready(function() {
$(".ewBreadcrumbs").hide();
});


bass115
User
Posts: 28

Post by bass115 »

excellent as usual :)

it solved my problem.


Post Reply