qdsouza
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme ConstructorThe problem occurs in IE6, and probably IE & as well.
Forum: Themes and Templates
In reply to: Theme ConstructorHi Anton
I wanted to add to the congratulations. Your theme is absolutely great, thank you very much!
I am also having trouble with the sidebar appearing three times as large in IE as it does in firefox (I have the latest version installed as well). You can see it here – http://www.durhamresidentialrentals.com/?cat=3
Thanks
Q
Forum: Everything else WordPress
In reply to: WORDPRESS 2.3.3 IS AVAILABLE!!!!I’m rolling back to 2.3.3 this minor release some how messed up all the Ajax on the Admin Side of my site. Can’t add categories, links, can’t even delete posts where everything is messed up.
Forum: Plugins
In reply to: Comments closed but still spam!You might try Angsuman’s Referrer Bouncer – http://blog.taragana.com/index.php/archive/word-press-1-5-plugin-referer-bouncer/ if it is trackback spam.
Forum: Plugins
In reply to: Del.icio.us Linkbacks to PermalinksAny chance that this would work as a possible plugin, I don’t really have a testing server to try it out.
Forum: Plugins
In reply to: Permalink HelpFYI – Found this on the star rater web site that might relate to your problem.
————————————-
Installing along with WordPressI found one conflict with WordPress that has to do with the database query. If you get the rating system working on your WordPress site and find that some of your WordPress queries aren’t working, you can use this method to fix it so that all the WordPress queries and rater queries work in harmony. It may not be the best method, but it worked for me. Suggestions welcome.
1. Change _config-rating.php
Comment out the mysql_select_db($rating_dbname); line.
2. Append db name variable to table name variables in your rating queries
Now, anywhere there is a database query in _drawrating.php, db.php, or rpc.php you need to append the $rating_dbname to the $tableName variable.
For example, on line 24 of db.php we have:$query = mysql_query(“SELECT total_votes, total_value,
used_ips FROM $tableName WHERE…That should be changed to:
$query = mysql_query(“SELECT total_votes, total_value,
used_ips FROM $rating_dbname.$tableName WHERE…Do that to all of your queries, and the ratings queries (I believe there are seven total) and your WordPress queries should play nice together.
————————-
Forum: Plugins
In reply to: Del.icio.us Linkbacks to PermalinksAlso, I found http://www.intertwingly.net/blog/2004/07/05/Tasty which is really helpful, but I’m still not sure how to plug into the delicious api for the user notes section of the url history in del.icio.us and then place them in the blog post.
Seems like http://del.icio.us/url?url=%5Bpermalink%5D is easy but how did the http://www.kokogiak.com/delicious_linkbacks.html only show partial data for the results.
Thinking that using PhpDelicious class might help too.
Forum: Plugins
In reply to: Post Loop for WordPress 2That’s okay. Thanks very much for your help. I really do appreciate it.
Just one quick question – how did you learn so much about wp plugins? Did you use the tutorials about developing plugins in the wordpress support site or did you just keep playing around with the code?
Forum: Plugins
In reply to: Post Loop for WordPress 2Thanks very much.
I did try this plugin but it didn’t work very well. I ended up with a blank screen. I just deleted the plugin and the site came back up.
Forum: Plugins
In reply to: Post Loop for WordPress 2Just a question for later modifications. If I want to add further functions on to the end of posts how can I do it.
Later on I am going to want to add the folowing, to the end of the posts.
————-
if ( is_single() or is_page() ) {
if( function_exists(‘get_the_post_keywords’) and function_exists(‘related_posts_jerome_keywords’) ) {
$relatedposts = related_posts_jerome_keywords();
if ($relatedposts === false) {
// echo ‘No related posts’;
} else {
echo ‘<div class=”related-posts”>
<h3>Related posts:</h3>- ‘ . $relatedposts . ‘
</div> <!– [related-posts] –>’;
}
}
}Can I add this to the social-bookmark.php or is it better to do something seperate?
Forum: Plugins
In reply to: Post Loop for WordPress 2This worked awesome! Thanks very much for your help.
Forum: Plugins
In reply to: Post Loop for WordPress 2Thanks for the offer I placed the code here:
http://www.teachinghacks.com/files/social-bookmark.txt
I really appreciate it.
Forum: Plugins
In reply to: Post Loop for WordPress 2Almost what I was looking for.
-It works on a post by post basis but not on the home page where all posts are indexed
-It before the post not afterThanks for trying.
Forum: Plugins
In reply to: Post Loop for WordPress 2Thanks Denis,
What I am trying to do is add the social bookmarking plugin to the end of each post – before permalink.
Social Bookmark Links WordPress Plugin
http://www.twistermc.comBasically one line of code:
<? social_bookmark(); ?>I tried to add it in the sem-theme-posts.php but had to reinstall semiologic because it crashed the site.
Any suggestions where I could add it?
Forum: Fixing WordPress
In reply to: Page Templates Using SemiologicYou are AWESOME!
I should have known – ‘home’ slug home.php
Thanks so much