I am using the Avisio theme, every looks ok for it at this point but I have one problem the sort is not showing. I have multiple categories so it looks like it should be ok.
from what I found the actual id for the wrapper element for the sort has visibility hidden.
#js_sort_items{
position:relative;
top:18px;
visibility:hidden;
width:100%;
float: left;
}
and the logic for the show hided on the portfolio template looks like it comes after the element with this ID :
if($portfolioInfo[3] == 'sort')
{
$output = "<div id='js_sort_items'>";
$hide = "hidden";
if (isset($categories[1])){ $hide = ""; }
$output .= "<div class='sort_by_cat $hide '>";
$output .= "<span>".__('Show:','avisio')."</span>";
$output .= "".__('All','avisio')."";
Anyway I tried just commenting out the visibility: hidden in the css:
#js_sort_items{
position:relative;
top:18px;
/*visibility:hidden; */
width:100%;
float: left;
}
This made the sort options display, but the problem was then that the sort didn't seem to work.
Can you offer any further assistance in getting this to work? Thanks.














