Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,726 through 5,750 (of 32,678 total)
  • Author
    Search Results
  • #258956
    danbp
    Participant

    Better to ask for this the plugin support

    #258953
    kyla123
    Participant

    Is there a way to remove the “add photo” and “add video” features on BuddyPress Activity Plus? This would leave only the upload Link feature. I already use a plugin for pics and videos and I like Activity Plus better than BP Links. Maybe there is a code I could enter into the Code Snippets Plugin that i have downloaded?

    i have wordpress theme Twenty Fourteen and I have BuddyPress Version 2.6.2

    #258952

    In reply to: BuddyPress Branding

    danbp
    Participant

    Hi,

    you can use BuddyPress in the plugin name, under condition the public can understand clearly that it is an add-on FOR BP and not a part OF BP.

    For the domain name, i presume it’s the same trademark condition as for wordpress: no, you can’t. You can use bp-something[dot]com but not buddypress-something[dot]com

    BuddyPress comes like WordPress under GPLv2 license and has similar terms of use.

    #258942
    kyla123
    Participant

    is there a way I can enable @mentions to post to a friends wall whenever I write it on my wall? When on Facebook, I can tag people whenever i post anything(status, pics…) and they can choose to allow it on their wall. Currently, from my wall, I can post @someone and it only shows it on my wall and the activity feed and doesn’t give the other user the option to allow it to post on their wall. Any way to alter this? I looked into photo tagging… RtMedia has a photo tagging add-on but it is for $99. (I use rtMedia for my photos/albums). Looking for a free/much cheaper option.

    I have Buddypress Wall and my wordpress site is Twenty Fourteen theme.

    Paul Wong-Gibbs
    Keymaster

    I haven’t seen this on my dev site, and I don’t think we’ve had reports of this, so… as it’s staging, please can you switch the theme temporarily to a default WordPress theme, like twenty-twelve (etc) — and then visit this same URL again and see if the warning is still being printed or not?

    I suspect it’s something in your theme, maybe one of the templates, or some customisation hooked into the members loop, but switching the theme is an easy way to start figuring out possible causes.

    #258937
    Paul Wong-Gibbs
    Keymaster

    I’d look at increasing performance generally rather than specifically focusing on trying to block search engines.

    Like… I don’t know what other plugins or themes you are running, or how well they are written, nor anything about your hosts’ performance, but you need to look into those. I’d also look at making sure you have an object cache available and configured for WordPress if there isn’t already.

    argoncobalt
    Participant

    I just upgraded BuddyPress on my staging server. Previously it was version 2.4.3, now it’s 2.6.2. WordPress was also automatically upgraded recently to version 4.6.1 (my client and I are using WP Engine, which automatically upgrades every so often).

    However, once I upgraded BP, I began receiving a warning on the member directory portion of the website.

    Here is a link to the staging site, specifically the page giving me a problem, the member directory: https://goo.gl/m6IKrs

    I keep receiving repeats of the following warning, one for every single profile picture: Warning: Invalid argument supplied for foreach() in /nas/content/staging/ltb/wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-field.php on line 266

    And then on individual profile pages, I receive the warning once.

    Does anybody know what could be causing this?

    rafiamudasar
    Participant

    HI
    I want to use view function of bp resume page from buddypress home.php file which is located in my child theme folder.If there is any code ninja who can help me in this I will be really glad

    Thanks

    http://dev6.inserito.me/Birthbox/members/admin/

    Wordpress : 4.6.0
    buddypress: 2.6.1.1

    #258923
    shanebp
    Moderator

    Have you tried any of the methods available via google search?
    For example:

    How To Stop Search Engines From Indexing Specific Posts And Pages In WordPress

    phound1
    Participant

    Hello. We just recently installed buddypress onto our site. I am having trouble with new user registrations. Confirmation emails are not being sent after a new user registers and we did not have this problem before installing buddypress.

    I am using wordpress 4.6.1, woocommerce 2.4.6, wc vendors pro 1.3.6 , ninja forms 3.0.5, BP WC vendors 1.0.8, Buddypress 2.6.2.

    We are creating an ecommerce marketplace allowing mulitple vendors to set up their own shops and sell their products.

    Tried the buddypress email repair tool just a couple hours ago, no luck. I can only activate new signups manually and of course I would like activation emails to go through so new users can activate themselves and login.

    Would appreciate any help or advice. Thank you so much for your time!

    danbp
    Participant

    Hi @rezbiz,

    in brief, you want to add some status dependent custom link to the BuddyBar.

    I’ll ignore Kleo (premium theme) and Visual Composer (third party plugin).

    Following examples let you add an external link to a non BP page on almost any menus (except BP usermenu).

    How it works ?
    – create a test page and call it Book.
    – the page slug must be /book/
    – the link (tab/button) will be displayed to logged-in users only.

    I made also a snippet which add such a link to the WordPress Main Menu. This menu is the one you see in WP’s menu customizer by default. Depending the theme you use, you have always a main menu and X others. This can vary and it’s to you to find how it can/should work eventually. See theme documentation and WP Codex if you get in trouble with it.
    Note that it should work with all Twenty themes at least.

    Add the snippets to bp-custom.php and see the result. After that, read through the code and modify the page name/ID and slug to your need. Leave anything else untouched.

    
    // add Custom tab on site wide activity and members directory pages
    function tab_custom_link_to_page() {
    
    	if ( bp_is_activity_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
    
    		if ( !is_user_logged_in() )
    			return false;
    
    		// link to what you want
    		$link = bp_get_root_domain() . '/book';
    
    		echo'<li><a href="'. $link .'">My Book</a></li>'; 
    	}
      
    }
    add_action( 'bp_activity_type_tabs', 'tab_custom_link_to_page' ); // site wide activity page
    add_action( 'bp_members_directory_member_types', 'tab_custom_link_to_page' ); // members directory page
    
    // add Custom tab on Profile Nav
    function add_profiles_link_to_page(){
    
    	if ( bp_is_profile_component() || bp_is_user() ) {
    
    	if ( !is_user_logged_in() )
    		return false;
    
    	$link = bp_get_root_domain() . '/book/';
    
    	?>
    		<li><a href="<?php echo $link; ?>"><?php printf( 'My Book' ); ?></a></li>
    	<?php  
    	}
    }
    add_action( 'bp_member_options_nav', 'add_profiles_link_to_page' );
    
    // add Custom tab on Groups Nav
    function add_groups_link_to_page(){
    
    if( bp_is_active( 'groups' ) ) {
    
    	if ( !is_user_logged_in() )
    		return false;
    
    	$link = bp_get_root_domain() . '/';
    
    	bp_core_new_subnav_item( array(
    		'name'			=> 'My Book',
    		'slug'			=> 'book',
    		'parent_slug'		=> bp_get_current_group_slug(),
    		'parent_url'		=> $link,
    		'screen_function'	=> true, 
    		'position'		=> 40 ) );
    	}
    }
    add_action( 'bp_setup_nav', 'add_groups_link_to_page' );
    
    // add Custom tab on Groups Directory
    function add_groups_directory_link_to_page() {
    
    	if( bp_is_active( 'groups' ) ) {
    
    	if ( !is_user_logged_in() )
    		return false;
     
        if ( bp_is_current_action( 'custom' ) ) 
            return;
     
    	$link = bp_get_root_domain() . '/book';
    
        $button_args = array(
            'id'         => 'my-books',
            'component'  => 'groups',
            'link_text'  => 'My Book',
            'link_title' => 'My Book',
            'link_class' => 'my-books no-ajax',
            'link_href'  => $link,
            'wrapper'    => false,
            'block_self' => false,
        );  
       
        ?>
    		<li><?php echo bp_get_button( apply_filters( 'bp_get_group_custom_button', $button_args ) ); ?></a></li>
        <?php
    	}	
    }
    add_action( 'bp_groups_directory_group_filter', 'add_groups_directory_link_to_page' );
    
    // add Custom tab on WP Main Menu ( after Home, About, etc )
    function main_menu_custom_link_to_page( $menu ) { 
         
    	if ( !is_user_logged_in() )
    			return $menu;
    	else
     	// link to what you want
    	$link = bp_get_root_domain() . '/book';
    
    	$grouplink = '<li><a href="'. $link . '">My Book</a></li>';
    
    	$menu = $menu . $grouplink;
    	return $menu;
    }
    add_filter( 'wp_nav_menu_items', 'main_menu_custom_link_to_page' );

    Yes, it looks complicated, but it isn’t. Simply it’s not homogeneous ! 🙂

    #258909
    rafiamudasar
    Participant

    Hi
    I am using buddypress with extended fields. but I have noticed whenever i update information of fields whether from the dashboard or from front end it lands onto blank page when I go back to previous page changes are being made but its not refreshing properly. Any idea ?

    Wordpress : 4.6.0
    buddypress: 2.6.1.1

    #258908

    In reply to: User dashboard url

    MissMad
    Participant

    Hi all!

    Thanks for your answers. Actually, he /members/me/profile/dashboard works (I do have a dashboard that’s not the WordPress one but rather one I can edit with some of the info from Buddypress).

    Great help!

    #258903

    In reply to: Trouble uploading File

    jeremybivaud
    Participant

    There is no custom code.
    I just used the extra field , file. It s supposed to work.

    Profile field

    And on the front end, I got this when I display the uploaded file path :
    http://www.documentor.com.au/wordpress/wp-content/uploads/boardingPass-2016072807431691628792.pdf
    That file not exist on the server.
    I displayed error WP log message but no indication at all.

    Do you know where the upload file function is implemented in the core ?

    #258898
    Mwiinga
    Participant

    Hello,
    I have a challenge, and I need help.
    I have this plugin installed on my site, and its doing a great job.
    When a user is logged in, through a shortcode, “[bp_profile_url]” this plugin will display a link on a page, post or sidebar, to that respective user’s profile, making it easier for the user to view or edit their profile.

    but, I would like this tweaked alittle. Instead of displaying a raw link “http://example.com/user1/profile,&#8221; I would to display a styled up button like “View My Profile”

    How do I have this archived?

    Thank you.

    #258896
    danbp
    Participant

    Hi,

    that’s definetly a WordPress question ! Read more about this.

    #258881
    SunshineMagic
    Participant

    I have this issue too. I can’t believe that no one has responded to you in 4 months!??

    It’s clearly a buddypress issue too as it doesn’t work with the theme I am using nor does it work with the default wordpress theme and apparently while it used to work with your theme, after a reinstall, not anymore.

    So it’s definitely a buddypress issue but no one responds in 4 months?? How on earth are we to get what we need working if the response time is more then 4 months??

    Feeling concerned that buddypress was the wrong choice. This is my first issue and it’s a bad first experience! Unfortunately I put 2 months into building this site and I can’t go back now so it looks like I’m going to have broken pieces and likely have to dump buddypress and maybe even wordpress all together and build a custom PHP site asap, unless someone gets back to yoUs soon.

    I hope they do cause I’ve been having fun w/ WP and BP but functionality clearly comes before fun…

    #258874
    danbp
    Participant

    Hum, not really…
    Do you use this plugin ?

    #258870
    danbp
    Participant

    Hi @kyla123,

    if you use BuddyPress Login widget, you have a “Remember me” checkbox by default.

    If you added an extra page just to let members log in (?), read this WP documentation and check your customization.

    #258862
    rafiamudasar
    Participant

    Hi
    I am using bp resume page to have a dynamic cv for the user. What i want is to show view page content in the landing page of buddypress which is home.php . Is there any way i can achieve that? For now its show cv on clicking the link of resume. But i want to remove that and show it on landing page . My life is dependent on it . Helppp!!!!!!!

    http://dev6.inserito.me/Birthbox/members/admin/

    Wordpress : 4.6.0
    buddypress: 2.6.1.1

    #258855
    Venutius
    Moderator

    The nearest thing I know is https://wordpress.org/plugins/crowdmentions/ however this does not have an @all function, just friends or group members but it may help

    #258853
    postivamussar
    Participant

    Hi all

    Im very new to this WordPress and right now I need help with BuddyPress, since I cannot find anything comprehensible on the net.

    I am creating a dating website and what I want to do is:

    1. On the homepage, have a registration form for non users AND a log in section for members.
    See example like Facebook.com. It is important that there is space for images next to the registration form.

    2. New users can look around the site, but they cannot make contact with other members until they have validated their email account. Is it possible to show a notification/reminder on every page they visit?

    Im grateful for any help ( but please have patience with me, Im not used to computers! )

    BR, PositivaMussar

    #258851
    ngiderin
    Participant

    We are using:
    Wordpress 4.6.1
    Buddy Press 2.6.2
    Geo My WP 2.6.6.1
    Woocommerce 2.6.4
    Dokan 2.4.12

    #258850
    ngiderin
    Participant

    Hi,

    First of all we would have to say that we have very limited ability in modifying php code. All we have done was just trying to combine several wordpress plugin to achieve the result we are looking for our website http://www.ngiderin.com

    We are trying to build a multi-vendor marketplace website for highly mobile vendors;
    with the help of:
    a) Geo My WP plugin + Add ons (Global Maps, Exclude Members, Premium Settings)
    b) Buddypress plugin
    c) DOKAN Multi-Vendor Marketplace plugin

    What we are trying to accomplish are:
    1. A real time vendor’s position on the map.
    2. Shop display on click; in which we hope that by clicking a map marker (vendor’s map marker) the individual shop and product listing would be displayed.

    So far, we can only accomplish #1 (vendor’s position on the map):
    Showing our vendors position on Global Map based on their specific roles, by using Buddypress and Geo My WP plugins + add-ons simultaneously.

    We are now trying to accomplish #2, unfortunately:
    Clicking on the vendor’s map marker on the map would only show the vendor’s Buddypress profile without the shop or product listing; since apparently DOKAN & Buddypress plugins are not integrated.

    We would like to show the vendor’s profile and their shop/products altogether once the vendor’s map markers are clicked.

    Would using:
    a) Buddy Press plugin
    b) WC Vendors pro
    c) Buddy Press for WC Vendors (BP WC Vendors by themekraft)
    plus
    d) Geo My WP + Add-ons
    accomplish this? (showing the shop on profile info box when the map marker’s clicked and/or showing the shop on vendor’s buddypress profile)

    If no, is there any suggestion that you may advise us to accomplish showing both profile and shop, once the marker clicked?

    Are there anyone who can advise us on the possibilities?

    We are looking forward for your responses and advices. Any replies would be highly appreciated.

    Thank you

    #258823
    ckchaudhary
    Participant

    Hi Ninja!
    This is possbile, but will require a considerable amount of custom coding. You’ll need to have some code this for you, or you can do it yourself if you are comfortable with wordpress coding.

    To give you an outline:
    – hook into bp_core_general_settings_after_save action
    – check if user is trying to change his email address
    – check if its the first time user is trying to do so( using a flag in usermeta ). You probably want it for the time time only.
    – delete the usermeta pending_email_change
    – and update emailaddress for user

    Hope it helps.

Viewing 25 results - 5,726 through 5,750 (of 32,678 total)
Skip to toolbar