scythah
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Weather Traveller] error in wp_travel_confOptions.phpThanks. Updated.
Forum: Requests and Feedback
In reply to: [Plugin: kPicasa Gallery] Video Support?Sure fetredlwl. Send me an email at the address above and I’ll send you my files. For the time being, install the Shadowbox JS plugin.
Forum: Plugins
In reply to: Email Users (v3.1.5) and WP 2.7xNo that version doesn’t, but I did all of the hard work for you. You can grab it from http://code.google.com/p/email-users/, there’s been a little bit of discussion about it on wordpress already.
I haven’t heard anything from Vincent about it yet.
Glad you got it working.
Ok manca, I’ve updated it for you. See how that goes.
You might need to go to the settings page first to change it to the setting you want (let me know if when you first install it it shows the “Display full post content” option but acts as though “Display nothing” is selected).
Glad it’s working for you both. jmilford, guess it’s a problem with your setup then. If you get a chance, maybe you could try disabling all plugins, enable this one and see if it works. If it does, then start enabling others again until we find out where the problem lies.
If anyone has any other extra functionality that they would like to see added, create a new issue for me and I’ll try to get it done for you.
Ok, I’ll have another look over it later on today after work.
Do you have any other plugins that create their own menus? Or any that modify the menu or could be interfering somehow?
You could also try doing a Re-Install via the Tools->Upgrade menu to get WordPress to check if there are any problems with the WordPress files. It should work without a problem, but you’re best off doing backups of things first. Worth a shot I guess.
Ok, I’ve made a small change. I can’t see why it’ll make any difference (especially if you are getting the settings page), but give it a try anyway.
If you can, disable the old version, delete the email-users directory from your plugin folder, upload the new version and activate it. This is just to make sure there are no leftover files from Vincent’s.
You can see what changes I made in the source code.
Let me know how you go.
I haven’t noticed it stopping working with it. Just keep a backup of the original files and if it does stop working, swap back again and let me know what happens. I’ll see what I can do to fix it.
Forum: Requests and Feedback
In reply to: [Plugin: kPicasa Gallery] Video Support?I have modified your plugin to make videos work. I couldn’t find a way to contact you via your site. Please contact me at scythah at gmail dot com if you would like the changes sent to you.
The only problem with what I’ve done is that the engines included by default don’t support my changes (I basically just change the fullURL to the Google video player FLV file). However, it works perfectly with the Shadowbox JS plugin.
Anyone else wanting the changes can contact me as well (until kag updates the plugin or decides what he wants done).
Since Vincent seems to not be around anymore and his site seems buggered, I’ve updated email-users to fix both the access level issues that have occurred due to the recent security fix in WordPress. I’ve also fixed the missing notify link thing too (using the fix mentioned somewhere else in these forums). You can grab the new version at http://code.google.com/p/email-users/downloads/list
If anyone notices any problems, please create an issue and I’ll do my best to fix it.
Since Vincent seems to not be around anymore and his site seems buggered, I’ve updated email-users to fix both the access level issues that have occurred due to the recent security fix in WordPress. I’ve also fixed the missing notify link thing too (using the fix mentioned somewhere else in these forums). You can grab the new version at http://code.google.com/p/email-users/downloads/list
If anyone notices any problems, please create an issue and I’ll do my best to fix it.
Forum: Fixing WordPress
In reply to: [Plugin: WP-OpenID] Javascript errorsI noticed the same error and have fixed it as follows:
edit openid/interface.php
Find line 114:
replace:if (is_user_openid()) {
with: if(is_user_openid() && (is_single() || is_comments_popup() || is_admin())) {Find line 125:
replace:if (!is_user_logged_in()) {
with:if (!is_user_logged_in() && (is_single() || is_comments_popup() || is_admin())) {My reasoning for adding that code is that the stylize_profilelink() function is added by the openid/files/openid.min.js file which is only added if is_single() or is_comments_popup() or is_admin() (see line 84 of interface.php).
Therefore, if is_single() and is_comments_popup() and is_admin() are all false, then openid.min.js is not included and hence stylize_profilelink() is not defined so adding that check to lines 114 and 125 makes sense.