Support Forums

The forums are closed and will be removed when we launch our new site.

Looking for support? You can access the support system via your account.

Forums Forums Search Search Results for 'data-sf-form-id .searchandfilter'

Viewing 10 results - 31 through 40 (of 162 total)
  • Author
    Search Results
  • #262715

    In reply to: Sort buttons


    Trevor
    Moderator

    You have this CSS that is causing a problem (can you remove it?):

    @media (min-width: 991px) {
      .ct-shortcode .searchandfilter > ul > li {
        width: 16.66666667%;
      }
    }
    @media (min-width: 768px) {
      .ct-shortcode .searchandfilter > ul > li {
        width: 33.33333333%;
      }
    }

    But, my attempt:

    .searchandfilter[data-sf-form-id="73587"] .sf-field-sort_order > ul > li.sf-option-active label {
      background-color: #7DA85B;
      color: #fff;
    }
    .searchandfilter[data-sf-form-id="73587"] .sf-field-sort_order input {
      display: none;
    }
    .searchandfilter[data-sf-form-id="73587"] .sf-field-sort_order label:hover {
      background-color: #7DA85B;
      color: #fff;
      cursor: pointer;
    }
    .searchandfilter[data-sf-form-id="73587"] .sf-field-sort_order label {
      text-align: center;
      line-height: 1.4em;
      border: 1px solid #666;
      border-radius: 3px;
      padding: 3px 5px !important;
      text-indent: 0;
    }
    .searchandfilter[data-sf-form-id="73587"] .sf-field-sort_order > ul > li {
      display: inline-block;
      margin-left: 5px;
      margin-bottom: 10px;
    }

    A start at least, change as you need.

    #262166

    In reply to: Don’t need plugin


    Trevor
    Moderator

    I would use custom CSS like this:

    .searchandfilter[data-sf-form-id="5532"] li[data-sf-field-input-type="select"] select {
        min-height: 52px;
    }
    .searchandfilter[data-sf-form-id="5532"] > ul > li,
    .searchandfilter[data-sf-form-id="5532"] li[data-sf-field-input-type="select"] select,
    .searchandfilter[data-sf-form-id="5532"] li.sf-field-search input {
        min-width: 270px;
    }
    .searchandfilter[data-sf-form-id="5532"] > ul > li {
        padding: 0 5px 0 0;
    }
    .searchandfilter[data-sf-form-id="5532"] > ul > li:last-child {
        padding: 0;
    }
    .searchandfilter[data-sf-form-id="5532"] > ul {
        display: table;
        margin: 0 auto 10px;
    }
    #262163

    In reply to: Integrate


    Trevor
    Moderator

    There is no way to add a scroll to a select field other than to have lots of entries (as our demo does). What you could do is to make it a combobox in the field settings. This would the apply the Select2 jQuery script to it, and style it much better.

    At the moment you are hiding if empty. But you want to show them, see here:

    https://www.screencast.com/t/jUc9Mhe5WqYf

    Some custom CSS is needed for the date to be in 2 columns:

    .searchandfilter[data-sf-form-id="14110"] li.sf-field-post_date input {
        width: 100px;
        min-width: auto;
        display: inline-block;
    }
    .searchandfilter[data-sf-form-id="14110"] li.sf-field-post_date li {
        display: inline-block;
    }
    .searchandfilter[data-sf-form-id="14110"] li.sf-field-post_date li:first-child {
        margin-right: 20px;
    }
    #262076

    In reply to: Search Form on Top


    Trevor
    Moderator

    For 1, you would have had to specify a template file to use.

    You would need to be using a child theme. You copy that file to the child theme folder, and then edit it to add the PHP do_shortcode code as shown here:

    <?php echo do_shortcode('[searchandfilter id="710"]'); ?>

    You may also need to make the form horizontal, like this (change the px value to match your theme’s mobile/responsive breakpoint):

    @media (min-width: 992px) {
      .searchandfilter[data-sf-form-id="710"] {
        display: inline-block;
        vertical-align: top;
        padding: 0 20px;
      }
    }

    These are for guidance only. We do not include customising your theme and templates within the scope of support.

    2. You wish to use the Shortcode method, but will need to create you own template. You still need to use our results.php template file, but customize it according to these instructions:

    https://searchandfilter.com/documentation/search-results/using-a-shortcode/#customising-the-results

    This is only a simple exemplar template, which uses the WordPress Codex structure and PHP.

    So, what to do? You can replace almost anything you want in the file, but keep the if … else … endif and the while …. endwhile and transplant your own HTML, PHP and class names to replace our code. Do this slowly and test regularly, keeping backups at each stage.

    The results.php template code will run inside your theme’s standard page template, in the content part, called by our results shortcode.

    Again, we do not offer a coding service to do this, but it is fairly standard WordPress code, so you can often copy code from elsewhere in your theme.

    #262043

    Trevor
    Moderator

    It is because you have this:

    .home .searchandfilter[data-sf-form-id="1134"] > ul > li.sf-field-search label {
        display: block;
        padding-right: 200px;
        padding-left: 200px;
    }

    The padding take up all the screen on mobile, pretty much.

    You need to add some CSS media rules around the tat CSS, like this:

    @media (min-width: 991px) {
        .home .searchandfilter[data-sf-form-id="1134"] > ul > li.sf-field-search label {
            padding-right: 200px;
            padding-left: 200px;
        }
    }
    .home .searchandfilter[data-sf-form-id="1134"] > ul > li.sf-field-search label {
        display: block;
    }

    It may take some fiddling with to get it right, but I will leave that to you, as this isn’t really within the scope of our support.

    #262031

    Trevor
    Moderator
    This reply has been marked as private.
    #261626

    Trevor
    Moderator

    I think you would need something like this:

    .searchandfilter[data-sf-form-id="4190"] li[data-sf-field-input-type="checkbox"] ul li,
    .searchandfilter[data-sf-form-id="4190"] li[data-sf-field-input-type="radio"] ul li {
        display: inline-block;
        margin-right: 20px;
    }
    #261599

    Trevor
    Moderator

    Are you wanting to ONLY ever have this form search inside that ‘Real Weddings’ category?

    BTW, I think you might want to use this custom CSS:

    .searchandfilter[data-sf-form-id="63885"] li[data-sf-field-input-type="checkbox"] ul li {
        display: inline-block;
        margin-right: 20px;
    }
    #261436

    In reply to: mobile css


    Trevor
    Moderator

    This:

    .searchandfilter[data-sf-form-id="6646"] ul {
      padding-left: 0;
    }

    Would become this:

    .searchandfilter[data-sf-form-id="6646"] ul,
    .searchandfilter[data-sf-form-id="7085"] ul {
      padding-left: 0;
    }
    #261432

    In reply to: mobile css


    Libby Gorman
    Participant

    I have already tried a few things with 7085 and none of the CSS worked so I removed it.

    Can I leave the current CSS and add “7085” next to where it says “6646” or should I create a whole new line of CSS for the 7085 form?

    For example, here’s a piece of CSS – Can I add 7085 next to the 6446 or make a whole new snippet for 7085?

    .searchandfilter[data-sf-form-id="6646"] ul {
      padding-left: 0;
    }

    I’ve tried different things and haven’t been able to get the columns to fit on mobile for my archive pages, just wondering the best practice for applying it to two different forms, thanks!

Viewing 10 results - 31 through 40 (of 162 total)