• Resolved vale2122

    (@vale2122)


    Hi,

    I wan’t to remove the search button.I know i can just hide it but you can still see it when the page is loading

    Thanks

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

    (@pektsekye)

    Hello,

    Replace the line:

    
    .ymm-selector.ymm-box .ymm-submit-any-selection {margin-top:0;}
    

    with:

    
    .ymm-selector.ymm-box .ymm-submit-any-selection {margin-top:0;display:none;}
    

    And the line:

    
    .ymm-selector.ymm-horizontal .ymm-submit-any-selection {margin-top:6px;}
    

    with:

    
    .ymm-selector.ymm-horizontal .ymm-submit-any-selection {margin-top:6px;display:none;}
    

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

    And replace the line:

    
      this.searchAnySelButton.show();
    

    with:

    
     //  this.searchAnySelButton.show();
    

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

    Then refresh your browser cache.

    Stanislav

    Thread Starter vale2122

    (@vale2122)

    Thank you very much.

    Hello, I did the operations but it was not successful. I want to remove the search button, how can I do it?

    Plugin Author Pektsekye

    (@pektsekye)

    Hello,

    to: @omertuzlugol
    Try to refresh the browser cache. Maybe it still loads an old file.

    Also you can send a link of your website to my email [email protected]
    So I can check it.

    Stanislav

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove search button’ is closed to new replies.