houseofboyd
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Exclude Category From Recent PostsThanks for the info Boober, but unfortunately, this yielded no results.
Forum: Fixing WordPress
In reply to: styling the first post differentlyAdam, thanks for all of your help on this issue. I to was having the same issue as Traceyshaw, but after making the change that you mentioned above, my first on the first page displays as it should, however, every post on every other page than the first displays like the first post on the first page…I’ve gone back to my original way, the first post on each page displays differently as other posts. I just want the first post on the first page to display differently…Any ideas? Your help is appreciated.
Forum: Your WordPress
In reply to: New DesignThanks for your input. To both of you, there is a page that lists all of the plugins that I’m using and a link to the authors page. You can check it out here.
Flynntastic, my eyes are bad too and I do plan on lightening the font color on the sidebars really soon…thanks again for your input..Also thanks for letting me know about the site working well in Opera, I’ll add it to the list..Forum: Themes and Templates
In reply to: WP theme: FreedomNice theme, but why do you make people register to see it. That’s just going to turn people off to it.
Forum: Your WordPress
In reply to: New theme for review…I agree with spencerp. Whether I like it or not, I’m always pleased to see somebody with a theme that they’ve obviously put a lot of work and a part of themselves in. And even though your theme isn’t for me, you obviously put a lot of thought and work into it and I give you many kudos for that. Keep up the good work!
Forum: Plugins
In reply to: WP-Forum Plugin and WP 2.1.1Ok I’ve had a look into this and think I think I’ve found the problem. In the cookie.php file in the ul($user_ID) function, when a user is logged in their lastvist usermeta isn’t being updated.
function ul($user_id){
if(!isset($_COOKIE[’session’])){
update_usermeta( $user_id, ‘lastvisit’, time() );
return true;
}
return false;
}I’ve fixed it by removing the not on the if statement.
function ul($user_id){
if(isset($_COOKIE[’session’])){
update_usermeta( $user_id, ‘lastvisit’, time() );
return true;
}
return false;
}You can see it working with WP 2.1.2 here: https://www.houseofboyd.com/blog
Forum: Your WordPress
In reply to: **New** Usefulidiocy.comNice.
Forum: Your WordPress
In reply to: BlogCut ThemeBottom is garbled in IE7, everything runs together. Other than that, it looks fine.
Forum: Themes and Templates
In reply to: FlickrOh, I see. Read this, it may help you do what you want.
https://www.pearsonified.com/2006/03/how_to_add_a_styled_flickr_pho.php
Forum: Themes and Templates
In reply to: FlickrLooks like you already have Flickr in your sidebar..You may also want to consider the Falbum plugin as well.
Forum: Plugins
In reply to: [New Plugin] Custom Contact Me/Us PluginI just downloaded it and it contains the zane folder. If you still can find it, let me know and I’ll zip it back up for you. You can see it in action here:
Forum: Plugins
In reply to: Plug n Play Google Map plugin issues with WP2.1?No clue man. I’m using this same plugin without any problem. You do know that geo.php is required to use this plugin don’t you? Maybe download the latest version of geo.php and see what happens.
Forum: Plugins
In reply to: Possible Sticky Note/Adhesive Solution for WP2.1No you don’t have to tweak anything. I added some css styling to better fit my site. I should work right out of the box. I don’t understand why you’re getting the gibberish that you’re getting. Maybe it only supports English? Don’t really see why it would though. You may want to contact the person who developed the plugin. What version of WP are you using?
Forum: Plugins
In reply to: Online counter for WP 2.1Counterize II
Forum: Themes and Templates
In reply to: Want To Display Links By Categorydraghnfly you can do it by using the bookmark tag, but there is a plugin that makes it even easier. It’s called: My Link Order
You can get it here:
https://www.geekyweekly.com/mylinkorder
Download the one for WP2.1…simple as that!