Forum Replies Created
-
AuthorPosts
-
August 30, 2016 at 2:02 am in reply to: Photolite Theme: How do I remove the Featured Image from my posts? #5332JanetParticipant
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?
August 25, 2016 at 1:59 am in reply to: Photolite Theme: Home Page: Question about the 4 Boxes with text #5287JanetParticipantKchn, I would just KISS YOU! A perfect solution!! Thank you so much! π
I will give that a try! π
JanetParticipantThank 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 8 years, 2 months ago by Janet.
JanetParticipantBen, 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. π
JanetParticipantAre 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?
JanetParticipantI 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; ?>JanetParticipantWould you please delete this thread? I can’t seem to be able to do it on my own. π
JanetParticipantIt 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! π
JanetParticipantHi there!
Thank you very much for your reply!
Here you go:
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! π
JanetParticipantBy the way, the email was sent to me, not to elena. Just wanted to let you know! π
-
AuthorPosts