Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,401 through 6,425 (of 22,683 total)
  • Author
    Search Results
  • #234529
    r-a-y
    Keymaster

    danbp – You’re right. My technique will work, but would get overwritten when translations are automatically updated.

    I just checked and WordPress saves automatic translations to /wp-content/languages/plugins/ so we should be safe if custom BP translation files are saved to /wp-content/languages/buddypress or /wp-content/languages.

    WordPress might say that there is a new BuddyPress translation, but if you’re using the custom method, then you can ignore the notice as BuddyPress will keep using the custom translation file.

    To tell WordPress to stop fetching automatic translations for BuddyPress, see:
    https://buddypress.org/support/topic/disable-automatic-translation-updates/#post-234528

    #234523
    r-a-y
    Keymaster
    #234497
    djsteveb
    Participant

    @jessiewordpress
    I would assume they are listed as pending because they did not get click an activation in email yes.

    Now does that mean that your server sent an email correctly and they actually recieved the email? Who knows.. sometimes my bp emails get auto-blackholed for some email services and users will never get an email from my bp site if they have say “gmail” or yahoo or something… (there are different methods for sending email via wordpress, some are less “flagged-as-spam-automatically” than others.. sometimes users do get the emails but they end up in a junk folder..

    sometimes it’s spammers trying to setup a fake account and they never will click on activate…

    if you start to get a lot of these, you might want to look into how your wp install is sending emails, what the headers look like, and see if you can adjust with something like a “wp mail via smtp” plugin or something.. and if you need to manage a bunch of pending users you might want to see if https://wordpress.org/plugins/unconfirmed/ is working with current bp version..

    random thoughts, hope they help.

    #234494
    @mercime
    Participant

    @jessiewordpress in a way yes. Either because the activation email got caught in their spam folder, or they have not clicked on the activation link, or they did click on the activation link but did not log in yet.

    #234476
    Henry Wright
    Moderator

    Do you know where that text comes from? I can’t find it anywhere in BuddyPress or in WordPress cores.

    #234462
    djsteveb
    Participant

    @jessiewordpress – might want to check out either “good question” (change default question / answers!) – or ‘buddypress humanity’ as well. They have made a huge impact on the spam registration issues we used to deal with.

    #234448
    Henry Wright
    Moderator

    Hi @jessiewordpress

    Personally, I’ve found the honeypot approach to be quite effective. Try Justin Tadlock’s Registration Honeypot plugin.

    #234430
    r-a-y
    Keymaster

    The issue that the OP is referring to is member pagination.

    I can confirm that this is fixed in BP 2.2.0.

    danbp’s issue is related to pagination on notification pages:
    https://buddypress.trac.wordpress.org/ticket/6205

    #234414
    r-a-y
    Keymaster

    @hnla – It’s related to this changeset:
    https://buddypress.trac.wordpress.org/changeset/9322

    This issue was also noted on the following ticket about buddypress.org:
    https://buddypress.trac.wordpress.org/ticket/6108#comment:2

    In BP 2.2, I tested is_singular() on BP pages and it returns true. bp_is_user() also works as expected.

    If there are any other issues outside of is_page(), please let me know specifically what the issues are, as I do want to address these.

    #234388

    In reply to: Custom Profile menu

    barodscheff
    Participant

    Thank you but your solution is outdated. I’ve found it also while searching.
    And thats the big problem with buddypress. There was an update about one year ago and everything changed. So nearly all common customizations do not work any more.

    Thats the reason why the plugin ‘buddypress custom profile menu’ also doesn’t function anymore.

    Fortunately I found the solution. It looks like this:

    function profile_new_nav_item() {
    
    		global $bp;
    
    		bp_core_new_nav_item(
    			array(
    				'name'                => 'Contact Athlete',
    				'slug'                => 'contact_athlete',
    				'default_subnav_slug' => 'extra_sub_tab',
    				'position'            => 160,
    				'screen_function'     => 'view_manage_tab_main'
    			)
    		);
    	}
    
    	add_action( 'bp_setup_nav', 'profile_new_nav_item', 10 );
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	function view_manage_tab_main() {
    		add_action( 'bp_template_content', 'bp_template_content_main_function' );
    		bp_core_load_template( 'template_content' );
    	}
    
    	function bp_template_content_main_function() {
    		if ( ! is_user_logged_in() ) {
    			wp_login_form( array( 'echo' => true ) );
    		}
    	}
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	function profile_new_subnav_item() {
    		
    		global $bp;
    
    		bp_core_new_subnav_item( 
    			array(
    				'name'            => 'Extra Sub Tab',
    				'slug'            => 'extra_sub_tab',
    				'parent_url'      => $bp->loggedin_user->domain . $bp->bp_nav[ 'contact_athlete' ][ 'slug' ] . '/',
    				'parent_slug'     => $bp->bp_nav[ 'contact_athlete' ][ 'slug' ],
    				'position'        => 10,
    				'screen_function' => 'view_manage_sub_tab_main'
    			) 
    		);
    	}
    	
    	// = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
    
    	add_action( 'bp_setup_nav', 'profile_new_subnav_item', 10 );
    
    	function view_manage_sub_tab_main() {
    		add_action( 'bp_template_content', 'bp_template_content_sub_function' );
    		bp_core_load_template( 'template_content' );
    	}
    
    	function bp_template_content_sub_function() {
    		if ( is_user_logged_in() ) {
    			bp_get_template_part('my-contact-form');
    		} else {
    			wp_login_form( array( 'echo' => true ) );
    		}
    	}

    I hope it helps anyone.

    Finally I’d like to say that I have never seen such a bad documentation in development as in buddypress. I know buddypress is free but WordPress is free too and they have a great doc.

    #234375
    Mathieu Viet
    Moderator

    Very strange.

    Have you tried to deactivate all plugins except BuddyPress to see if that wasn’t a problem with another plugin ?

    Have you tried to activate a WordPress default theme to see if it wasn’t a problem with the active theme ?

    Do you have custom function in bp-custom.php, if so try to remove them temporarly.

    If all of the above is not changing anything to your trouble, if you deactivate BuddyPress is the problem still there (you can actually begin by this step, if you prefer) ?

    #234357
    jessiewordpress
    Participant

    I mean the login page looks like WordPress. Not the registration page. That looks great ๐Ÿ™‚

    danbp
    Participant

    hi @jessiewordpress,

    do you use a cache ? If yes, clear it.

    #234351
    jessiewordpress
    Participant

    Thank you for that plugin! I’ll use that for now ๐Ÿ™‚

    What would be great is a plugin that helps with that AND editing the activation email AND changing the register/login page to not look like WordPress.

    For instance, this is a wordpress website and has this register/login page: https://www.ziibra.com/signup/

    Any suggestions for a workable plugin that accomplishes all of this?

    #234330
    disha76
    Participant

    Mediapress does not work with multisite and when multi blog mode is enabled – even using the updated version. I have tested with Multisite (non subdomain – define(‘SUBDOMAIN_INSTALL’, false);)

    Rtmedia works smoothly without any problem, only thing is that the activity stream entries look ugly due to centrally placed thumbnails in a column.

    The p2 theme has a form that can directly add media or albums from user’s wordpress core media but there is no plugin to plug this into buddypress in a responsive theme. Sad!

    #234319
    r-a-y
    Keymaster

    I would also recommend turning debug messages off in a production environment.

    Set WP_DEBUG to false in wp-config.php:
    https://codex.wordpress.org/WP_DEBUG

    Debug notices should only be turned on in a dev environment.

    #234315
    r-a-y
    Keymaster

    In BuddyPress 2.2.0, we set all BP pages to page ID of zero.

    This showcases the “is_page( 'ANYSLUG' ) returning true” bug in WordPress when the page ID is zero:
    https://core.trac.wordpress.org/ticket/24674

    I would recommend applying this simple one-word patch to WP core temporarily:
    https://core.trac.wordpress.org/attachment/ticket/24674/24674.2.diff

    Or you can use is_buddypress() to test if you’re on a BP page as well.

    #234309
    theboc
    Participant

    1. Which version of WordPress are you running? 4.1

    2. Did you install WordPress as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? NO

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. YES

    6. Which version of BP are you running? 2.2.0

    7. Did you upgraded from a previous version of BP? If so, from which version? NO fresh install

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? YES; akismet, contact form 7, hello dolly, instagramy, taqyeem, ” ” add on, ” ” predefined Criteria, and woocommerce. I deactivated all plugins except for buddy press and the buddypress pages still are not displayed. when i go to the url domain.com/members

    9. Are you using the standard BuddyPress themes or customized themes? Sahifa 5.0+ wordpress theme which is compatible any help is appreciated.

    10. Have you modified the core files in any way? NO

    11. Do you have any custom functions in bp-custom.php? NO

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? N/A

    13. Please provide a list of any errors in your serverโ€™s log files. N/A

    14. Which company provides your hosting? arvixe

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache

    #234307
    srucwebmaster
    Participant

    I also encountered the issue reported by @asitha above and have opened a new ticket on trac as I couldn’t find an ticket referring to this.

    #234306
    bp-help
    Participant

    @saish_neugi
    This tutorial might help to get you going in the right direction.

    How to Build a Facebook-Style Members-Only WordPress-BuddyPress Site

    #234300
    chatty24
    Participant

    @jessiewordpress

    If the code is not working for you then you can try the following plugin

    WP Change Default Email —-> https://wordpress.org/plugins/wp-change-default-email/

    Hope it helps ๐Ÿ˜€

    #234299
    shanebp
    Moderator

    The BBP_Forums_Group_Extension issue is known and there is a fix.
    See this ticket and link to patch.

    #234293
    Toby
    Participant

    Thanks @Hugo. Appreciate your time on this. I’ll have a look and see what I can do.

    I’m trying hard not to think about the original code at the moment. I took over the site in May last year and knew php/mysql but had very limited experience with WordPress and hadn’t even heard of Buddypress. It’s been a steep learning curve, and I’ve managed to work out a lot and fix a bunch of stuff and even make some timid suggestions here, but a thorough re-factoring of the code is a step too far both time and probably skill wise at this point unfortunately.

    #234280
    Hugo Ashmore
    Participant

    @tobyhawkins
    Not sure how you’re running your checks, where or to what end, but I wouldn’t use is_page() where BP is concerned, but it sort of depends on what exactly your theme is trying to do, BP has template tags such as bp_current_component() & bp_current_action() that can provide very specific checks for screens.

    This ticket and the links to a a sister ticket might help in understanding how is_page() is working and the changes effected a while back, of course this doesn’t rule out the possibility there is something else wrong that needs further investigation.

    https://buddypress.trac.wordpress.org/ticket/5307

    Having said all that is_page() will return true, is_page(‘blah-blah’) will return false if for example your running that on the members directory screen, bp_current_component() will return ‘members’

    What templates are you working with, theme compatibility?

    #234251
    shanebp
    Moderator

    Have you tried BP Profile Search ?

Viewing 25 results - 6,401 through 6,425 (of 22,683 total)
Skip to toolbar