modemlooper
Forum Replies Created
-
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
Forum: Plugins
In reply to: [BuddyVerified] Upgrade NoticeJust noting that I fixed this, it was extra files that got uploaded.
Forum: Plugins
In reply to: [BuddyVerified] BuddyPress Who’s Online & Members WidgetsIm trying to see if I can’t filter it out of the widgets
Forum: Plugins
In reply to: [BuddyVerified] BuddyPress Who’s Online & Members WidgetsCheck these two links. I’m not sure there is a way to filter this other than removing it from the code. Might be a way to check if the members loop is a widget.
Forum: Plugins
In reply to: [BuddyVerified] BuddyPress Who’s Online & Members WidgetsRead the thread before this one its the same issue.
Forum: Plugins
In reply to: [BuddyVerified] span code visible in user names | Front-endThat looks like its theme related. I’m filtering usernames and the badge shouldn’t be used in the title attribute. That being said if the username function is used in the title attribute it will break. The end span isn’t missing but getting broken.
I would go into theme or widget code and remove the username function from the title attribute.
- This reply was modified 9 years, 3 months ago by modemlooper.
Forum: Plugins
In reply to: [BuddyVerified] Bug report / reverts back to 2.3.1 after updateYes, SVN uploaded some old files. Update to 2.4.1
Forum: Plugins
In reply to: [BuddyVerified] Please updateUpdated.
Forum: Plugins
In reply to: [BuddyVerified] Plugin needs update, no save changes.Updated with settings fix.
Forum: Plugins
In reply to: [BuddyVerified] It does not work, upgrade needed.Updated with settings fix.
Forum: Plugins
In reply to: [BuddyVerified] Add to comments and author biosYou can use
bp_verified_image( $user_id )in a template file. I’ll put this on a list of future feature