efenili
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Widgets SeparatorNot help on this?
Sorry, just wanted a way to make sure people know when one widget ends and another one begins….should I post this in another forum?
My blog is phooblog.com is you want to see what I am talking about
Forum: Everything else WordPress
In reply to: flickr & xmlrpc.php errorI have answered your question here:
http://wordpress.org/support/topic/90366?replies=3#post-518658
Forum: Fixing WordPress
In reply to: API Endpoint troubleI have answered your question here:
http://wordpress.org/support/topic/90366?replies=3#post-518658
Forum: Fixing WordPress
In reply to: Flickr API End PointIt can be confusing but its really simple.
To use Flickr the API # is not the API number you are thinking of. The API IS! The address they are showing you.
API = http://www.YOURBLOG.com/blog/xmlrpc.php
Enter that exact thing filling in your blog name into the field and you should be good to go.
Cheers
Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.Thanks for the advice Otoo42
Here is the code for my index.php from my site.
http://pastebin.com/842726The problem is it is not showing all my posts in full. The only attempt to fix was changing Line 30 from “<?php the_excerpt() ?>” to “<?php the_content() ?>” which successfully showed all my posts but causes the sidebar to go below the posts and the footer to go into the sidebar section.
Any help is appreciated.
Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.Anymore suggestions to get the front page to not cut off my posts and pictures?
Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.Ya I keep backups of everything.
The only change I have made is changing
is changing <?php the_excerpt() ?> to <?php the_content(’Read the rest of this entry »’); ?> in the index file of my theme.I changed it back because I would rather have no pics than the sidebar messed up right now.
I don’t mind the archive view the way it is…that is fine for me now. I am just concerned with the front page.Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.Update:
Ya Otto…I was looking at the wrong file to edit!So, I got the pictures to show up! But now the taskbar/sidebar is all messed:(
Thanks for the quick replies all.
Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.As a side note.
The pictures DO appear in categories and comments pages. Just not on the front page.Forum: Fixing WordPress
In reply to: Pictures in posts gone! No Longer on page.Well, I an see the picture in my latest post now but the others don’t show anything and now at the end are being cut off and […] is being put there with no link to expand.
I read a few threads about this but anything usually points to this answer
—————-
Q: On the archive pages, all HTML seems to have been stripped out of my entries! Also, only part of the entry is shown!
A: That’s because the archives uses a function called the_excerpt. If you want to change it, so that it behaves like the frontpage, go to line 229 in index.php and change from <?php the_excerpt() ?> to <?php the_content(’Read the rest of this entry »’); ?>.
—————-Which I can’t do because mine already says content. So I am stuck:( Clearing cache and cookies doesn’t seem to have helped.