VirtueMart Forum

VirtueMart 2 + 3 + 4 => Product creation => Topic started by: Sascha_RT on February 03, 2015, 18:12:37 PM

Title: Category select dropdown
Post by: Sascha_RT on February 03, 2015, 18:12:37 PM
Hey,

I hope someone can help me with that problem, I just can't find where to change it.

When you select  category/categories while creating a product, a dropdown menu with the categories appears.
Is it possible to change that to a simple list to scroll through (if your internet is slow and it takes some time to load, the list appears before it changes to the dropdown)

Some of my products go in a lot of categories, so that really would help me a lot!

Thanks!
Title: Re: Category select dropdown
Post by: GJC Web Design on February 04, 2015, 00:04:17 AM
put in the page administrator\components\com_virtuemart\views\product\tmpl\product_edit_information.php

<style type="text/css">
  select#categories {
    display:block !important;
   }
  div#categories_chzn {
   display:none !important;
   }
  </style>