Nono
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Showing "Real" IP Address?Very cool. I will experiment with that. I patched your code, for now, which I know is uncool. Will improve with your recommendation.
Thanks.
Thanks for the tip. I got the same error and I rolled back to 1.3.60 for now and waiting for the developer’s update.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Reset password while not logged inThanks for your reply Chad. I have these shortcodes (and I just noticed new ones in the links you sent):
[wp-members status="out"]<strong>You are not logged in.</strong>[wp-members page="login"][/wp-members][wp-members status="in"][wp-members page="members-area"][wp-members page="login"][/wp-members]
With the code above, and you’re not logged in, then you click on password reset, it only goes back to the same screen and does not show the password reset dialog. Maybe it’s the effect of
members-area
. I need to study a combo of these new codes.Hello Chad.
I am using an old version, 2.3.2 to be exact, that didn’t have the feature. You might ask why it was not upgraded? Hehe. There was custom code and it is a live site for videos.
I grabbed the latest version for a new project and it seems I won’t need to hack your code like before. Since you have basically included all/most of the functionality I need. (But I apologize if I ever I would.)
Also, I see the Export option now in the users list. So I guess I won’t be needing the plugin I mentioned above.
Thanks.
P.S. You blogged about the release of 2.6.6 but WP still lists 2.6.5?
Hi Chad. Thanks for your reply.
I used a plugin to export a CSV but it only had user name and email address and the client was ok with that but requested that maybe company name, etc could be extracted too.
In the meantime someone developed a plugin that exports custom fields generated by yours:
https://www.ads-software.com/extend/plugins/wp-export-users-plus/
I am going to install this on the new site I am putting up to test it out.
I removed the plugin and manually coded my “tables.” I just installed it again and tested, and I don’t get the error anymore. However it does not work with another plugin
WP Featured Content Slider
that I also use.So I don’t know if your solution would’ve worked, sorry. Thanks for your reply and I will try to figure out a way to present my pages using a combination of plugins and custom code.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] [Plugin: WP-Members] Custom sender email/name?I tried Mail From and it behaves the way I want it to. Also looked at its code and saw it used the same hooks shown in the link above. Thanks again for your excellent support and plugin.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] [Plugin: WP-Members] Custom sender email/name?Hi.
I tried using a similar plugin to change sender name/email. However, it had overridden your email function (learned the hard way when someone joined our site) which I liked since it provides a link to the new user profile (useful for admin-approved membership) in the message.
I will look up the links you supplied and do additional online searches. Will probly hard code so I see what exactly is going on. Or maybe one of these plugins will not do what I described above?
Thanks!
Hey there.
Appreciate you answering this quickly. I also noticed that email is repeated but I thought it’s ok as long as it works and that’s how he/you programmed it. I just wanted to eliminate the repeated value and maintain the presentation.
Excellent plugin you have! Thanks!
Oh regarding the background color note. I just added
<param name="bgcolor" value="#000000" />
in the
<OBJECT>
tag of FlowPlayer and it worked.Hello folks.
I also encountered this bug and would like to share my little hack to it. Please edit videojs-html5-video-player-for-wordpress/video-js-wp.php and locate the part
} else { $autoplay_attribute = ""; $flow_player_autoplay = ',"autoPlay":false'; } $videojs .= <<<_end_
Edit it to include the extra line I inserted:
} else { $autoplay_attribute = ""; $flow_player_autoplay = ',"autoPlay":false'; } $flow_player_scale = ',"scaling":"fit"'; $videojs .= <<<_end_
Now edit the part:
<param name="flashvars" value='config={"playlist":[$flow_player_poster{"url": "$mp4" $flow_player_autoplay $flow_player_preload}]}' />
to appear like:
<param name="flashvars" value='config={"playlist":[$flow_player_poster{"url": "$mp4" $flow_player_autoplay $flow_player_preload $flow_player_scale}]}' />
This allows the video to scale when in full screen. However the poster is not affected and I haven’t found out (yet) how to change the background color (which is white).
Hope this helps a lot of people!
Regards,
NonoForum: Plugins
In reply to: Flash Gallery: Arranging the photos inside the galleryI downloaded the plugin and I am happy about how relatively easy it is to integrate into my blog and also how visually pleasing and simple it is.
However I am stuck when testing it in Internet Explorer 7 & 8. The gallery does not show in these browsers. I have no problem in Chrome, Firefox, Safari & Opera.
Any ideas? Thanks in advance.
Nono
Forum: Fixing WordPress
In reply to: reset the blogg?I did a simpler approach to resetting the blog.
Call me lazy but I didn’t want to erase all the WP files on my webserver because for me that’s a lot of work and could take some time. This also saves you the trouble of trying to remember what tweaks you had done on your theme files (.CSS & .PHP) if you used the web interface extensively.
What I recommend is to:
1. Delete the database from your webserver.
!!! Remember that this also deletes all entries on your blog !!!
2. Create the same database and user credentials (if needed).
3. Run install.php againThat will initialize the database (again) and will put your blog back to the “Hello world!” state.
Hope this helps.
Regards,
Nono