Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #375220

    Hey,

    I’ve got a question. I managed to change the theme to show the search results as a grid.

    See: http://85.17.252.204/~h0r34a/?unonce=b3acef8920&uformid=13356&s=uwpsfsearchtrg&taxo%5B0%5D%5Bname%5D=category&taxo%5B0%5D%5Bopt%5D=3&taxo%5B0%5D%5Bterm%5D=haute-cuisine-4&taxo%5B1%5D%5Bname%5D=provinciegemeente&taxo%5B1%5D%5Bopt%5D=3&taxo%5B1%5D%5Bterm%5D=uwpqsftaxoall&skeyword=

    Now, I want a read more button after the title.. How can i do this?

    Thank you,

    Pieter L.

    #375371

    Hi pieterpieterpieter!

    Paste the code you used here and we’ll modify it.

    Cheers!
    Elliott

    #375548

    Hey Elliott,

    First of all, Thanks for your quick response! Appreciate it

    Here is the code i’ve used in search.php

    <?php
    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    $results = avia_which_archive();
    echo avia_title(array(‘title’ => $results ));
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’content template-search <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’));?>>

    <div class=’page-heading-container clearfix’>
    <section class=”search_form_field”>
    <?php
    echo “<h4>”.__(‘Andere zoekopdracht’,’avia_framework’).”</h4>”;
    echo “<p>”.__(‘Vul hier Uw nieuwe zoekopdracht in:’,’avia_framework’).”</p>”;

    get_search_form();
    echo “<span class=’author-extra-border’></span>”;
    ?>
    </section>
    </div>

    <?php
    if(!empty($_GET[‘s’]))
    {
    echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;

    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;

    $atts = array(
    ‘type’ => ‘grid’,
    ‘items’ => get_option(‘posts_per_page’),
    ‘columns’ => 4,
    ‘class’ => ‘avia-builder-el-no-sibling’,
    ‘paginate’ => ‘yes’,
    ‘use_main_query_pagination’ => ‘yes’,
    ‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
    );

    $blog = new avia_post_slider($atts);
    $blog->query_entries();
    echo “<div class=’entry-content’>”.$blog->html().”</div>”;
    }

    ?>

    <!–end content–>
    </main>

    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    #375845

    Hey!

    Open up /enfold/config-templatebuilder/avia-shortcodes/postslider.php and find line 372.

    $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
    

    Add this beneath it.

    $output .= $permalink;
    

    Best regards,
    Elliott

    #375860

    Hey!

    It works like a charm! Thanks a lot man!

    Top support, love enfold!

    Cheers!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Search Results grid layout –> Read more’ is closed to new replies.