cannot see all my picture uploaded in an article

Viewing 8 posts - 1 through 8 (of 8 total)
  • #4906
    rodolphe
    Participant

    Hello, I use wp 3.1.4 with minimatica, you can see a draft of my website here : rodolphe.troiano.free.fr

    I have an issue regarding the picture galerie. I’m using the “Gallery” as the post’s format to get a slider. I uploaded 10 picture approx like you can see here : http://rodolphe.troiano.free.fr/pb1.jpg

    when i go in my article (nouveau ne for this exemple) i can only see 4 picture instead all i uploaded for this article.

    What i have to do to see all of the picture uploaded please?

    second question, like it is explained here http://photohow2.com/2011/10/minimatica-user-guide-how-to-set-up-a-wordpress-photography-portfolio/2/ , i changed the theme function.php to get 4 columns instead 3 but nothing changed, do you have any idea to solve those 2 issues please?

    Thanks for your help!!

    #4920
    rodolphe
    Participant

    no idea?

    I manage the 4 column issue with some change in the CSS file, but i still need help for the gallery viewing please… 🙂

    #4986
    Daniel Tara
    Keymaster

    This is a bug in the theme that will be solved in the next version.

    #4993
    rodolphe
    Participant

    Thanks for this answer, but how other people managed to get all of their picture in their website? because i already saw website with big portfolio.

    Thanks for your help

    #5012
    Daniel Tara
    Keymaster

    If you’re not afraid to mess with code, basically what you need to do is open functions.php and in the rewrite the function minimatica_paged_posts as so:

    function minimatica_paged_posts( $query ) {
    	global $wp_the_query;
    	if( $query == $wp_the_query )
    		$query->set( 'posts_per_page', '4' );
    }
    endif;
    #5013
    Daniel Tara
    Keymaster

    Them open content-gallery.php and remove this line:

    #5022
    rodolphe
    Participant

    Yeesss, thanks a lot, just with this it works :

    “If you’re not afraid to mess with code, basically what you need to do is open functions.php and in the rewrite the function minimatica_paged_posts as so:

    ?123456 function minimatica_paged_posts( $query ) { global $wp_the_query; if( $query == $wp_the_query ) $query->set( ‘posts_per_page’, ‘4’ ); } endif;

    What is the change you speaking about in the content-gallery? because without this my portfolio work well 🙂

    http://rodolphe.troiano.free.fr/?p=53

    Thanks for your help.

    #5028
    Daniel Tara
    Keymaster

    I thought you were using a gallery shortcode. It’s fine this way.

Viewing 8 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic.