Originally Posted by
votepartners
@ emilianoaguirre
Very nice mod. Is it your first
WP job? - Congratulation!!!
Only one small sugestion - use less contrast (primary) colors. Unless you target your site for young people. Young people like contrasting colors, the elders not
Thanks you. Unfortunately I can not change the design, I am not the designer. But I appreciate the suggestion.
About the problem, I found a how to fix it :
On "search.php" after "<div class="content_left">" and before "<?php if ( have_posts() ) : ?>" must be the following code:
Code:
<?php if ($_GET['search-class']) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts(array('caller_get_posts' => 1, 'paged'=>$paged));
} ?>
change it to:
Code:
<?php if ($_GET['search-class']) {
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts(array('caller_get_posts' => 1, 'paged'=>$paged). '&featured=DESC');
} ?>
Thank you very much for the plugin. Greetings from Argentina.