oblax
Forum Replies Created
-
I think I got it.
// Add new column to usres list add_filter('manage_users_columns', 'pippin_add_user_id_column'); function pippin_add_user_id_column($columns) { $columns['billing_mobile'] = 'Mobile#'; return $columns; } add_action('manage_users_custom_column', 'pippin_show_user_id_column_content', 10, 3); function pippin_show_user_id_column_content($value, $column_name, $user_id) { $user1 = get_user_meta( $user_id, 'billing_mobile', true ); if ( 'billing_mobile' == $column_name ) return $user1; return $value; }Hey Dave. Thank you for your response. I think all the options you mentioned are good to have it onboard. Upon creating an account there are extra fields like First Name and Last name. And on the list of Registered users in the front end shows their First Name and Last Name alongside with their username.
I updated the plugin with the latest version. Works great!
Anyone?
It’s changing the data once it is imported to the database.
for example this data: a:1:{i:0;s:0:””;}Changes to:
s:17:”a:1:{i:0;s:0:””;}”;Is there a proper way to import the data to the database as is.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Blank page on Admin > Contact pageI got this sorted out. I accidentally demote the admin level to 9. It should be 10 always.
Forum: Plugins
In reply to: [Contact Form 7] Instead a form, I get this: [contact-form-7 404 "Not Found"]In addition, I test using the previous WP version prior to 3.4.2 and CF7 version prior to 3.3 is working with no problem.
It seems that CF7 stop working after WP upgrade.
Forum: Plugins
In reply to: [Contact Form 7] Instead a form, I get this: [contact-form-7 404 "Not Found"]Thank you for the great plugin Takayuki.
In my case after upgrading to v3.3 when I click the link http://www.mydomain.com/wp-admin/admin.php?page=wpcf7 it redirects me to the frontend “page not found” page.
Forum: Plugins
In reply to: [Contact Form 7] [contact-form-7 404 "Not Found"]I too having error when I click the Settings or the Contact on the menu it redirects me to the front end “page not found” page. What seems to be the problem?
Version # 3.3
Its working. Just need to delete the cache files.
Forum: Plugins
In reply to: [WPaudio MP3 Player] [Plugin: WPaudio MP3 Player] Tips that might helpnice post biberkopf. Do you know how to play all the songs inside a directory in random pick?