-
LudovicParticipant
Hi,
I’m french I d’ont speack english very well πThank you for this template Minimatica, it’s very good looking and Professional π
I Have 2 questions :
1/ How delete informations “posted by admin with time…”
exemple in attachement
2/ I would like to get rows of 5 overview, how to do ?
Thank you for your help
LudovicParticipantHi
I found the solution to remove the information about my first question.
You must delete code<ul> <li><?php _e( 'Posted by', 'minimatica' ); ?> <?php the_author_posts_link(); ?></li> <li><?php _e( 'on', 'minimatica' ); ?> <time datetime="<?php the_time( 'Y-m-d' ); ?>"><?php the_time( get_option( 'date_format' ) ); ?></time></li> <li><?php _e( 'Filed under', 'minimatica' ); ?> <?php the_category( ', ' ); ?></li> </ul> in content-gallery.php / content-image.php / content.php
Could you help me to increase the number of previews in rows ?
sneeuxParticipantyou can’t have more than 3 rows without removing the sidebar.
because there is no space for more than 3.
5 simply dont fit…if you remove the sidebar and set the width of #content to 940px then you will get 5 rows automatically.
or… you make the thumbnails smaller…
LudovicParticipantThank you !
How I have to disable the sidebar in my articles ?
I delete codes in sidebar.php ?sneeuxParticipantdelete… or my preferred way, comment it out
like this <? /* php get_sidebar(); */ ?>in
loop-single.php
loop-page.php(and perhaps others…)
then in style.css change 700px with 920px (i made a mistake in the previous post, it should be 920px… )
in
#content {
float:left;
width:700px;
margin:0;
margin-right:20px;
}sneeuxParticipantwait… i can’t recognize, are you using the minimatica gallery view or those from wordpress itself?
in second case everything i wrote in the post before is right.
in the first case you have to change #container width to 1200 in style.css then in function.php straight above the line:
// If 3 images have been shown, end the image row and open a new one
there is a line :
<?php if( !( $counter % 3 ) && ( $attachment != end( $attachments ) ) ) :
you have to change 3 with 5 there
You must be logged in to reply to this topic.