Search Results for 'wordpress'
-
AuthorSearch Results
-
October 21, 2015 at 5:33 pm #245811
Venutius
ModeratorI remember looking at a plugin called something like Buddypress custom profile menu, maybe that would do it for you?
https://wordpress.org/plugins/buddypress-custom-profile-menu/
October 21, 2015 at 8:55 am #245788In reply to: Problems with TopBar
flopfeil
Participantthats the site, it only shows up fpr logged in user.
After creating an account you can click on several links in the topbar all the buddypress links are messed up. For example “Nachrichten” from the dropdown menu.
Stick for a while with this problem and nobody can handle it.
I ask the theme support and the wordpress support weeks ago.October 20, 2015 at 9:23 pm #245773In reply to: Problems with TopBar
Paul Bursnall
ParticipantCan you post a screenshot of how you think the site should look, and a screenshot of what you see as a problem. I have access to the Kleo theme, and some experience of customizing the WordPress toolbar.
October 20, 2015 at 6:44 pm #245765In reply to: buddypress-followers – scope following filter
Andrew
ParticipantThanks shanebp. I just found out the plugin was updated 8 months ago on GitHub to allow for this:
https://github.com/r-a-y/buddypress-followers/commit/be48a8ee7d1baa0b3cf73f98597c3c12ff3e16b3
But for some reason they haven’t updated the plugin in the WordPress.org plugin directory for over a year.
October 20, 2015 at 4:17 pm #245759@mercime
ParticipantRe BadgeOS plugin conflict: please post the issue at the plugin’s support page at https://wordpress.org/support/plugin/badgeos
Re error with Media upload: Do you mean you cannot upload media from the Page/Post/Media > Add New panels? Then do provide more information https://buddypress.org/support/topic/when-asking-for-support-2/. If you’re using a third-party media plugin, please post the issue at that plugin’s support forums.
October 20, 2015 at 4:14 pm #245758In reply to: Hide profile menu options according to role
pnet
ParticipantOn the buddypress menus?
I think it’s just for the wordpress menus.
October 19, 2015 at 5:11 pm #245719In reply to: How Mediapress works: guide.
danbp
ParticipantHi guys,
sorry to jump in, thought you need a little help from a mediapress early adopter.
But first, about the theme used by @caesarhills.About Graphene
The theme has an option where you can hide child pages. You probably don’t need to show all your site pages listing below BuddyPress content as you use the buddy menu.
dashboard > appearance > graphene options. Tab General > child page option, select hide listing.About Mediapress
@venutius, @caesarhills
You don’t need to use a shortcode to get a list off existing galleries. This is default behave.Caesar, you use BP on network. When you use mediapress, take in account this remark from MP’s author:
If you don’t want to have a separate MediaPress Installation for all the sites, please do not network activate MediaPress. Only activate it on your Main BuddyPress site.Currently, MediaPress does not support BuddyPress Multiblog Mode.
MediaPress is best suited on a Multisite install if you activate it on main site or network activate if you are using BuddyPress Multi Network plugin.
1) When you install a directory uploaded on Github (which is the case of mediapress), github add automatically -master to that folder. You have to remove that when you add the directory to wp-content/plugins/. So to get mediapress working correctly, ensure that the plugin path is
wp-content/plugins/mediapress/ and not wp-content/plugins/mediapress-master like it is setted on trato111.org actually2) activate mediapress like any other plugin. When BP is installed, you get a message telling mediapress has no page associated to it. Click on repair and add a page manually. Call it ‘album’. Then assign this page to MediaPress component on BuddyPress > settings > pages. Save.
Return to front and reload it. Now you should see a menu item called Album beside Activity, Groups, etc. on the main menu.
Click and you see an empty Album page with the usual search filter for galleries, a sort filter for galleries and a little message telling you “There are no galleries available!”.
Again, that’s the default behave. Note that i didn’t evoquate mediapress settings. I described you only what happens when you install mediapress by default.
For more in-deep details, please refer to MediaPress documentation.
And if you want to use shortcodes, do it after reading this doc.
October 18, 2015 at 11:08 pm #245670In reply to: How to add Captcha in Buddypress Register Form?
djsteveb
ParticipantI would suggest you skip the captcha on registration and instead use something like
https://wordpress.org/plugins/buddypress-humanity/or the plugin “good question”
There is another similar to those.. in my experience these work 100 times better in preventing spam registrations..
I also use “ip geo block”
These took my spam fighting down from hours a day to a minutes a week.
October 18, 2015 at 8:56 pm #245655In reply to: Displaying members roles in Members list
danbp
ParticipantHi, perhaps you omited a dot or another php element. Anyway, below snippet add same fonction to members directory by using the appropriate filter, so you haven’t to touch the template.
Add it to child theme functions.php or bp-custom.php
Show user’s role on member directoryfunction who_are_you_dir() { $user = new WP_User( bp_get_member_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) { /** * Fetch the user's role. See https://codex.wordpress.org/Roles_and_Capabilities * _e('role name', 'text_domain' ) allows use of translation * else use echo "role name"; */ // Output if ( $role == 'administrator') { echo "Administrator"; } if ( $role == 'subscriber') { echo "Subscriber"; } if ( $role == 'contributor') { echo "Contributor"; } if ( $role == 'author') { echo "Author"; } if ( $role == 'editor') { echo "Editor"; } } } } add_filter ( 'bp_directory_members_item', 'who_are_you_dir' );To show user’s role(s) on his profile, you can use this:
Show user’s role on profile
function blablabla() { $user = new WP_User( bp_displayed_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo $role; } } add_action( 'bp_before_member_header_meta', 'blablabla' );October 18, 2015 at 7:32 pm #245649In reply to: Making Myself An Admin On Buddypress
webguru13
ParticipantThanks I read the links but am still somewhat confused….I am going to have to dig…I am use to it as I have done ALOT of digging while learning both wordpress and buddypress…I am a little confused on what that link is explaining…I guess what I was trying to get at that if I am going to show up I would at least like it to label me as admin and where do I set up to be able to moderate things on the site…especially the forum but on buddypress as well…I want to be able to moderate for any abuse, language, etc but first and foremost I want to see myself labeled on there as the administrator…Rhonda
October 18, 2015 at 7:18 pm #245647In reply to: Creat Group Problem
danbp
ParticipantMy question was does the page really exist. This means simply that you have to check for this in WP’s pages list and in BP settings for page, that this page is showing in regard of group : page selectbox.
Do you use plugins other than BP ? If yes, deactivate all except BP and test with 2015.
https://codex.wordpress.org/Debugging_in_WordPressOctober 17, 2015 at 9:40 pm #245623In reply to: Can I @everyone when I message?
Henry Wright
Moderator@jmunce no problem! I’ve submitted to the offical repo so hopefully it’ll be available in the Plugin Directory soon.
I’ll definitely be adding the @ friends command next. Let me know if you think of any more commands that might be useful 🙂
October 17, 2015 at 5:09 pm #245610In reply to: Edit registration and activation
Venutius
ModeratorThis advice I got from William helped me change the text of the Registration page, I’m sure it will work you change other text messages in Buddypress:
This article may be of help to you to change that text http://premium.wpmudev.org/blog/make-your-wordpress-site-buddypress-ready/
Or you can use this one too with a plugin: https://webdevstudios.com/2015/06/02/creating-custom-templates-for-buddypress/
October 17, 2015 at 2:50 am #245592In reply to: “Favorite” counter/ count
JMunce
ParticipantJust an update on this thread.
At the moment, there aren’t any plugins for this. The BuddyPress Like plugin is broken (it breaks WordPress themes on install and isn’t being supported). I tried others as well. The BuddyPress Compliments seems like a great plugin, but only allows users to compliment other members (not compliment posts). It’s interface and options, useability is great though.
It does what many people are requesting (on WordPress as well as this forum): lets people add “likes” to posts AND lets people customize the button that does the “liking” (I mean you can name the object and set an image for it).
Is there any plans within BuddyPress to add a “like” function (which tallys the likes on posts)? (If so, Compliments is a great model.)
Screens of BuddyPress Compliments:
October 16, 2015 at 10:59 am #245540October 16, 2015 at 10:51 am #245539In reply to: member search and add media
danbp
ParticipantOctober 15, 2015 at 10:52 pm #245518In reply to: “Favorite” counter/ count
Henry Wright
ModeratorI haven’t tried it but there’s also BuddyPress Compliments.
October 15, 2015 at 6:42 pm #245505In reply to: Register and Activate pages don’t show on site
janvbear
ParticipantI did a complete reinstall of WordPress, deleted all the pre-installed plugins, and added BuddyPress only.
I checked the Membership checkbox in General Settings.
I made sure the permalinks were set for post-name.
I created the Register and Activate pages.
I went to the BuddyPress settings and linked to the pages.
They forward to the home page, still.
October 15, 2015 at 3:54 pm #245492In reply to: No Register/Activation Pages
jenniferlmyers01
ParticipantI have permalinks activated in WP. I created the Register and Activation pages for my website, but BuddyPress does not allow me to save them once I’ve assigned the pages. On the
Associate WordPress pages with the following BuddyPress Registration pages, there is no option for me to save the settings. The three buttons (“new page”, “save”, and “view”) aren’t there. Also, I do not have the option to save the settings on the Components page either.October 15, 2015 at 12:46 pm #245485In reply to: going button on events
Venutius
ModeratorThis sounds like a question for the developers of your events plugin, which plugin do you use? There will probably be a forum on WordPress.org for it.
October 15, 2015 at 9:25 am #245482In reply to: Replace “Group admin” with “Administration”
danbp
ParticipantNo. But ou can replace the word in the language file by an empty space html entity (& n b s p ; ) and simply add an image, or better, a dashicon, via css.
October 14, 2015 at 10:53 am #245446In reply to: Local or remote
Roger Coathup
ParticipantI’ve not encountered any issues locally.
My preferred setup is Chassis to provide local WordPress environment on vagrant; then adding BuddyPress however you prefer (from wp-admin or manually). Works great on OSX (although there are some general config changes with VirtualBox on El Capitan).
October 14, 2015 at 8:03 am #245443In reply to: MP3 upload profile field
danbp
ParticipantHi, no need to shout, writing in capitals is really rough. [Mod – topic title modified]
In a WordPress system, you can only upload allowed medias. You already know (probably) that you can embed videos in post by simply copy/pasting the video link into it. This works also with BuddyPress when you enter a video URL to a profile field, it plays automatically, without any additionnal player.
MP3 is an audio format and you can use the same technique as for videos. Read here.
For more advanced display, you have several possibilities by plugins (rtMedia or MediaPress) or by building a custom display which fits exactly to your need. You don’t want a plugin (?), so i’m affraid you have to do something from scratch.
That said, keep in mind that allowing users to upload “big” data files to your site is a mess. First because of the upload limitation in WordPress (by default 2 mo max.) This can only be increased if you have access to the server settings (eg. php_ini and httpd_conf). And if you have some traffic and many MP3, you need a generous bandwith. That’s why it’s recommended to use external services to store these datas. But if you follow this, you can only use what WP allows.
Before thinking about a miraculous snippet in bp-custom, give more details about the scenario you imagine for users (file amount, file size, why do you want this during registering and not later, and so on…).
Depending your answers, the solution can be very simple or very complicated.
October 13, 2015 at 2:52 pm #245411In reply to: How Mediapress works: guide.
ronia
ParticipantThere is no free media solution that will work seamlessly across WP Multisite and Buddypress, that is comparable to at least some degree to scripts like Elgg or Easysocial for Joomla … Rtmedia paid version is little better but using and uploading media has become so intuitive and easy (along with site super admins options eg how much to allow to upload in one go) that standard cms-es like WordPress, Buddypress, Joomla, Drupal are lacking far behind : for example see Whatsapp – how easily you can add picture from you phone cam or webcam in your gallery ( for Buddypress, Elgg etc you can do this for profile photo only) – such capacities are totally absent in social scripts like BP (WordPress or WP Multisite without BP is somewhat better if used with Jetpack).
We will never catch-up – you will never catch up unless you have deep pockets. WP+BP rest on its laurels and its sad how FB monopoly is destroying the fabric of inter-connectivity of internet.
Mediapress is not a user-friendly solution if you have to quickly or in a moderate time, deploy a social net site.
October 13, 2015 at 1:59 pm #245408In reply to: forum on my website and considering BuddyPress
Venutius
Moderatorbbpress is the forum component of WordPress, it can integrate in Buddypress Groups to provide them with forums but will also work standalone.
-
AuthorSearch Results