Page 2 – RT-Themes | Support Center
-
Search Results
-
Hi.
Like some of RT-18 users I also got portfolio filtering issue.
Have changed code on line 1207 in rt-shortcodes.php to:
$sortNavigation .= '<li><a href="#" data-filter=".filter-'.$sortCategories- rel="nofollow">term_taxonomy_id.'">'.$sortCategories->name.'</a></li>';
but I’m getting:Parse error: syntax error, unexpected ‘=’ in /wp-content/themes/rttheme18/rt-framework/functions/rt_shortcodes.php on line 1207
Just a note about the post: http://support-rt.com/forums/topic/protfolio-filter-not-showing-posts/
I had the same problem (v1.7.1), however after your fix my page didn’t load any more at all..
Your code:
$sortNavigation .= '<li><a href="#" data-filter=".filter-'.$sortCategories- rel="nofollow">term_taxonomy_id.'">'.$sortCategories->name.'</a></li>';When i change it to this it works for me:
$sortNavigation .= '<li><a href="#" data-filter=".filter-'.$sortCategories->term_taxonomy_id.'">'.$sortCategories->name.'</a></li>';kind regards,