-
rodolpheParticipant
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!!
rodolpheParticipantno idea?
I manage the 4 column issue with some change in the CSS file, but i still need help for the gallery viewing please… 🙂
rodolpheParticipantThanks 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
Daniel TaraKeymasterIf 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;
rodolpheParticipantYeesss, 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.
You must be logged in to reply to this topic.