Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 31,601 through 31,625 (of 94,539 total)
  • Author
    Search Results
  • fatjay
    Participant

    after the update to Version 1.7.2 my buddypress is in english agian
    it was in german… what can i do to fix this ?

    #165531
    Hugo Ashmore
    Participant

    The file directories give you a good idea or are as good a ref as any, ones that can catch you out are /members/single/ where you need to remember that there are two nuisance files 🙂 plugins.php & settings.php which have their own full structure (are not template_parts) or that need to be considered.

    Henry
    Member

    I am looking for a list of all BuddyPress pages as i’m developing a custom theme and need to check i’ve covered every possible page.

    Anyone know if a list is available?

    #165528
    @mercime
    Participant

    Before the change I had the grey around the navigation of friends forums etc but that disappeared with the templates being disabled.

    Not quite sure what you mean. You lost all BP styles? What do you mean by “templates disabled”? BP components are rendered automagically via theme’s page.php file.

    #165527

    In reply to: BP-Default fonts

    @mercime
    Participant
    #165525
    alishoja
    Participant

    i have the same problem, please share your solution!
    thanks

    #165524
    unknownterritory20
    Participant

    Ok. I played around with it until I found out the issue, but I don’t know how to solve it.

    In groups > forum > topics > My New Topic … when I inspect the element for the href for the modify link (and others) are as follows…

    href=”http://mysite.com/groups/Sailing/forum/topic/edit?_wpnonce=xxx”. This gives me a blank page, or bbpress edit form.

    If I slightly modify the url to href=”http://mysite.com/groups/Sailing/forum/topic/my-new topic/edit?_wpnonce=xxx” then I see things exactly how they are supposed to be. So the modify link was taking me to the wrong page.

    I have no idea how to modify the url to insert the topic title. This would completely resolve my issue

    The modify link is embedded in the bp_the_topic_admin_links function.

    function bp_the_topic_admin_links( $args = '' ) {
    	echo bp_get_the_topic_admin_links( $args );
    }
    	function bp_get_the_topic_admin_links( $args = '' ) {
    		global $forum_template;
    
    		$defaults = array(
    			'seperator' => '|'
    		);
    
    		$r = wp_parse_args( $args, $defaults );
    		extract( $r, EXTR_SKIP );
    
    		$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit', 'bp_forums_edit_topic' ) . '">' . __( 'Edit Topic', 'buddypress' ) . '</a>';
    
    		if ( bp_is_item_admin() || bp_is_item_mod() || bp_current_user_can( 'bp_moderate' ) ) {
    			if ( 0 == (int) $forum_template->topic->topic_sticky )
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'stick', 'bp_forums_stick_topic' ) . '">' . __( 'Sticky Topic', 'buddypress' ) . '</a>';
    			else
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'unstick', 'bp_forums_unstick_topic' ) . '">' . __( 'Un-stick Topic', 'buddypress' ) . '</a>';
    
    			if ( 0 == (int) $forum_template->topic->topic_open )
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'open', 'bp_forums_open_topic' ) . '">' . __( 'Open Topic', 'buddypress' ) . '</a>';
    			else
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'close', 'bp_forums_close_topic' ) . '">' . __( 'Close Topic', 'buddypress' ) . '</a>';
    
    			$links[] = '<a class="confirm" id="topic-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete', 'bp_forums_delete_topic' ) . '">' . __( 'Delete Topic', 'buddypress' ) . '</a>';
    		}
    
    		return implode( ' ' . $seperator . ' ', (array) $links );
    	}
    

    ALSO, is there a way to disable bbpress user profiles, completely? I only want bp profiles active.

    #165523
    @mercime
    Participant

    @thecrow72 basically, BuddyPress uses the WP email functions for its registration process. Deactivate BuddyPress, bbPress and other plugins then check your WP registration/activation emails, etc. If it’s not working, then please resolve your issue at https://wordpress.org/support/forum/how-to-and-troubleshooting

    Before activating BuddyPress, read https://codex.buddypress.org/user/before-installing/

    Good luck!

    #165522
    @mercime
    Participant

    @sarathbabu_k can’t even guess what’s up with your installation. Need more information like WP/BP versions? Theme used? Plugins installed? New installation or upgraded from previous BP/WP version? Did you check if links in posts (blog posts or status updates or forum posts?) were working before BuddyPress was installed or not?

    #165519
    @mercime
    Participant

    @junithorn BP 1.7 theme compatibility -> https://codex.buddypress.org/developer/theme-development/a-quick-look-at-1-7-theme-compatibility/ see “Overloading Template Compatibility theme files”

    #165518

    In reply to: Display Issues

    @mercime
    Participant

    @bkypes starting from scratch – might I suggest that before installing pagelines theme and other plugins, test BuddyPress with Twenty Twelve theme – registration, group creation, etc.? That way, you can ID issues to be resolved if something goes wrong when pagelines theme/plugin are activated and you’ll be able to report specifics to pagelines theme developers.

    #165517
    @mercime
    Participant

    the plugin is “breaking” the layout because its using different content tags

    @millo it’s more like your theme is using proprietary templating system. BuddyPress is compatible with nearly all of the WordPress themes in the market.

    BuddyPress uses the page.php file to render BP components. Open up your theme’s page.php file and Save As > buddypress.php and ask your theme developer to change the respective proprietary tags to show the_title and the_content in source.

    After that’s done, upload buddypress.php file into your theme folder in server.

    #165514

    In reply to: SignUp Error

    @mercime
    Participant

    @galavrah deactivate plugins batch by batch except BuddyPress to check which plugin is causing the issue.

    #165513

    In reply to: Display Issues

    bkypes
    Participant

    @mercime, I did download and install the integration but that didn’t seem to make any difference with the issues that I’ve been having. I just deleted the files from my site and I’m going to have a guy who helps us with our coding remove any traces of bbPress or BuddyPress from the myPHPadmin file and the reinstall everything.

    #165512

    In reply to: Display Issues

    @mercime
    Participant

    @bkypes I see that you’re using the pagelines theme. http://www.pagelines.com/store/plugins/pagelines-buddypress/

    #165511
    @mercime
    Participant
    #165509
    @mercime
    Participant

    After the upgrade to 1.7.2, it is broken. It gives me a “page not found” error. I have everything else about BuddyPress working.

    @mbagnall since you did not mention having a multisite installation, I will assume that you created a static front page named “home” or whatever, created a new blank Page named “Blog” for your blog posts and went to Settings > Reading to designate the “home” page for you home page and “Blog” for your blog pages. That’s the scenario where I can see you have /blog/ in the url of your blog posts. Check your Settings > Reading to make sure that the pages selected in Static Front page and blog posts are still the same.

    #165506
    @mercime
    Participant

    @adamfratino Thank you for posting back about the cause of the bbPress avatar issue. Please post at plugin’s support forums about the bbPress avatars issue when BuddyPress and Social Login are activated. https://wordpress.org/support/plugin/oa-social-login

    #165505
    bedhead1971
    Participant

    Yes followed instructions from the link..

    I created a buddypress.php with the code above as the width of Buddypress was a bit narrow and I didn’t need sidebars. I used bp.php in laziness on here. Apologies..

    Before the change I had the grey around the navigation of friends forums etc but that disappeared with the templates being disabled.

    I have no compatibility issue, just wish to try and pretty it up again.

    #165501
    @mercime
    Participant

    @bedhead1971 Please clarify. The image you posted is that of sven with the BP Default theme while the issue is theme compat with Colorway theme. So let’s take it from the top.

    I just upgraded to 1.7 and did the templates plugin disable and removal of the 6 files in theme.

    So you followed instructions at https://codex.buddypress.org/bp-17-upgrading-template-packed-themes/ ? It should show a two column layout for BP pages as your theme’s page.php has sidebar in template.

    This is my bp.php I created from the themes fullwidth template as it suggested.

    First, you must name the file buddypress.php or community.php (not bp.php), remove ” Template Name: Fullwidth Template” and upload the buddypress.php file into wp-content/themes/colorway folder in server.

    #165500

    In reply to: email

    @mercime
    Participant
    #165499
    @mercime
    Participant

    BuddyPress does not block any styles hardcoded or enqueued by your theme. I don’t know why you cannot post in yootheme’s support forums for assistance if you’ve purchased your theme from them.

    #165498
    adamfratino
    Participant

    Wordpress 3.5.1, Buddypress 1.7.2, using Bonpress free theme from WPZOOM. I just realized there might be a conflict with WordPress Social Login, which is pulling avatar data from Facebook/Twitter when registering new members, or just when logging them back in with the social options.

    When I shut off WordPress Social Login, the Buddypress avatars show up in BBPress. When I turn social login back on, the original avatars from when the user signed up take over the BBPress avatars.

    @mercime
    Participant

    @unknownterritory20 you already have posted about the same issue at https://buddypress.org/support/topic/cant-edit-group-forum-topics/

    Closing this topic

    #165496
    @mercime
    Participant
Viewing 25 results - 31,601 through 31,625 (of 94,539 total)
Skip to toolbar