Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,501 through 8,525 (of 69,044 total)
  • Author
    Search Results
  • #262736
    Solomonsun
    Participant

    i just reinstalled buddypress now and found out that the pages (e.g activity, group, activate etc)that usually comes with it doesnt exist on my pages anymore (am just seeing the pages i created for myself)

    #262735
    Solomonsun
    Participant

    @djsteveb thanks for your time and prompt response. i have done everything you mentioned above, still no solution. Am evening trying to install buddypress again because i deleted the former, even though i have done this before.

    my browser just keep showing this

    The page isn’t redirecting properly

    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

    This problem can sometimes be caused by disabling or refusing to accept cookies.

    #262731
    djsteveb
    Participant

    @solomonsun – have you gone to:
    admin dashboard
    settings -> buddypress –
    then the tab near top: “pages”

    scroll down to registration and see which page is selected there? tried changing it and saving it, then change again and save again perhaps?

    Steve
    ps- this is not the netowrk superadmin dashboard, but the regular main admin dashboard if you are in multisite setup I think.

    #262726
    Luisa Oreglia
    Participant

    I solved it by acting directly on the plug-in code BuddyPress Custom Profile Menu and changing the position of the slug and the display for all user.

    But soon as I get the chance I’ll try with the custom code without using plugins (many would give more satisfaction!). Thanks!

    #262722
    djsteveb
    Participant

    @solomonsun
    – ” http://www.schoolhome.com.mg/” – comes up as server not found from where I am at.. so it does not seem that this url is valid / working.. if you go to that url it works somewhere? Is something on the web server locking it down where no one can access it but you.. or some other blocking system to prevent me or others from seeing your url?

    You might wan agive up on buddypress – for several reasons.. cuz it doesn’t get any easier – things are going to get harder as some point.

    you never posted what your htaccess file says in it.

    you never ” don’t say what happened “before”. Before what ?” – explained what you changed when it stopped working.

    sorry to hear it’s not working for you

    #262721
    Solomonsun
    Participant

    @danbp i dont understand please. the url http://www.schoolhome.com.mg/registration WAS what i was using to access my registration page before the issue arose.

    Maybe i should just give up on buddypress

    #262718
    danbp
    Participant

    Hi,

    not sure you need to use Softaculous to install bbpress. You can use the plugin installer shiped with WordPress or upload it manually via FTP.

    Seems you have to read the install documentation of bbPress first. And if you need help to use bbPress plugin, you have to ask on the right support forum. Here you’re on BuddyPress !

    #262704

    In reply to: Multisite issue

    danbp
    Participant

    Hi there !

    Avoid to add – URGENT help needed! to topic titles, it is the best way to not receive any help.

    You’re already under help when your topic is posted, so there is no need to ask twice. And this doesn’t bring you faster or more attention.

    The word Urgent is also banned, as urgency is already on the way. Not only for you but for ALL forum users.

    So as usual,

    The urgent is done, the indispensable is under way. For miracles, allow time.

    Please wait and read the codex. BuddyPress. WordPress.

    1)BuddyPress does not work on installations where you give WordPress its own directory.
    2) new users are always registered in the main site
    3) if you allow users to create their own blog, they will appear in the user list of that blog.
    4) multisite network means also that you use a wildcard on your host. Is it the case ?

    #262703
    Luisa Oreglia
    Participant

    I have a certain page “Swap” full of functions and associations to other pages formed by a plugin called “swap”. I must associate this page to BuddyPress menu.

    I tried BuddyPress Custom Profile menu’s plugin and made me properly create my swap page, but: 1) remains as the last position, and I would like the first; 2) I will only appear on my profile as I would like for all of the users.
    So not good.

    As an alternative, I tried to create through my code menu item (and I can put it in first position and for all users) with the code inside of swap page, just as there are php functions related to other non correctly display the content. Because my template is in the folder of my theme BuddyPress child, and to make it work well should I leave it in my folder of the swap plugin. (Ie wp-content / plugins / swap / front / views)

    My question is: how do I make the point to all there in that folder? it is feasible? Or is feasible to act on the plugin configuration BuddyPress Custom Profile Menu and resolve the position and visibility for all? thanks

    #262699
    Luisa Oreglia
    Participant

    Simple. I want to make functional code

    My actual code is:

    function bpfr_custom_profile_sub_nav() {
    	global $bp;
    	$parent_slug = 'activity';
    		
    	//Add subnav item 	 
    	bp_core_new_subnav_item( array( 
    	'name'            => __( 'Swap' ), 
    	'slug'            => 'swap', 
    	
    	'parent_url'      => $bp->displayed_user->domain . $parent_slug.'/', 
    
    	
    	'parent_slug'     => $parent_slug, 
    	
    	'screen_function' => 'swapluisa',
    	'position'        => 1,
    	
    	) );
    }
    add_action( 'bp_setup_nav', 'bpfr_custom_profile_sub_nav' );
    
    					
    	
    		
    
    function swapluisa() {
    	
    	add_action( 'bp_template_title', 'my_groups_page_function_to_show_screen_title' );
    	add_action( 'bp_template_content', 'my_groups_page_function_to_show_screen_content' );
    }
    
    add_action( 'bp_setup_nav', 'my_bp_nav_adder', 50 );
    function my_groups_page_function_to_show_screen_content() {
    	
    	return bp_get_template_part('members/single/swap');
    // (OR THIS???) return bp_get_template_part('wp-content/themes/betheme-child/buddypress/members/single');
    }
    
    function my_groups_page_function_to_show_screen_title() {
    	echo 'My new Page Title';
    }
    
    function luisa_register_template_location() {
       return 'members/single/';
    // (OR THIS????) return 'members/single/';wp-content/themes/betheme-child/buddypress/members/single'
    }
    
    function luisa_template_start() {
    
        if( function_exists( 'bp_register_template_stack' ) )
           bp_register_template_stack( 'luisa_register_template_location' );
    
    }
    add_action( 'bp_init', 'luisa_template_start' );
    

    but dont’work!

    I repeat, surely accidentally pointing to the folder, I can not figure out the exact solution. when i write “OR THIS??” i try but don’t work.

    where am I wrong? thanks

    #262698
    danbp
    Participant

    Please search the forum before asking questions! For ex. “allow html in description”

    Allow HTML Attributes in Profile Description Field

    https://buddypress.org/support/topic/allow-html-in-xprofile-field-description-boxes/

    #262696
    danbp
    Participant

    Now, it’s me who doesn’t understand ! What do you want to do finally ? What is not working for you ?

    Or try to get some help on the italian WP forum.

    Support Forums


    or get in touch with one of BP’s italian translator for help or at least some explanation
    Italian BP translators list

    #262688
    danbp
    Participant

    Read here:

    Template Overload from a Plugin

    Here a working example you can study to understand (and use to see how it works)

    function bpfr_post_profile_setup_nav() {
    global $bp;
    
    	$parent_slug = 'audio';
    	$child_slug = 'posts_sub';	
    	$post_count = count_user_posts(  bp_displayed_user_id(), array('post', 'post' ) );
    
    		//Add nav item with posts count
    		bp_core_new_nav_item( array(
    			'name' => __( 'Audios' ) .'<span>'.$post_count.'</span>',
    			'slug' => $parent_slug,
    			'screen_function' => 'bpfr_profile_post_screen',
    			'position' => 40,
    			'default_subnav_slug' => $child_slug 
    		) );
    		
    		//Add subnav item 	 
    		bp_core_new_subnav_item( array( 
    			'name' => __( 'My latest audios' ),
    			'slug' => $child_slug, 
    			'parent_url' => $bp->loggedin_user->domain . $parent_slug.'/', 
    			'parent_slug' => $parent_slug, 
    			'screen_function' => 'bpfr_profile_post_screen'
    		) );
    
    	}
    
    	function bpfr_profile_post_screen() {	
    		add_action( 'bp_template_content', 'bpfr_profile_post_screen_content' );
    		bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
    	}
    
    	function bpfr_profile_post_screen_content() {
    		do_action( 'my_profile_post' );
    	}
    
    add_action( 'bp_setup_nav', 'bpfr_post_profile_setup_nav' );

    And here a content test:

    function luisa_conteni() {
       echo 'Forza BuddyPress';
    }
    add_action( 'my_profile_post', 'luisa_conteni' );

    Add all snippets to bp-custom.php.

    The example use the default plugin template (/members/single/plugin.php) as generally there is no need to create a new template while on a profile (except if you need something very specific like a table or a an iframe).

    #262683
    Solomonsun
    Participant

    Thanks djsteveb for your prompt response.

    i have tried all that yet it isnt working.

    i use newspaper7 theme.

    i have deleted buddypress for like two times and reinstalled it but it doesnt seem like working.

    i dont know if the fault shuold be from the server, theme, wp4.7 or anything. am just fed up with it.

    i have tried opening the page with the following browsers: Chrome, Firefox and Opera still no result.

    what baffles me is that it was working perfectly before.

    #262681
    shanebp
    Moderator
    #262676
    Luisa Oreglia
    Participant

    sorry 🙁 i don’t know!!!
    I seem to do correctly, but does not work.
    I also for testing entered my files everywhere, but does not find it anywhere !!!

    In my web-site the URL is http://mysite.it/membri/testmember1/activity/swap/ but it says “We are sorry, but the page you are looking for does not exist.”

    I have my swap.php (into there’s only a echo command)’s file in wp-content/themes/child-theme/buddypress/members/single/
    and in bp-custom.php (that is in my plugin folder) I write

    
    
    function my_groups_page_function_to_show_screen_content() {
    	bp_get_template_part('members/single/swap');
    }
    function luisa_register_template_location() {
       return 'wp-content/themes/betheme-child/buddypress/members/single';
    }

    I try also to put the swap.php file into wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single but nothing is happen.

    where am I wrong? thanks

    #262675
    Henry Wright
    Moderator

    You can easily configure BuddyPress to use root profiles which will mean URLs look like example.com/username. Note though, there’d be no @ character in the URL.

    See the Advanced Configurations section here: https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/

    #262673
    danbp
    Participant

    Hi @luisa227,

    considering your questions, i would suggest you read attentively both WP and BP codex.

    child theme
    bp-custom

    bp-custom.php goes to wp-content/plugins/ directory, not into the (child)theme folder.

    such path members/single/swap is related to BP legacy by default.

    But as swap is a custom folder, that custom path means in fact wp-content/themes/child-theme/buddypress/members/single/swap.php, where /child-theme/buddypress/contains copies of all your customized legacy files and your own additionnal files you want to use.

    Hopefully reading the codex will help you to understand a little better how all this works together.

    danbp
    Participant

    It’s a known bbPress issue.

    Get more details here

    Non-members can see child forums in groups

    Closing this topic as duplicate of the above.

    #262671
    danbp
    Participant

    @christiankramer,

    in case you haven’t investigate about that issue, here’s the ticket on BP trac

    and the one on bbPress trac where you can/should post your own remarks as it is not a BuddyPress issue!

    As it has no answer yet, i recommend you to bump that ticket.

    #262669
    danbp
    Participant

    @robdnc,

    could it be that you use php 7.+, and/or bbPress, on your local install ?
    That issue was already reported past month. Please read that topic for details.

    #262668
    robdnc
    Participant

    Latest versions of Buddypress and WordPress

    #262663
    Luisa Oreglia
    Participant

    thanks but it don’t work, or better… I don’t know where is my template folder… I’m confused on the right folder… I inserted the code in my file bp-custom.php on the theme’s plugin folder.

    Where I have to create my own template? in my child theme? or under the buddypress ‘s plugin folder?? Or where?

    can you do me a practical example of how to enter the correct URL?
    You can also explain the function of the code you quoted?
    thank you

    #262649
    danbp
    Participant

    Hi,

    to deactivate a plugin you can use WP’s plugin manager page or to go directly to your files via FTP where you can remove the plugin from the directory wp-content/plugins/your-plugin/

    Those warnings are not obligatory in direct relation with BuddyPress. Why ? Because you’re the only one until today who mention such an issue. I activate and deactivate my BP many times a week and have never get such a warning.

    Try first to deactivate your theme in favor of a twenty theme and see if you continue to receive the messages. If still there, deactivate all your plugins but BP one by one until you find a culprit.

    #262644
    @mercime
    Participant

    > Buddypress registration page redirrecting to homepage

    @sholis
    You need to log out first.

Viewing 25 results - 8,501 through 8,525 (of 69,044 total)
Skip to toolbar