Forums Forums Search & Filter Pro Categories are all empty

Viewing 7 posts - 11 through 17 (of 17 total)
  • Trevor
    #229485

    Ah, I see that your theme has its own templates, and does not use the EDD shortcodes.

    See here (this file):

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

    Can you add that line?

    I have changed the form to Custom and changed the Ajax Container (as a temporary value for now).

    If this works, this edited file needs to be in a child theme (like Olam child), and not Olam itself, but you are using the parent theme at this time.

    Anonymous
    #229487

    Cool It’s working now 😉

    Trevor
    #229491

    But, it is really important to use a child theme and have the modified file in that folder, otherwise changes will be lost when you update the theme.

    The Ajax Container is not ideal, but in that same file, further up the code, you can see where it makes the div with those class names. You could add a sensible class name (like .search-results) and use that as the Ajax Container, as the current value is a little too generic.

    Anonymous
    #229509

    Hi Trevor,
    can you give me a adivse where to put the class name exactly?

    <div class=”row”>
    <?php $downloadColumn=12; ?>
    <?php if ( is_active_sidebar( ‘olam-download-category-sidebar’ )){
    $downloadColumn=9;
    ?>
    <div class=”col-md-3″>
    <div class=”sidebar”>
    <?php dynamic_sidebar( ‘olam-download-category-sidebar’ ); ?>
    </div>
    </div>
    <?php } ?>
    <div class=”col-md-<?php echo esc_attr($downloadColumn); ?> col-right”>

    Thanks
    Matthias

    Trevor
    #229511

    Here:

    <div class="col-md-<?php echo esc_attr($downloadColumn); ?> col-right search-results">

    Anonymous
    #229513

    Thanks Trevor for this great support.
    I think I have more questions in the future, but for now you can close this thread.
    Thanks
    Matthias

    Trevor
    #229529

    Thanks for letting me know. I will close this thread for now.

Viewing 7 posts - 11 through 17 (of 17 total)