Trevor

Forum Replies Created

Viewing 10 posts - 31,821 through 31,830 (of 32,056 total)
  • Trevor in reply to:
    How to make the filter on the same line?
    #41411

    Hi

    I will need to see a live page then, for me to see the issue.

    Trevor in reply to:
    How to make the filter on the same line?
    #41403

    You would need to add some margin on all of them too, like this maybe?

    .searchandfilter ul li {
        width: auto;
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px;
    }
    li.sf-field-taxonomy-portfolio_category, li.sf-field-taxonomy-portfolio_tag {
        display: inline-block !important;
        margin-left: 10px;
        margin-right: 10px;
    }

    The close bracket is also wrong on the last selector that you showed. It should be this:

    .searchandfilter h4 {
    color: #ff6300 !important;
    }
    Trevor in reply to:
    No posts displayed & background processes disabled
    #41377

    Hi

    If you can reply to this message here in the forum (not by email as that doesn’t work) and check the Set as private reply checkbox you can send me the login details. The user you send me must be an admin for me to see Search & Filter Pro forms, and if it is a multisite install, it would need to be a super admin. How many posts do you have?

    Trevor in reply to:
    check tree
    #41376

    It is an idea we could investigate, but it is not possible in the current version.

    Trevor in reply to:
    How to make the search results display better
    #41375

    Hi

    Search & Filter Pro seems to be working correctly and takes you to the results page and displays the correct post(s). What is displayed is determined by your theme. WordPress allows theme writers to select and control various elements of each post that is displayed by ‘the loop’, such as featured image, title, content, excerpt, tags, author, post date, categories. If the theme does not allow you enough control, then you either have to engage in hand coding or use a plugin that might work.

    Theme frameworks on the other hand tend to give you a greater degree of control over this, but often also require you do more styling and design (less out of the box look and feel and more make it look how you want).

    Trevor in reply to:
    Ultimatum / Search Results Page / Lightbulb Moment
    #41374

    Whilst I am not perfectly clear on what you want, I think I understand and I am confident what you want can be done, but planning what will need to be done is important. Some basic questions to start with?

    Are these normal WordPress ‘posts’ or a ‘Custom Post Type’? In a normal WordPress blog, WordPress has the Posts Multi page (so-called archives) as the site’s front page. Is this how you have yours set up or plan to have it set up?

    Do you want to use the posts (or CPT) archives page as the detailed search page (which is how I often do it), or do you want a separate page for this, with a different layout?

    From what you have articulated, special layouts will not be needed for every category, no.

    Trevor in reply to:
    Custom post type title, default sort text etc.
    #41355

    Hi

    From the search_filter_post_meta_settings.png image I can see that the Meta Key is wrong. The one you show has an underscore before it as _product_manufacturer. Look further down the select list for one called product_manufacturer.

    Trevor in reply to:
    Custom post type title, default sort text etc.
    #41353
    This reply has been marked as private.
    Trevor in reply to:
    Custom post type title, default sort text etc.
    #41351

    1. With regard to translations, Ross would need to comment, but there are these pages in the documentation:

    http://www.designsandcode.com/documentation/search-filter-pro/3rd-party/polylang/
    http://www.designsandcode.com/documentation/search-filter-pro/3rd-party/wpml/

    I can also see a .pot file in the plugin’s languages folder, which may mean some strings are translatable. I have added this to our planning list for discussion.

    2. I have noticed for ACF fields that the field appears twice in the list, the real one is usually further down the list. I may need to see the settings you have made to make sure it is set up correctly.

    3. Not at this time. There is a separate forum to post ideas for future development:

    https://support.searchandfilter.com/forums/forum/search-filter-pro/feature-requests/

    Trevor in reply to:
    Issues displaying search form horizontally in Avada
    #41340

    Sdaly, the Avada samples do one thing that I cannot easily do, which is to add style to the select box dropdown arrow/button. This is controlled by the user’s OS/Browser. What Avada does is to place a div element after the select box and then list this back up and over the arrow that is underneath, to ‘disguise’ it. This I cannot do, as it requires code in the plugin to do this.
    So, as best as time permits, add this to the CSS I already gave you:

    a.chosen-single div {
      padding-top: 7px;
    }
    .chosen-search input {
      border: 1px solid #dadada !important;
      color: #aaa9a9 !important;
    }
    .chosen-container .chosen-results li.active-result {
      display: list-item !important;
      color: #aaa9a9 !important;
    }
    .chosen-container .chosen-results li.active-result.highlighted {
      color: #fff !important;
      background: #39f !important;
    }
    .searchandfilter select.sf-input-select, a.chosen-single {
      height: 38px !important;
      background: #fff !important;
      -webkit-appearance: none;
      text-overflow: '';
      border: 1px solid #dadada !important;
      cursor: pointer;
      outline: none;
      padding: 6px 15px !important;
      text-indent: 0.01px;
      border-radius: 0 !important;
      -webkit-border-radius: 0 !important;
      -moz-border-radius: 0 !important;
      -o-border-radius: 0 !important;
      color: #aaa9a9 !important;
    }
    form.searchandfilter > ul {
      padding-left: 0;
    }
    form.searchandfilter > ul > li {
      margin: 0 8px;
    }
    .sf-input-select {
      font-size: 13px;
    }

    Let me know how this looks (not so good with the dropdowns).

Viewing 10 posts - 31,821 through 31,830 (of 32,056 total)