2 questions : delete posted by / view multiple overview

Viewing 7 posts - 1 through 7 (of 7 total)
  • #20592
    Ludovic
    Participant

    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
    question_minimatica sur Imagesia

    2/ I would like to get rows of 5 overview, how to do ?

    Thank you for your help

    #20593
    Ludovic
    Participant

    Hi
    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 ?

    #20607
    sneeux
    Participant

    you 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…

    #20610
    Ludovic
    Participant

    Thank you !
    How I have to disable the sidebar in my articles ?
    I delete codes in sidebar.php ?

    #20611
    sneeux
    Participant

    delete… 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;
    }

    #20612
    sneeux
    Participant

    wait… 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

    #20613
    Ludovic
    Participant

    Thanks you very much !
    Your solution worked

    I changed style.css #content = 1200px
    and functions.php conter% 3 with 4
    and I have 4 columns

    πŸ˜€

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

You must be logged in to reply to this topic.