Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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! :)

    #931635

    Hey salesmusat,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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 ).
    5. Click ” Submit “.
    6. 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,
    Basilis

    #931954

    Hi!
    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?

    #932793

    Hi,

    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,
    Ismael

    #932840

    If 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

    #933325

    Hi,

    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,
    Ismael

    #934313

    Yes that worked! Thanks!

    #934528

    Hi,

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Portfolio archive page sorting’ is closed to new replies.