• Hi Pektsekye,

    I’ve got a problem with the drop-down-menu. I can only select “make”, then I have to click “search” before I can choose “model”, than I have to click “search” once again before I finally can choose the year… Can you tell me, how I can fix that? So costumers can select all of the three before they have to click “search”?

    Thanks once

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    This plugin does not support DIV CSS drop-downs.

    To disable jQuery Select2 for YMM drop-down selects

    replace line 285:

    
    $("select:not(.hide)").each(function () {
    

    with:

    
    $("select:not(.hide):not(.ymm-select)").each(function () {
    

    in the file:
    wp-content/themes/motors/assets/js/app.js

    Then replace the line:

    
    .ymm-selector.ymm-box select.ymm-category-select {width:100%; margin:0 0 8px 0; color: #575757; font-size: 16px;}
    

    with:

    
    .ymm-selector.ymm-box select.ymm-category-select {opacity: initial; visibility: initial; width:100%; margin:0 0 8px 0; color: #575757; font-size: 16px;}
    

    in the file:
    wp-content/plugins/ymm-search/view/frontend/web/main.css

    Then refresh your browser cache.

    Stanislav

    Thread Starter cwohlfahrt

    (@cwohlfahrt)

    Thanks a lot

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Dropdown doesnt work’ is closed to new replies.