Harry
Forum Replies Created
-
This could be because of a few reasons.
Are you sure your hosting didn’t have trouble with their servers or anything, if you haven’t done anything, it generally as you can imagine doesn’t overwrite itself.
Also, they could have migrated to a new database server or something, and they missed your config in the process or something.
It really could be a number of reasons, but I don’t think it’s a wordpress specific issue. Hope this helps somewhat.
Forum: Fixing WordPress
In reply to: Purchase Date & TimeAre you using an E-Commerce Plugin for your WordPress installation?
What plugin are you using? Where is the server you have your website hosted on located, and where are you currently in relation to it? It could be that it’s merely reporting the timezone of the server you did this purchase on.
Forum: Fixing WordPress
In reply to: My site shows up as a Trendy Site builderYou’ll need to provide some more details. Pass on the URL of your site.
It’s telling you this error is actually here;
/homepages/18/d296768264/htdocs/salvadorfigueroscom/wp-includes/pluggable.php on line 934
What is on line 934 of pluggable.php?
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedI upgraded to 3.2.1.
In /wp-includes/feed-rss.php, this file generates your RSS feed.
You’ll see the loop uses the_excerpt_rss(). So the Full Content setting it would appear will have no bearing on the RSS feed output. This should be made clearer, as I’ve never really delved deeper into what the code does before.
I’m sure there are plugins that change this default functionality, which I’m thinking that sample link you previously passed on might be using, or perhaps they’ve modified the below code to output the content instead.
<?php while (have_posts()) : the_post(); ?> <item> <title><?php the_title_rss() ?></title> <description><![CDATA[<?php the_excerpt_rss() ?>]]></description> <link><?php the_permalink_rss() ?></link> <?php do_action('rss_item'); ?> </item> <?php endwhile; ?>In the above code I changed:
the_excerpt_rss()to:
the_content_rss()A bit of refreshing later, it finally did show the changes. Check this link regarding the_content_rss function, as it warns the function has be deprecated, so in future upgrades if you rely on this it may be removed.
Hope this finally fixes your problem *fingers crossed*
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedDo you have any feed related plugins?
I have a vanilla installation of WordPress, albeit 3.1 and I updated my feed settings in the admin and it seemed to work fine.
Are you using 3.2.1?
The two feeds were different.
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedI think the RSS is generated on the fly. But generally themes don’t affect their output.
I believe that the RSS is being generated correctly. If you use the normal feed, Feedburner can incorporate the full content. That should work for you.
On the WordPress Feeds link I posted above, there is a link about WordPress and Feeburner.
http://codex.wordpress.org/Using_FeedBurner
http://www.google.com/support/feedburner/bin/answer.py?answer=78483
http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-setup-feedburner-for-wordpress/Hope it works out for you.
Forum: Fixing WordPress
In reply to: Can't show full content in the RSS feedAh yes, the smiley face, that does nothing to offset the rudeness of that comment. I am volunteering my time trying to help you, in fact I give up quite a lot of time trying to help people, I ask for nothing in return but not being deemed unhelpful for my efforts. As WordPress gives the option, I’m not sure your interpretation of the option matches what it’s doing in the background.
However, being the helpful person I am, on looking more closely at your problem, you have indeed specified Full Content in the Feed. The RSS Feed and Feed are not necessarily the same thing. WordPress generates at least 4 URLs for its feeds (see link at very bottom for an explanation of what these do).
http://devinchughes.com/feed/ – shows your description + content
http://devinchughes.com/feed/rss/ – shows just your description
Other than that you could possibly modify the core files are generating the feeds.
Here’s a few helpful links:
http://codex.wordpress.org/WordPress_Feeds
http://en.wikipedia.org/wiki/RSS#ExampleForum: Fixing WordPress
In reply to: Remove Author | Remove CommentsCool, we got there in the end.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsNo worries about the help. I understand when you’re trying to do something it’s quite tough when you need to get up to speed, and it’s almost impossible to pick up PHP and WordPress straight away.
So, on line 110:
printf( __('<span class="meta-sep">by</span> %3$s <span class="%1$s">Posted on</span> %2$s', 'brunelleschi' ),I think this is the part of that line you will want to remove. Take a back up beforehand in case I’m wrong.
<span class="meta-sep">by</span> %3$sHope this is it!
Forum: Fixing WordPress
In reply to: Remove Author | Remove Commentscould you copy the code from your functions.php to http://pastebin.com, it would most likely be in there.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsIf you read carefully, I said it was where it was generated, not to remove it, you need to find and edit that function.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsRight,
You’re supposed to use pastebin for your code.
So on actually looking at the code, as you’re using a custom theme, it looks like this is where the author and date are being generated.
<?php brunelleschi_posted_on(); ?>In the first block of code you should comment out the following:
<?php comments_template( '', true ); ?>And:
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'brunelleschi' ), __( '1 Comment', 'brunelleschi' ), __( '% Comments', 'brunelleschi' ) ); ?></span>AS ALWAYS, take a BACKUP in case anything should go awry.
Forum: Fixing WordPress
In reply to: Remove Author | Remove Commentsloop-attachment.php refers to posts you’ve marked as attachment. DO NOT DELETE THIS.
loop-single.php this block of code you’ve posted is NOT generating the code you wish to remove.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsYou should be looking for one of the following tags within the theme files, either in the loop.php or single.php files.
http://codex.wordpress.org/Template_Tags#Author_tags
Also, you should be finding this:
<?php comments_template(); ?>To this:
<?php //comments_template(); ?>