modemlooper
Forum Replies Created
-
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Sendning no admin emailTry to uncheck the setting on the BP Registration admin page :
‘Add new user notification to admin user account BuddyPress notification inbox.’
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Buddyboss Yet?BuddyBoss forked BuddyPress so I’m not sure this plugin will work with current BuddyBoss.
Forum: Plugins
In reply to: [BuddyVerified] Names not displaying properly with BP Featured Members Plugincan you try this version?
https://github.com/modemlooper/BuddyVerified/releases/tag/2.4.2
It could be your theme. I added both plugins with 2017 theme and no issue
- This reply was modified 6 years, 11 months ago by modemlooper.
Forum: Plugins
In reply to: [BuddyVerified] BuddyVerified messes up user account list viewI can’t see the image you posted above so not sure what the issue is.
You can try this version. I’ve changed how the avatar displays.
https://github.com/modemlooper/BuddyVerified/releases/tag/2.4.2
- This reply was modified 6 years, 11 months ago by modemlooper.
Forum: Plugins
In reply to: [BuddyVerified] BuddyVerified messes up user account list viewAre you on the latest version of both plugins?
Forum: Plugins
In reply to: [BuddyVerified] Settings wont be savedWhat host are you on? Something is off on certain sites, I use this plugin and many others and have never had it not save. What version of BuddyPress?
Forum: Plugins
In reply to: [BuddyVerified] Settings wont be savedAre you on multisite?
Try this version https://github.com/modemlooper/BuddyVerified/releases/tag/2.4.2
Forum: Plugins
In reply to: [BuddyMobile] buddymobile is not removedIf you have a cache plugin installed it may be showing the cached page.
Forum: Plugins
In reply to: [BuddyVerified] Settings won’t saveUnfortunately, that information will not help fix your issue. This plugin is run on many sites and it works. I have no idea why it won’t save on your site.
Could be your theme, a plugin, or maybe you run multisite.
Without more information I can’t help you.
Forum: Plugins
In reply to: [BuddyVerified] Settings won’t saveThis is odd, I use this plugin on many sites with no problem.
Give some more information, try testing if other plugins are interfering.
Just saying it doesn’t work doesn’t help a developer at all to fix something.
Forum: Plugins
In reply to: [BuddyVerified] your plugin don’t workI’m not sure, I use it on many sites. You have to do some testing. Deactivate plugins and check if they are interfering.
Are you on multisite?
Forum: Plugins
In reply to: [BuddyPics] Is the project active?I would use BuddyMedia plugin over this.
Forum: Plugins
In reply to: [BuddyMedia] Disable User to Create or Upload Media?You could remove the tab for non admins
function my_remove_nav() { global $bp; if ( ! current_user_can('edit_users') ) { bp_core_remove_nav_item( 'media' ); } } add_action( 'bp_init', 'my_remove_nav' );
Forum: Plugins
In reply to: [BuddyMedia] Disable User to Create or Upload Media?Who do you want to upload?
Forum: Plugins
In reply to: [Easy Meta Builder] How to show Metabox on the frontend ?You can find the template tag to display in the admin where you build your meta box. There is a gear icon. Click it and you can copy the php code.
You can use core get_post_meta as well. EMB data is stored in the post meta.
If you are looking to but a meta box with the fields on the front read this tutorial. <You can find the template tag to display in the admin where you build your meta box. There is a gear icon. Click it and you can copy the php code.
You can use core get_post_meta as well. EMB data is stored in the post meta.
If you are looking to but a meta box with the fields on the front read this tutorial. /github.com/WebDevStudios/CMB2/wiki/Bringing-Metaboxes-to-the-Front-end