SuitePlugins
Forum Replies Created
-
Hi,
I can assist you with this. What you need to do is get the value from user meta table using get_user_meta
So, your script should look like this
function new_contact_methods( $contactmethods ) { $contactmethods['newsletter'] = 'Newsletter'; return $contactmethods; } add_filter( 'user_contactmethods', 'new_contact_methods', 10, 1 ); function new_modify_user_table( $column ) { $column['newsletter'] = 'Newsletter'; return $column; } add_filter( 'manage_users_columns', 'new_modify_user_table' ); function new_modify_user_table_row( $val, $column_name, $user_id ) { switch ($column_name) { case 'newsletter' : // Here tell me if Check box is true or false ! $display_newsletter = get_user_meta( $user_id, 'newsletter', true ); // return $display_newsletter; break; default: } return $val; } add_filter( 'manage_users_custom_column', 'new_modify_user_table_row', 10, 3 );I hope this helps.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Templates in child theme?Yes, you can!
For the base of the widget you can create a file in your theme like this
View when logged in
ultimate-member/templates/login-widget/login-view.phpView when logged out
ultimate-member/templates/login-widget/login-form.phpHowever, if you chose an ultimate member form as an option then you may want to edit the Ultimate Member template instead using this method https://docs.ultimatemember.com/article/119-overriding-default-ultimate-member-profile-templates
Sorry for the issues, you are experiencing. I will take care of them for you and provide you with an update when I have made the fixes.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] SuitepluginsHey Tyler,
I just recently saw this this and I am trying to reach out to you to send you the refund. I am closing this topic here, it’s not allowed here but please check for my email so I can resolve this for you.Forum: Plugins
In reply to: [Login Widget for Ultimate Member] failed attempt takes user to wp-login.phpYou can now use the Ultimate Member login form instead of the WordPress default login form.
Marking this as resolved.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Wrong links in Login WidgetI have resolved this in the latest update of the plugin.
Thanks for pointing it out.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Register LinkI have given the plugin the option to choose from one of Ultimate Member’s forms as an option for the widget. You can take a look at the screenshots to see how it can be displayed.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] Wrong links in Login WidgetThank you for pointing this out. I will look into and update this now.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] fatal error with version 2.0This has been resolved in the latest update.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] fatal ErrorThank you for the notice. This has been fixed and will be marked close.
Forum: Plugins
In reply to: [Login Widget for Ultimate Member] error in the login widgetThank you for the notice. This has been fixed and will be marked close.
This has been updated.
Forum: Reviews
In reply to: [Video & Photo Gallery for Ultimate Member] Great promise. Weak delivery.Hiya,
Is it possible for you to send a message at SuitePlugins so I can figure out where the ball was dropped so I can have what you mentioned fixed. There has been several improvements since your review and I would love to make sure that your issue was resolved.Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] Remove pics from main tab?This issue has been resolved. The setting for this removes the tab as it should.
Forum: Plugins
In reply to: [Video & Photo Gallery for Ultimate Member] TranslationThe translation issue was fixed.
Translations can be placed in the wp-content/languages/plugins/ folder.
The text domain should be gallery-for-ultimate-member