remove + icon if no sub-category

Is it possible to remove "+" icon for sidenav if a first level category have no sub-category?

Attachment 24860

Check attached image, "vestion" has no sub-categories, but "+" icon still show out.

Thanks in advanced.

1 answer

Profile photo of Sherlock 0.00 $tone December 18, 2012
Public

Hi rogerzhou,

You open the file of skin\frontend\default\jm_ores\csstheme.css adding this css rule

HTML Code:

  li.level0.no-child a.toggle{
                  display:none;
               }

Then open the file of app\design\frontend\default\jm_orestemplate\catal ognavigation\sidenav.phtml adding this javascript code

HTML Code:

                          <script language="javascript">
    document.observe("dom:loaded", function() { 
	      jQuery("#ja-sidenav li.level0").each(function(index,item){
		     if(jQuery(item).children("ul").length <= 0 ) { jQuery(item).addClass("no-child"); }
		  })
	});
</script>

I hope that helps !

#1

Please login or Register to Submit Answer

Written By

Comments