dr2000
Forum Replies Created
-
Forum: Hacks
In reply to: Wp-Query pagination and offesetMaviDeve,
Where you able to get this resolved? I’m having exactly the same issue and also came to the conclusion that WP decides to load 404 page based on the value set in admin panel and basically ignores all the custom template settings.
I posted about it here: http://wordpress.org/support/topic/pagination-issues-problematic-logic-explanation-and-suggested-solutions?
I’ve done a lot of searching, but so far no luck.
Forum: Themes and Templates
In reply to: Theme’s graphics not workingSomething is wrong with the permission after all.
For example for background image:
http://onlineblog.buymusicmovies.com/wp-content/themes/default/images/kubrickbgcolor.jpgIt’s coming back with a forbidden error. Check the path from the root and see if the folder permissions are set correctly.
Forum: Themes and Templates
In reply to: CSS and Getting Text To WrapNot the best way to do it, but probably the simplest would be the following:
Where you currently have:
<img src='http://www.sirspeedynorthdallas.com/wp-content/uploads/2007/10/heather-reeves-thumb.thumbnail.gif' alt='Heather Reeves' />you should have:
<img style="float: left;" src='http://www.sirspeedynorthdallas.com/wp-content/uploads/2007/10/heather-reeves-thumb.thumbnail.gif' alt='Heather Reeves' />That should do what you want.
Forum: Your WordPress
In reply to: Personal BlogAdded another small thing — the image bar on the side now pulls the feeds from Picasa using AJAX and lets visitors browse the image galleries right in those little windows.
Brock, thanks for the compliments.
Somehow I was hoping for more comments, but what can you do? 🙂
Forum: Fixing WordPress
In reply to: Google Map Embed ProblemIn your admin panel click on Users –> Your Profile, and there you should see a “Use the visual editor when writing” check box. Uncheck it and save the profile.
Forum: Plugins
In reply to: link to commenters author pageIf the comment was left by a register user you can get their ID by using the following: $comment->user_id.
So you can build your link yourself:
<a href="?author=<?php echo $comment->user_id ?>"><?php comment_author() ?></a>