Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,376 through 8,400 (of 68,915 total)
  • Author
    Search Results
  • #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.

    #262640
    djsteveb
    Participant

    @solojuve1897

    maybe the info / replies on this page would be helpful-

    Hi I have a question about the title with buddypress page


    (?)

    #262639
    djsteveb
    Participant

    disclaimer, I am not a bp dev, just a long time user, and my knowledge is far from complete.

    1 -each Profile / Member offered a separate gallery or media library?
    This was a problem from the very beginning, and perhaps the biggest problem for bp aside from lousy filter options for the activity stream. Initially it was handled by the ‘bp-album’ plugin – which was later abandoned amidst some drama – rtmedia is kind of the standard for handling this now – but it’s bloated, important functions have gotten expensive, and it’s not well supported in core or themes – it’s terrible at keeping things separated like comments on media and galleries –
    There is a new bp media like experimental thing that looks promising, and some attempts at making placeholders for bp media have been made in the past year, new hooks for bp attachment, etc. Some code has appeared on github showing a great start at possible core bp media handling – but not enough devs on that.

    if you must have media with bp I suggest getting the premium “press permit core” and ask for support in limiting what other users can see in the media library. God forbid you have a problem with users trolling other users – and you have media – as you can purchase the buddyblock plugin which will prevent most abuse user to user, but it does not hook into the separate commenting system that rt-media creates. I strongly encourage you to try the other media plugin and hope that works for what you need before getting stuck with rtmedia and no way to export it’s data to something else.

    2 a cap on how many Mb’s a user is allowed to upload for the total amount of media space
    Wordpress has a setting for this when using multi-site setup – but I think it affects only what gets posted to the user blogs aka sites. I think rtmedia has an optional purchase-able plugin for this if you use their system to allow for the media uploads – not sure if the other competing system has such functionality.

    This is a problem, and a solution should include a way for admins to look at users who have uploaded media, not just by user and space taken up, but also by date. There should be more control for deleting content with various parameters as well. I pity you if you find one day a user has uploaded 100s of photos that violate… terms.. and you have to delete each one at a time. If you find a way to handle this better with rtmedia I’d love for you to share it.

    Currently I have tons of photos and videos that users have uploaded and no good way to look at or remove, aside from going profile to profile and manually checking what shows up there. A better way may exist, I have not found it yet.

    3 – Why do all members have to be Authors in order to be able to Post because this was the only method that worked for me.
    When you say post, that sounds like posting a post to a blog – either their own multi-site blog, or perhaps to a group blog. This is how worpdress is and is great for controlling things with blogs. If you mean a user needs to be an author in order to add to thier “activity stream” aka wall or profile or whatever, I do not think they need to be a blog author in order to do so… “What’s new” activity posts work fine without being a blog author.

    4 – BuddyPress and BB Press how should I set up my .htaccess file – this should be documented somewhere around here. Wish I could tell you, I don’t have any bb press running with any buddypress installs any longer.

    If you don’t want robots to crawl your site, search for forums for making buddypress private – you’ll want to lock down your site with a password required to view anything – if you really want to block bots.. if it’s just the nicer bots you are referring to, like googlebot, yahoo and bigbots – then you can setup a robots.txt with something like

    robots *
    disallow /
    allow index.php

    but I don’t think having the main engines index your index.php is really helpful with most WP themes.. you’d probably be better with “allow /about-us/” for example.. as most wp sites I’ve worked with dont have a good ol’ index.html

    your experiences may vary..

    With BP you eaither have lots of time to code, or you take everything as is for the most part. Auttomatic has not funded bp well since the first dev Andy left – it’s basically abandoned like unwanted bastard child that gets (almost) no support – and has been for years. Instead depending mainly on volunteer contributors that obviously have to do other things like earn a living and pay bills.

    Some great people do amazing things making bp better – I appreciate those that are making the documentation better and fighting the good fight of dealing with all the wp core changes and how they affect bp when it updates – and other work to make it better. However what is seemingly most important to many webmasters and end users may not be on the roadmap for future releases – and finding developers to mod up BP is not as easy as one may hope either.

    custom fixes today may well be broken with future updates, and no one has thought about the laws in Europe for privacy and users being able to export data you have them.. all kinds of things..

    consider bp a huge mix of free code that is very experimental, and in my humble opinion should be removed from the wp plugin repo if automattic is not going to fund it properly – it certainly should not be on the first page view of plugins – anyone installing it likely has no idea what can of worms they are getting into.

    If you are thinking of the future and how you may need to moderate user’s uploads and such, I strongly encourage you to test out the mediapress alternative – but realize in order to get core functionality with bp right now you will have to add on a walled garden from one place or another.. without any import / export options – before you invest too much of your time and your user’s pictures and videos into silos you may never escape, you right as well look into and test out peepso (https://www.peepso.com )- as they seem to have more skin in the game and have made at least some import / export things if I remember correctly.

    again, I am not a bp dev. also I have not used mediapress yet – although I would with a fresh install – rtmedia has not met my expectations, although not a total fail, it is only 60% of what it should be. I have not used peepso yet either. Just a guy that’s been running a few bp installs for a few years, and my knowledge is fuzzy at best. surely @ma.tt, others thoughts, and your mileage may vary.

Viewing 25 results - 8,376 through 8,400 (of 68,915 total)
Skip to toolbar