ternstyle
Forum Replies Created
-
Forum: Plugins
In reply to: HELP! Get Login Plugin IssueHello khlota. I am the author of the plugin.
It seems as though this is a CSS or styling issue with your template. It appears there is not enough room for the links the plugin adds to your navigation to be properly displayed. Your theme would need to be widened in this area. If you notice the “Log-In” option is properly displayed in your left-hand side navigation because there is enough room for it.
You’ll need to alter your style.css file to get your desired results. I hope this helps and that you resolve your issue. All the best and thank you for using my plugin.
iLm@N,
I may have solved your problem. How many members do you have on your blog? the new version has a much better system for querying. I am hoping this will help solve your issue.
thanks,
matthewMy apologies for the issue. Not certain that it is my plugin causing this as you are the only one with this particular case.
As far as WP 2.8 goes. I have not yet had time to test my plugins in 2.8. They are only compatible up to 2.7.1.
thanks.
Forum: Plugins
In reply to: Is there a List Members Plugin?Forum: Plugins
In reply to: Member List PluginDiane,
What about that line needs to change?
~matthew
iLm@N,
So far no one else has reported this issue. I think it may be an issue with my plugin interacting with code from another plugin. Would you mind maybe listing some of the other plugins you’re using. I’d like to get my platform as close to yours to test this. It would be helpful to install the other plugins you’re using.
thanks,
matthewiLm@N,
My name is Matthew and I am the developer of this plugin. I would be more than happy to take some time to help you solve this issue. My intuition is that the issue you are experiencing is probably related to an endless loop. This means that a piece of code is not receiving all the information it needs to complete and it just runs and runs forever which overloads the memory alotted to the script. My code does employ the function on this page:
/home/anakicom/public_html/wp-includes/capabilities.php
The function is uses is:
function WP_User( $id, $name = '' ) { if ( empty( $id ) && empty( $name ) ) return; if ( ! is_numeric( $id ) ) { $name = $id; $id = 0; } if ( ! empty( $id ) ) $this->data = get_userdata( $id ); else $this->data = get_userdatabylogin( $name ); if ( empty( $this->data->ID ) ) return; foreach ( get_object_vars( $this->data ) as $key => $value ) { $this->{$key} = $value; } $this->id = $this->ID; $this->_init_caps(); }
This is what’s called the constructor function for the class “WP_User” which is WordPress’ class for querying and structuring information used for users on the site. As you know the members-list plugin is heavily based in the users of the site.
Okay, that’s the background. Now let’s solve it. Firstly, what version of wordpress are you using?
Forum: Plugins
In reply to: [Request] Member Listcheck this one out too: https://www.ads-software.com/extend/plugins/members-list/