Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,276 through 5,300 (of 22,651 total)
  • Author
    Search Results
  • Venutius
    Moderator

    I 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/

    #245788

    In reply to: Problems with TopBar

    flopfeil
    Participant

    http://www.trachtentracht.de/

    thats 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.

    #245773

    In reply to: Problems with TopBar

    Paul Bursnall
    Participant

    Can 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.

    #245765
    Andrew
    Participant

    Thanks 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.

    #245759
    @mercime
    Participant

    Re 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.

    #245758
    pnet
    Participant

    On the buddypress menus?

    I think it’s just for the wordpress menus.

    #245719
    danbp
    Participant

    Hi 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 actually

    2) 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.

    #245670
    djsteveb
    Participant

    I 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.

    #245655
    danbp
    Participant

    Hi, 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 directory

    function 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' );
    #245649
    webguru13
    Participant

    Thanks 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

    #245647

    In reply to: Creat Group Problem

    danbp
    Participant

    My 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_WordPress

    #245623
    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 🙂

    #245610
    Venutius
    Moderator

    This 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/

    #245592
    JMunce
    Participant

    Just 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:

    View post on imgur.com

    #245540
    danbp
    Participant

    There is a solution for this. See this plugin.

    #245539
    danbp
    Participant

    @1amyone,

    you simply have to copy/paste the media url into the form.
    Note that you can only use WP’s allowed medias. See the list.

    read also about media embedding on the BuddyPress codex.

    Embeds

    #245518
    Henry Wright
    Moderator

    I haven’t tried it but there’s also BuddyPress Compliments.

    #245505
    janvbear
    Participant

    I 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.

    #245492
    jenniferlmyers01
    Participant

    I 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.

    #245485

    In reply to: going button on events

    Venutius
    Moderator

    This 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.

    #245482
    danbp
    Participant

    No. 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.

    #245446

    In reply to: Local or remote

    Roger Coathup
    Participant

    I’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).

    https://github.com/Chassis/Chassis

    #245443
    danbp
    Participant

    Hi, 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.

    #245411
    ronia
    Participant

    There 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.

    #245408
    Venutius
    Moderator

    bbpress is the forum component of WordPress, it can integrate in Buddypress Groups to provide them with forums but will also work standalone.

Viewing 25 results - 5,276 through 5,300 (of 22,651 total)
Skip to toolbar