Dear Elliott, Uniq,
Using the Popular Posts widget, is it possible to disable the display of an icon next to a "popular post" in the footer...? I have no need for an icon there and it takes up too much space.
Cheers, San.
(11 posts)
(3 voices)
Dear Elliott, Uniq,
Using the Popular Posts widget, is it possible to disable the display of an icon next to a "popular post" in the footer...? I have no need for an icon there and it takes up too much space.
Cheers, San.
Hello SanAmsterdam,
Do you mean the popular posts widget or the popular posts that show up inside the post? If your talking about the widget that appears on the sidebar and footer then open up /wp-content/themes/infocus/lib/functions/widgets.php and around line 141 you should see this..
<li>
<a class="alignleft" href="<?php echo $permalink; ?>" title="<?php echo $post_title; ?>">
<span class="small_frame"><img src="<?php echo $meta_image; ?>" width="60" height="60" alt="<?php echo $post_title; ?>"/></span></a>
<a class="thumbnail_title" href="<?php echo $permalink; ?>" rel="bookmark"><?php echo $post_title; ?></a><br/>
<a class="date" href="<?php echo get_month_link($get_year, $get_month); ?>"><?php echo $post_date; ?></a>
<div class="clearboth"></div>
</li>
Go ahead and change it like this..
<li>
<a class="thumbnail_title" href="<?php echo $permalink; ?>" rel="bookmark"><?php echo $post_title; ?></a><br/>
<a class="date" href="<?php echo get_month_link($get_year, $get_month); ?>"><?php echo $post_date; ?></a>
<div class="clearboth"></div>
</li>
Let us know if it works for you SanAmsterdam.
Perfect Elliott, will try this right away.
Thanks so much for your help.
Cheers, San.
Glad it worked for you SanAmsterdam, if you have any other questions then let us know.
Hi Elliot,
How do you remove the image in popular and related posts in posts?
Add this in Dashboard -> your theme -> General Settings -> Custom CSS,
.blog_tabs_content .post_grid_image { display: none !important; }
That doesn't seem to work. Any other ideas?
Send us a link to your page.
Here ya go - as you can see, the blank image is still there.
http://www.videoproductionvancouver.ca/2012/top-5-video-camera-video-gear-top-lists/
Try this,
.additional_posts_module img {
display: none;
}
Awesome. It works. And I'm completely blow away from the amazing support I am receiving. Thank you!
You must log in to post.