abstroose
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] Not rewriting CDN URLs when using SSLNevermind, got it working by changing my site URL to the https version in Settings > General.
Forum: Plugins
In reply to: Automatically insert Adsensein poststhilak: That is what I am currently using, however I do not want to insert Adsense Ads between posts, but in a specific paragraph of a post.
chradil: I understand what you’re saying, but I was talking even if it was to insert the Adsense Ad just once between the first and second paragraph.
Forum: Plugins
In reply to: Ratings PluginA very nice rating plugin is PostRatings which an be found here:
http://dev.wp-plugins.org/wiki/wp-postratings
The Recent Screen section on robotjohnny.com, doesn’t actually use a rating plugin. If you right-click on the images, you’ll see they have their own images.
Forum: Fixing WordPress
In reply to: Blank pageWhat exactly does the file contain?
Forum: Plugins
In reply to: Force Excerpt?Okay, after doing some more searching I found using the following code solves the problem of the excerpts even in posts:
<?php
if($p){
the_content();
} else {
the_excerpt();
}
?>This will do me for now, but I would still prefer a plugin or hack which adds an extra summary/subject form.