• hello

    i need help my skin dont have footer widgets and i want to display search meter on footer. its possible we can add search meter manually for display by any short code or tag ?

    second problem is.
    on site front page. search meter word showing in line by default example:
    .word1
    .word2
    .word3

    but i want it to show like
    word1, word2 , word 3

    pls help me about this thank you

Viewing 1 replies (of 1 total)
  • Plugin Author Bennett McElwee

    (@bennettmcelwee)

    There are template tags for displaying Search Meter, but you have to make changes to your theme to use them. The tags are sm_list_popular_searches() and sm_list_recent_searches().

    It would be better to use a theme that allows footer widgets.

    To show the Search Meter results in a horizontal line instead of a vertical list, you can add some CSS code. Here’s how to do it:

    – Log in to your website
    – Click Customize at the top of the screen
    – Click Additional CSS
    – In the box, paste the following CSS code:

    .widget_search_meter ul {
    list-style-type: none;
    margin-left: 0;
    }
    .widget_search_meter li:not(:last-child):after {
    content: “,”;
    }
    .widget_search_meter li {
    display: inline;
    }

    – Click Publish

Viewing 1 replies (of 1 total)
  • The topic ‘search-meter manually display code’ is closed to new replies.