-
AuthorPosts
-
January 5, 2015 at 6:26 pm #375220
Hey,
I’ve got a question. I managed to change the theme to show the search results as a grid.
Now, I want a read more button after the title.. How can i do this?
Thank you,
Pieter L.
January 5, 2015 at 10:23 pm #375371Hi pieterpieterpieter!
Paste the code you used here and we’ll modify it.
Cheers!
ElliottJanuary 6, 2015 at 10:10 am #375548Hey 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(); ?>
January 6, 2015 at 9:12 pm #375845Hey!
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,
ElliottJanuary 6, 2015 at 9:38 pm #375860Hey!
It works like a charm! Thanks a lot man!
Top support, love enfold!
Cheers!
-
AuthorPosts
- The topic ‘Search Results grid layout –> Read more’ is closed to new replies.