ternstyle
Forum Replies Created
-
@ leethompson, that would be your issue. Your theme doesn’t support displaying the thumbnails automatically. You could use the following function though to display them:
<?php tern_wp_youtube_image(); ?>Weird. Is there any information when editing the post in the YouTube ID field?
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] No Author PageYou’re welcome.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] horizontal listingI would look into the CSS float property:
http://www.w3schools.com/css/css_float.aspHmmmm, interesting. Off the top of my head:
Try changing line 65 of conf.php from:
$tern_wp_members_fields = array( 'User Name' => 'user_nicename', 'Email Address' => 'user_email', 'Display Name' => 'display_name', 'URL' => 'user_url', 'Registration Date' => 'user_registered' );to:
$tern_wp_members_fields = array( 'User ID' => 'ID', 'User Name' => 'user_nicename', 'Email Address' => 'user_email', 'Display Name' => 'display_name', 'URL' => 'user_url', 'Registration Date' => 'user_registered' );Let me know if that works.
Presently no, there is no way to combine roles into a list. Sorry for the inconvenience.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] view only 8 first usersWhat do you have the users sorting by?
Change the line you cited to:
$s .= '<a class="tern_wp_member_gravatar" href="'.get_bloginfo('home').'/profile?id='.$u->ID.'">'."\n ".get_avatar($u->ID,60)."\n ".'</a>'."\n ";Let me know if that works.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] Disabling email displayYou can remove it from the mark-up or change in the settings to only allow logged in users to see email addresses.
Presently the plugin searched one dimensionally. It only matches against an entire string. You’d need to look into the /class/members.php file to fundamentally alter the SQL.
@nancy, the plugin does not currently offer this functionality but it can be customized to do this.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] Memeber ListsPresently this cannot be done with the plugin. It would need to be customized. You can contact me at matthew@ternstyle.us
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] The beginningGood suggestion @jayce.
Forum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] No Author PageAuthor templates are not handled by this plugin. You’ll need to read here:
http://codex.wordpress.org/Author_TemplatesForum: Plugins
In reply to: [Members List Plugin] [Plugin: Members List Plugin] Pagination problemI’ll be looking to incorporate this fix into the next version.