• Resolved mikayaha

    (@mikayaha)


    Hey,
    I’m trying to turn off autocomplete for the search input field, however I’d having trouble finding out how. Another concern of mine is I would like to add visible divisions to the products page, like table columns and rows; without the borders.

Viewing 1 replies (of 1 total)
  • Thread Starter mikayaha

    (@mikayaha)

    I resolved it! I use js to turn of the autocomplete; inserted it in the footer. Used css to attain he borders.

    CSS:
    .woocommerce ul.products li.product {
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 15px;
    height:450px;
    }

    js

    $(document).ready(function() {
    $(“:input”).attr(“autocomplete”,”off”);
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Search’ is closed to new replies.