Tino1408
Forum Replies Created
-
Try to deactivate all the plugins you think that will cause this error to happen and one by one check if the feed shows or not shows.
Forum: Fixing WordPress
In reply to: How to add/change favicon?@heeran it is true you could do this and it should show. But for some theme i have seen this isn’t the case. So its better to do it that way.
Forum: Fixing WordPress
In reply to: How to get text to appear to the right of thumbnail@wandersquatch its not actually at the end its more of the start of the Div then the end of the Div.
But if you prefer go with @andrew Nevins this way when your theme gets updated you wont go back and edit it.
Hey pafell looks like to me this might be an easy fix.
Delete the blank space in your xml
which is in line 1See if that fixes the issue.
Forum: Fixing WordPress
In reply to: How to add/change favicon?Hello thedessertprince
To add your favicon drop it in the root of your public_html.
Once you have done doing that go back to your WordPress backend.
Find Appearance located on the left side then fine editor click on that and locate Header on the right side.
Look for something similar to this inside header:
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>and below that add this
<link rel="Shortcut Icon" href="<?php echo bloginfo('template_url'); ?>/favicon.ico" type="image/x-icon" />Hope my instructions where easy for you to follow π .
Forum: Fixing WordPress
In reply to: page title to image.@daggit_brown sorry but can you be more specific.
Like do you want the left featured image you have on your home page for the text to overlap the image? was that what you where asking?
Forum: Fixing WordPress
In reply to: question about twenty twelveto exclude pages:
<?php wp_list_pages(‘title_li=my pages&exclude=##’); ?>where ## is the ID of the page you don’t want shown in the list
and my pages would be whatever you want the heading to be
Source: [link moderated]
Forum: Fixing WordPress
In reply to: My Site Not Opening (Users Complaints)@heeran I see no issues with your DNS so everybody should be able to see your site.
Forum: Fixing WordPress
In reply to: How to get text to appear to the right of thumbnailFind this in your template:
<div class="clear"></div> <div class="entry">To this: Remove this <div class="clear"></div> and replace it with this <br /> So it should look like this <br /> <div class="entry">Hope this helps you. π
Forum: Fixing WordPress
In reply to: Having Issues….Probably nothing for seasoned WordPress users…Hey Counseling,
Use ftp and undo that specific file you edit it. Then it should return back to normal.
Forum: Fixing WordPress
In reply to: How To Display Random Featured Images?Np at all @muralikumar2005 glad to help out π
Forum: Fixing WordPress
In reply to: How To Display Random Featured Images?This might help.
<li><h2>Random Post</h2> <ul> <?php $posts = get_posts('orderby=rand&numberposts=5'); foreach($posts as $post) { ?> <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a> </li> <?php } ?> </ul> </li>Source: http://www.wpbeginner.com/wp-tutorials/how-to-display-random-posts-in-wordpress/