Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #203306

    I have two issues with my Transactions page http://www.cambridgeespana.com/transactions/

    1) All of a sudden it’s only displaying ‘All’ in the filtering menu when it should be showing 3 others
    2) How do I sort the images being displayed by date?

    Many thanks
    Rupert

    #203308

    On a side note your “home” menu button goes nowhere the link is incorrect.

    #203314

    I was aware I want to link it to http://www.cambridgeespana.com but when I try to edit it it keeps defaulting back to http://www.cambridgeespana.com/home which doesn’t exist. What am I doing wrong?

    #203315

    You need to go into admin panel> apperance> menus

    Check the “Home” link is set to go to the correct location/page.

    If you don’t have amenu set up using this i’d advise on doing so as its easiest way to maintain and can have the option of megamenu.

    #203317

    Sorted many thanks.

    Please can you respond to my original request. Plus I also have #203109 waiting for a response as well.

    Many thanks

    #203320

    I’m assuming you have updated the theme to 2.4.4?

    As there was an issue with masonary & ajax portfolio issues but has been resolved in the newer version.

    Regarding sorting by date i’m sure its set automatically by the portflio entry “entry number”.

    As far as i can tell.

    #203326

    I’ve updated to 2.4.4 which has resolved that issue thanks.

    When you say ‘entry number’ what do you mean? I can’t see any ‘entry number’. I’ve set the dates so was hoping it would automatically sort on them.

    #203346

    …they seem to be in the same order they appear in the portfolio admin panel but I can’t work out how to change the order. Any ideas?

    #203490

    Hi!

    You can change the order of the portfolio items using this on functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Cheers!
    Ismael

    #203530

    Many thanks Ismael. I’m afraid this is double dutch to me and I’m really wary of getting it wrong!

    Is it really not possible to be able to change the order of the portfolio entries in the admin panel as this seems to determine the order they appear?

    I’m considering using a dynamic header at the top of each page is it possible to have the breadcrumbs added via a text panel and if so what code do I use?

    Cheers
    Rupert

    #203548

    Hi!

    As of now, you can only use the code above to change the order of the portfolio items. You can’t add the breadcrumbs using the Text Block element if that is what you mean.

    Cheers!
    Ismael

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Portfolio viewing issues’ is closed to new replies.