-
AuthorPosts
-
March 21, 2018 at 2:36 pm #930606
Hi! When i make a page with portfolio grid element in layout editor I can get the sorting (filtering) working without a problem. It shows all portfolio categories and filters out the products that are not in that category when clicked.
I am trying to add the same sorting in portfolio archive page but it doesn’t seem to work. I edit the taxonomy-portfolio_entries.php and there is the value ‘sort’ => ‘yes’, but it doesnt seem to do anything. Is that the right thing to edit or is it impossible to add that kind of filtering in the archive page?
Thanks for awesome theme btw! :)March 22, 2018 at 9:03 pm #931635Hey salesmusat,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( do be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.Best regards,
BasilisMarch 23, 2018 at 12:50 pm #931954Hi!
I’m currently working in localhost so no can do :/Should it be there by default or is it something that i have to add there?
March 26, 2018 at 6:00 am #932793Hi,
I am trying to add the same sorting in portfolio archive page
Why do you have to sort the items in the archive page when all the items that were included there belong to a particular category? Are you trying to create a different sorting function?
Best regards,
IsmaelMarch 26, 2018 at 7:59 am #932840If I am in the portfolio arcive by tag, it would be nice to be able to sort all portfolio items by category in that archive page
March 27, 2018 at 4:39 am #933325Hi,
Thank you for the update. Please edit the tag.php file, look for this code around line 112.
$grid = new avia_post_grid(array( 'linking' => '', 'columns' => '3', 'contents' => 'title', 'sort' => 'no', 'paginate' => 'yes', 'set_breadcrumb' => false, )); $grid->use_global_query(); echo $grid->html();
Replace it with:
$grid = new avia_post_grid(array( 'linking' => '', 'columns' => '3', 'contents' => 'title', 'sort' => 'yes', 'paginate' => 'yes', 'set_breadcrumb' => false, )); $grid->use_global_query(); echo '<div class="main_color avia-fullwidth-portfolio avia_sortable_active">'; echo $grid->html(); echo '</div>';
Best regards,
IsmaelMarch 28, 2018 at 2:27 pm #934313Yes that worked! Thanks!
March 28, 2018 at 9:42 pm #934528Hi,
Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
To know more about enfold features please check – http://kriesi.at/documentation/enfold/
Thank you for using Enfold :)Best regards,
Basilis -
AuthorPosts
- The topic ‘Portfolio archive page sorting’ is closed to new replies.