Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • Janet
    Participant

    I found some help online which solved my problem:

    I discovered that the file I needed to alter was:

    Content-single.php

    The advice I got:
    Have a look at standard.php in includes/post-formats/ and you should find something like <?php the_post_thumbnail(‘thumbnail’); }?> which you can remove.

    This was the code I found which seemed right to me:
    <?php
    if (has_post_thumbnail() ){
    echo ‘<div class=”post-thumb”>’;
    the_post_thumbnail();
    echo ‘</div><br />’;
    }
    ?>

    This is the snippet I replaced the removed text with:
    <?php
    if(!is_single()){
    if ( has_post_thumbnail()) { the_post_thumbnail(‘thumbnail’);}
    }
    ?>

    This solution worked perfectly!

    Is there anything in this code that needs to be altered or changed for the integrity of this theme?

    Janet
    Participant

    Kchn, I would just KISS YOU! A perfect solution!! Thank you so much! πŸ™‚

    I will give that a try! πŸ™‚

    in reply to: Photolite Theme: 2 questions #5285
    Janet
    Participant

    Thank you for explaining where to find the transparency change, it’s a very nice update! πŸ™‚

    You wrote:
    “For typography you can also change it by go to Appearance >> Theme Options >> Basic Settings.”

    However, that is not what I am asking:
    How do I change the space above H-tagged text?

    The answer will be a style sheet tweak.

    Thank you

    • This reply was modified 7 years, 8 months ago by Janet.
    in reply to: Issue with Photolite Pro #4509
    Janet
    Participant

    Ben, the same problem happened to me!

    The zip you downloaded has ANOTHER zip inside it. So extract the downloaded file and then upload the zip inside the extracted folder. πŸ™‚

    in reply to: Photolite Gallery #4502
    Janet
    Participant

    Are you saying that for a single gallery with, say 50 pictures, I would actually have to upload one picture at a time? Seriously?

    Isn’t a “featured image” the picture associated with the gallery and not the actual pictures in the gallery?

    Are you saying that every picture in your galley is a POST? So for a gallery with 50 images, there will be 50 posts? REALLY?

    I must be misunderstanding you. Please explain:

    What would I do to create a gallery with 50 pictures?

    in reply to: Question with Photolite Theme :) #4481
    Janet
    Participant

    I figured out how to get the recent post information from showing up by opening the CSS for the footer and removing this chunk:

    I cut this chunk out of the code:

    <?php if(!dynamic_sidebar(‘sidebar-7’)) : ?>
    <div class=”footer-col”><h2>Recent Posts</h2>
    <?php $foot_query = new WP_Query(‘post_type=post&showposts=2’); ?>
    <?php while($foot_query->have_posts() ) : $foot_query->the_post(); ?>
    <div class=”foot-post”>
    <?php if( has_post_thumbnail() ) { ?>
    <div class=”foot-post-thumb”>“><?php the_post_thumbnail(); ?>
    </div><!– foot-post-thumb –>
    <?php } ?>
    <div class=”foot-post-content”>“><?php the_title(); ?>
    <?php echo content(10); ?>
    </div><!– foot-post-content –><div class=”clear”></div>
    </div><!– foot-post –>
    <?php endwhile; ?>
    </div><!– footer-col –>
    <?php endif; ?>

    in reply to: Issue with Photolite Pro #4461
    Janet
    Participant

    Would you please delete this thread? I can’t seem to be able to do it on my own. πŸ™‚

    in reply to: Issue with Photolite Pro #4458
    Janet
    Participant

    It looks like the problem was the header slider…it needed to be hidden. When I did that, it worked as it should. Yay! πŸ˜€ I can now get back to work! πŸ™‚

    in reply to: Issue with Photolite Pro #4456
    Janet
    Participant

    Hi there!

    Thank you very much for your reply!

    Here you go:

    http://supermoto.photo/

    I really appreciate your help–please don’t hesitate to point me to pages I should read so I can solve problems like this by myself in the future. πŸ™‚

    Janet

    P.S. I actually sent a reply via email and didn’t see that it bounced. That’s why I haven’t responded until now. You may want to make a bold note for email notifications to let people know that they can’t actually reply and must go to the forum to reply to your comment. It *DOES* say “donotreply* in the email, but it’s not obvious. Just a thought! πŸ™‚

    in reply to: Relief Theme – links from main page #4455
    Janet
    Participant

    By the way, the email was sent to me, not to elena. Just wanted to let you know! πŸ™‚

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