Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #191544

    I’m currently using the Ajax portfolio. Which works Okay but my portfolio-preview-title entry-title is clickable and goes to the portfolio detail.
    This is not needed the Ajax portfolio is enough.
    How can i delete this link on my title?

    #191545

    Theme works Cool by the way ;-)

    #191547

    Hey!

    Please refer to Peter’s post here https://kriesi.at/support/topic/portfolio-item-title/#post-189564

    Cheers!
    Yigit

    #192862

    Okay Works great!
    This was indead the ‘fix’ i needed.

    #192873

    On my normal page i’m using the ‘portfolio grid’. This works and gets specific categery items.
    So far SO Good but can i also select which ony is getting loaded?
    Now it seems to be the last 4 but can i specify which i want to show there?

    #193297

    Hey!

    Yes, you can use this code – insert it into the functions.php file at the very bottom:

    
    add_filter('avia_post_grid_query','avia_order_by_random');
    function avia_order_by_random($query)
    {
    	$query['orderby'] = 'title';
    	$query['order'] = 'ASC';
    	return $query;
    }
    

    to change the order. Instead of title you can also insert “date” (date sort order) or “rand” (for a random sort order). You can also replace ASC (ascending order) with DESC (descending order).

    You can also install a plugin like: http://wordpress.org/plugins/post-types-order/ which helps you to apply a custom order to your posts (with drag’n’drop).

    Regards,
    Peter

    #193353

    Hmm, both tested and not what i meant or they.

    Now on my page i can just select the ‘catagory’ and not specify one or more specific items in that category that i want to ‘show’. If my page has a specific subject i would like to select which item i want to show on that page. Now i can only make a ‘new’ category which i want to show. This also works but specified not to category but one level deeper would be perfect!

    #193376

    Hi!

    Sorry but it is not possible yet. You can request it here: https://kriesi.at/support/topic/enfold-feature-requests

    Cheers!
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Ajax portfolio’ is closed to new replies.