zmang
Forum Replies Created
-
Forum: Plugins
In reply to: Digg Link Style Link RSS to source?For your RSS2 template, try this to pull the value of your custom field into a variable named $avariablename:
<?php list ($avariablename) = get_post_custom_values('link'); ?>
Then, put $avariablename between the link tags, i.e.
<link>$avariablename</link>
Forum: Themes and Templates
In reply to: display nameIf so, edit your Single Post template (for individual posts) and/or Main Index Template (for your front page, and also for your individual posts if the Single Post template doesn’t exist), and where you want to place the AUTHORNAME, put this:
<p>This post was written by <?php the_author(); ?></p>
Just an example though, you can customise it as you wish. For more details, refer to the WordPress Codex on this.
Forum: Plugins
In reply to: Flashfader vs. LightboxI believe wmode=”transparent” doesn’t work in Linux though. Or does it?
Forum: Themes and Templates
In reply to: display nameIf all you want are the users/author’s names, then you might want to check out these Author Tags.
Forum: Installing WordPress
In reply to: Multiple blogs from one installI suggest looking at the WordPress Codex’s Installing Multiple Blogs for a comprehensive answer. You might also want to see other support threads on this topic.
Forum: Fixing WordPress
In reply to: Comments link in titleIf memory serves me correctly, comments_popup_link() is supposed to work that way, i.e. show number of comments on index page, but not on single/permalink pages.
For a template tag that works everywhere, I believe you have to use comments_number().
Forum: Plugins
In reply to: Post days beforeChange the date to August 27th in the Post Timestamp tab in your Write Post panel. You will also have to check the Edit Timestamp checkbox.
Forum: Requests and Feedback
In reply to: Any way to manage link category order from admin panel?You might want to see this support thread, which already has solutions available.
Forum: Requests and Feedback
In reply to: Guestbook PageA guestbook plugin is available. But if you just want reverse-ordered comments, there’s a plugin for it too. Both were found via the WP Plugins Database if you want to look for more plugins.
Forum: Plugins
In reply to: Digg Link Style Link RSS to source?It’s my personal preference not to touch the database unless completely necessary, and I feel it isn’t necessary in this case.
It is possible to do what you want by creating a new custom field for the URL of the product you want to link to, and then, replacing your normal headline with the value of that custom field in your theme’s templates.
See the Codex’s documentation on using custom fields for details on pulling the value of your custom field.
For RSS feed modification, you might want to look at your RSS template files, e.g. wp-rss2.php, and do the same thing.
Forum: Themes and Templates
In reply to: Missing Latest PostsIf you want it to display on all your Pages (i.e. static posts), including your About page, just add “or is_page()”. For more information, please refer to the Codex’s Conditional Tags page.
Forum: Plugins
In reply to: Multiple Image upload at once?There seems to be an existing support thread for this issue. Multiple solutions are presented there.
Forum: Themes and Templates
In reply to: random image with cssIf you’re looking to randomize an image, try this PHP script. It works for CSS images (like your bg-title.jpg) as well. A comprehensive guide is included.
Forum: Fixing WordPress
In reply to: Posts go to the bottomBy looking at your page source, you seem to have placed multiple .left_side classes (which I believe is supposed to be for the entire left sidebar) on your Amazon badges in your left bar + your box structure there seems to deviate from the rest of the blog, i.e.
<div class="box_top">
<div class="left_side">
<h2></h2>
</div>
<div class="box">
<iframe src="https://rcm.amazon.com/e/cm?t=bcollectin-20&o=1&p=8&l=as1&asins=0195307925&fc1=000000&IS2=1<1=_blank&lc1=0000ff&bc1=000000&bg1=ffffff&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div><div class="left_side">
<h2></h2>
</div>
<div class="box">
<iframe src="https://rcm.amazon.com/e/cm?t=bcollectin-20&o=1&p=8&l=as1&asins=0471794473&fc1=000000&IS2=1<1=_blank&lc1=0000ff&bc1=000000&bg1=ffffff&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div><div class="left_side">
<h2></h2>
</div>
<div class="box">
<iframe src="https://rcm.amazon.com/e/cm?t=bcollectin-20&o=1&p=8&l=as1&asins=0060747692&fc1=000000&IS2=1<1=_blank&lc1=0000ff&bc1=000000&bg1=ffffff&f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe>
</div>
<div class="box_bottom"></div>
</div>
You might want to try clearing up that area (remove the .left_side divs from the Amazon boxes and place those boxes inside your first .left_side – the one where your About and Categories boxes are) first and see how it goes.If that doesn’t work, try removing all the Amazon stuff on the left bar, and see whether that works. If not, post again, and I’ll try to see what else is going wrong.
Forum: Plugins
In reply to: Popular Category Plugin?Lol, that was you? Should have guessed from the celebrity blog. ??
Anyway, to my knowledge, a plugin doing exactly what you need doesn’t exist (hopefully I’m wrong here). I’ll see what I can do though.