djpushplay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 3.0 gives me error on comment submissionWhoops. Duh. I guess the plugin is not 3.0 compatible.
Thanks for the quick reply.
Forum: Fixing WordPress
In reply to: Contact Form fails on Midphase hostingI was never able to fix this problem directly. However, I figured out a workaround. For some reason, maybe because my email domain is on gmail, it doesn’t work directly. However, I created an email address using a regular email server, then forwarded that e-address over to the gmail one and everything worked fine.
I have to assume that for some reason, the gmail address is not compatible to the setup on midphase. The reason I say this is because I have the exact same setup (WordPress/gmail) on godaddy and it works fine. I’m sure it’s just some setting somewhere.
The work-around is a little messy but it works.
Forum: Plugins
In reply to: [Plugin: Splashscreen] Will this interfare with bots?You can create your own template.
Forum: Fixing WordPress
In reply to: Contact Form fails on Midphase hostingThanks Nick. I’ll email you right now.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] 1.9.3 WP 2.7.1 no settingsDOH!
Since you’re using 2.7.1, you really no longer need the plugins for threaded comments or paged comments since they are both part the core WP.
From your post, I can tell that your theme is using some type of counter ($commentcounter) to count the number of comments. This technique no longer works in 2.7.1. You will have to change your theme to use:
<?php comments_number('0','1','%');?>
or
<?php comments_number('No comments', 'comment', 'comments' );?>The first one will just show the number of comments, which would replace your code:
<?php echo $commentcounter; ?>Hope that helps.
What version of WP are you using? Starting from WP2.7, comments can be threaded without a plugin but your theme has to be updated.
Forum: Installing WordPress
In reply to: Anyone using 2.7 and Godaddy and site runs slow after upgrade?The upgrade were 90%+ bug fixes. You can see them listed at:
http://core.trac.ww.wp.xz.cn/query?status=closed&milestone=2.7.1&resolution=fixed&order=priority
To see the specific changes in the code from 2.7 to 2.7.1, see:
http://core.trac.ww.wp.xz.cn/changeset?old_path=tags/2.7&old=10539&new_path=tags/2.7.1&new=10539
Forum: Plugins
In reply to: [Plugin: Contact Form 7] 1.9.3 WP 2.7.1 no settingsI downgraded to version 7.1.7.7 and it’s working again. I guess 7.1.9.3 is not compatible to WP2.7.1.
Forum: Requests and Feedback
In reply to: One Time Splash Screen Plug in Requestmmoran0226:
I called the templates .htm so they can be easily found but you can place PHP code in there. In fact, the sample template uses the header and footer calls.
Editing the template inside the admin probably is the proper way to do this plugin but I didn’t want to have to create a bunch of code to copy/delete/rename new templates. In other words, I was lazy and just wanted to get it done.
If I have free time in the future, this will be on my to-do list for sure.
Forum: Fixing WordPress
In reply to: Break comments into pagesI’m using 2.7.1 and the default theme does have code to do the comment paging. Older themes will not work with this feature because the new code has to be included.
On a side note, if you use the “Comments should be displayed with *newer* comments at the top of each page” turned on, it doesn’t work properly. If you set it for 5 comments and you have 6 comments, the first page will show just 1 comment (the newest), then the second page will show 5 comments (the oldest 5). I consider this a bug, although some people might consider this a “feature.”
Forum: Fixing WordPress
In reply to: HELP with Links and .htaccessI created a splash screen plugin which might do the trick for you.
http://ww.wp.xz.cn/extend/plugins/splashscreen/
You can change the template so that it does not have the header and footer but you have to replace it with HTML. Hope that helps.
Forum: Plugins
In reply to: [Plugin: Splashscreen] Will this interfare with bots?Since it uses the same header and footer as your other pages, it should look the same to search engine spiders.
However, I have not tested it with other plugins that manipulate the header for spiders. In theory, it should work without any changes. If you want to be sure, you can look at the source from your browser.
Forum: Requests and Feedback
In reply to: One Time Splash Screen Plug in RequestTook a minute but got it hosted here:
http://ww.wp.xz.cn/extend/plugins/splashscreen/Forum: Plugins
In reply to: Problems adding a new plugin to the plugin directoryGreat article on your website. I was scratching my head trying to use telnet without luck.
Thanks!