Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Creating widgets area for homepageManage Widget with functions.php is a very helpful trick !
Forum: Fixing WordPress
In reply to: How do I get rid of Meta, Archives etc on the right hand side?On your dashboard, go to “widgets” page.
And see if you can edit it/them.If not, you have to declare new sidebars into your functions.php file included in your theme folder.
Regards
Polldaddy support reply this behavior is normal.
You can’t display the same poll more than one time on the same page.No plugin for that…
You have to check errors and fix them one by one, by checking if the fix not causing other issues.
Hi,
I think it depends the way your post/page has been created.
This code goes looking the 1st image of the post/page, then it displays it as shared link into facebook.So if you 1st image in your post is not the post thumbnail, it doesn’t display the proper image !
Check your posts/pages and also CSS styling of posts/pages
Up please…
Does anyone have the same problem with Polldaddy Polls & Ratings ?Forum: Fixing WordPress
In reply to: How to remove date and posted by and make content cover pageOK !!!
I never use Twenty Ten theme !
Absolutely, index.php doesn’t contains the body content, it contains only template calls !
start with the first point : Remove “posted by…” METAFrom what I saw in this theme, you have to edit these 2 loop files :
- loop.php
- loop-single.php
But do not edit the files loop-page.php and loop-attachment.php
In each loop file, you have to remove the lines for “Posted on” :
<div class="entry-meta"> <?php twentyten_posted_on(); ?> </div><!-- .entry-meta -->I advise you to hide them instead of remove them !
You can hide them by adding <!– thewyse has disabled this line/field at start and –> at the end, like that :<!-- thewyse has disabled this line/field <div class="entry-meta"> <?php twentyten_posted_on(); ?> </div><!-- .entry-meta --> -->Do the same for the “Posted by” (Author info)
[code moderated - please follow the forum rules for posting code, and use the pastebin]
Then, update these 2 loop files in your server, and refresh the home page !
Regards
Forum: Fixing WordPress
In reply to: How to remove date and posted by and make content cover pageIf I understand it, you want to remove the date/owner of each post ???
Wordress works with themes.
First you need to know which theme you’re using :
Go to “Appearance” and “Themes”Then, locate your theme’s folder in your FTP :
It should be something like that : http://your-server/wp-content/themes/{the-theme-folder}/Then, download and edit the index.php (root of the theme folder) file.
You should see something like that :
<span class="date">Posté le <?php the_time('j F Y') ?></span>
This is the type of Meta-data you want to remove.
It’s the same for “posted by” Meta-data.Then, save the index.php file and upload it to your server, and refresh the home page.
Forum: Fixing WordPress
In reply to: Adding an image to a Title in CoralineYour server is not reachable (from France) !
Forum: Fixing WordPress
In reply to: Adding new Sliders to templateWhat’s the theme name ?
Forum: Fixing WordPress
In reply to: Background image not visible after upgradeHi,
I saw this issue in a topic :
http://www.vfxdude.com/forum/topic/anyone-test-out-wordpress-33-with-bigfeature1. You can upload your background image as a new media (http://your-server/wp-admin/media-new.php)
2. Then get the main URL of the image.
3. Put this into your style.css (in the theme folder) like that for example :
body { background: #292929 url(http://your-server/wp-content/upload/2011/12/20/bg.jpg) repeat; }Regards
Forum: Fixing WordPress
In reply to: Images not uploading and unable to edit mediaHi,
Check folder permission (with Filezilla for example)
You should see “755” which means “write” permission for the “Owner” user.Or check if you server has enough space !
I don’t know.Forum: Fixing WordPress
In reply to: Unable to view any post or pages in my blogIf permalink are good…
Are you sure nothing has changed ?
Try to disable all your extension (at once), then try to load a post.Do you have changed folders order in your FTP server ?
Forum: Plugins
In reply to: Audio Player No Longer Visible@david
Give me you blog URL.Forum: Fixing WordPress
In reply to: Icons – how to display aligned?Yes, in a stylesheet.
But as I can see, this is difficult to do this, because the stylesheet you need to change is in your plugin that display this Feedburner icon !So you need to change the plugin itself.
Unless you can add CSS code in the setting panel of this plugin. It’s possible, try to find that kind of section in the setting panel.
I’m sure there is a field where you can add the CSS code “float: left;”Regards