Okay
  Public Ticket #3626644
Sort by Date
Open

Comments

  • TTGDesign started the conversation

    Hi,

    Just purchased this plugin "Showoff Two - The Stachethemes Gallery Plugin for WordPress". I can't find Sort By option, to sort by date, name etc. Could you guide me through please?


    Cheers,

    Mike

  •  783
    Zhivko replied

    Hi,

    I will include this option in the admin in the next update.

    Meanwhile you can do this via a hook.

    Instructions:

    Open your theme or child-theme functions.php file and insert following hook:

    // Modify the order of projects on the front page
    add_action('st_showoff_get_front_projects_args', function($args) {
        $args['orderby'] = 'date';
        $args['order']   = 'ASC'; // or DESC
        return $args;
    });

    If you are using a snippets plugin you can include the code as a PHP snippet.


    Stachethemes Developer