Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,026 through 16,050 (of 69,016 total)
  • Author
    Search Results
  • #187042
    danbp
    Participant

    A last try please. Remove www from the site url in the site settings.

    See here how to change it and see if yo get the button.

    I opened a ticket for this.
    Please follow it, as you will probably be invited to give some more details to solve it.
    Thxs.

    Login credentials for the Trac are the same as on this forum.

    #187041
    danbp
    Participant

    Would it matter that I have my group_order (i.e., the order in which my field groups are displayed) arranged in a specific order?

    No !
    Anyway, i was wrong myself. Apologize. My snippet hides groups from viewing, not from editing. But you can get another trick on this post. And this one works realy. 😉

    #187040
    1a-spielwiese
    Participant

    And seemling there were already in former times similar problems – without solution:

    https://buddypress.org/support/topic/complete-sign-up-button-not-working-on-register-page/

    and

    https://buddypress.org/support/topic/registration-button-invisible/

    Yesterday I found other descriptions of similar problems – as well without solution.

    #187039
    1a-spielwiese
    Participant

    “remove all xprofile fields to get only the default name field.”

    When I posted the comment:

    https://buddypress.org/support/topic/no-button-for-finishing-registration/#post-187032

    non xprofile field was created.

    “Also download a fresh copy of wordpress and upload the twenty twelve theme folder to your site. Maybe your’s is corrupted somewhere.”

    That’s really unlikely, because both copies worked without problems, before I installed the BuddyPress-Plugin. And I tried never to make any major change of twenty twelve theme or WordPress itself.

    #187031
    danbp
    Participant

    Sometimes after a beer or two, things goes different ! 😀

    Gibt es ein aktuelles umfassendes deutsches Handbuch für BuddyPress?

    Keine ahnung ! Hast du schon hier gefragt ? http://forum.wpde.org/buddypress/
    Vielleicht auch hier: https://plus.google.com/communities/109252196176086284868
    oder bei David: http://deckerweb.de/

    #187030
    danbp
    Participant

    FYI:
    The original file is in buddypress/bp-xprofile/bp-xprofile-classes.php (BP 2.0.2)
    The patched code is here.
    The part you mention is for developpers unit test. You have nothing to do with that. 😉

    Here you can download a copy of the patched file I use. You put it here:
    wp-content/plugins/buddypress/bp-xprofile/
    And here the code to add into bp-custom.php

    function bpfr_hide_profile_field_group( $retval ) {
    	// hide profile group to members when on profile edit
    	if( is_user_logged_in() && bp_is_profile_edit() ) {
               // exlude groups, separated by comma
    		$retval['exclude_groups'] = '6';          		
    	} 
    	return $retval;	
    }
    add_filter( 'bp_after_has_profile_parse_args', 'bpfr_hide_profile_field_group' );
    #187029
    1a-spielwiese
    Participant

    I installed WordPress. Then I activated the MultiSite-Functionality.

    Within that process the htaccess was mentioned. Because it didn’t exist, I created such file – with the rules, which are mentioned for activating the MultiSite Version.

    Finally I uploaded the htaccess and the modfied wp-config.php; and I contacted my provider regarding the Wildcard (and regarding deleting the www. prefix).

    All this I did on Thursday, and my provider answered on Friday.

    “Don’t forget that you’re on a MS. This means that you have 2 (zwei) dashboards.”

    Yes, I have two.

    “And that BuddyPress should be installed on the network.”

    I did so.

    “IMHO the easiest solution is – if the wildcard exist now – to remove the wp-config file from your site via FTP and to restart the installation process.”

    Okay, I will try this.

    #187028
    1a-spielwiese
    Participant

    “Ich glaube echt dass bevor du alles umbaust, das du heftig über BP lesen (und lernen) solltest!”

    Gibt es ein aktuelles umfassendes deutsches Handbuch für BuddyPress? – Ich hatte gestern beim Suchen keines gefunden.

    “Hast Du überhaupt BuddyPress instaliert ? :d”

    I found the file at the mentioned place. I don’t know, why I didn’t find it before.

    shanebp
    Moderator

    Then in your custom handler, adapt the code in bp_blogs_record_comment or write your own using bp_activity_add

    bp_activity_add()

    #187024
    danbp
    Participant

    We are on the way to determine what’s happening ! Be patient ! 😉
    You said you installed your site before the wildcard was setted.
    So i presume you installed your wordpress before too !

    Normally during the install, a htaccess file is generated. The problem is that a MS htacces and a single htaccess file doesn’t contain the same rules. And same remark for the wp-config file.

    IMHO the easiest solution is – if the wildcard exist now – to remove the wp-config file from your site via FTP and to restart the installation process.
    No need to remove plugins and themes. Simply rename the plugin folder to xxx-plugins and they all will be deactivated.
    Once re-install successfully finished, you rename the plugin folder and you reactivate them one by one from the admin dashboard > plugins.

    Don’t forget that you’re on a MS. This means that you have 2 (zwei) dashboards. One for the main site and one for the Network. And that BuddyPress should be installed on the network.

    #187019
    danbp
    Participant

    Unfortunately I can’t find neither the mentioned file nor any members folder even.

    Oups ! Was ist denn hier los ? Hast Du überhaupt BuddyPress instaliert ? :d

    wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

    To modify this file, you make a copy of it and put it into your child-theme
    /your-child-theme/buddypress/members/members-loop.php

    Ich glaube echt dass bevor du alles umbaust, das du heftig über BP lesen (und lernen) solltest !

    Template Hierarchy

    Theme Compatibility & Template Files

    wspencer
    Participant

    I’m not using a purchased theme. It’s a custom WP theme I created. There is also no BuddyPress theme, so it’s using bp-default. I only use BuddyPress to set up some core features I was looking to introduce. Here is the code from my custom comment editor. Please note that all data from $_POST checks out and is passing properly to the function (the variables $comment_ID and $comment_content are populated via the $_POST object. The wp_update_comment() function returns 1, which means it was successful.

    $commentarr = array();
     $commentarr['comment_ID'] = $comment_ID;
     $commentarr['comment_content'] = $commentContent;
     $update_success = wp_update_comment($commentarr);
    
     if ($update_success == 1) {
         $comment = get_comment($comment_ID);
    
         $article_link = get_permalink($comment->comment_post_ID);
    
         wp_redirect( $article_link );
      }
    
      else {
         $commentError = 'Something went wrong while updating your comment.';
         $hasError = true;
      }

    Then digging into the core, here’s where wp_update_comment() function is called….

    function wp_update_comment($commentarr) {
    ...
    	do_action('edit_comment', $comment_ID);
    ...
    }

    I tested this entire function and everything works fine except for do_action(‘edit_comment’, $comment_ID), which of course is only a hook for other plugins, etc to attach to. If I commented out the do_action, my comments are updated properly.

    So then I started turning off all plugins and trying again. Turns out it was BuddyPress causing the issue. After sorting through the BP code, I found that in the file bp-blogs/bp-blogs-functions.php, the function that is added to the ‘edit_comment’ hook is called bp_blogs_record_comment(), which is found around line 542. This function has some BP specific functions being called within it, which I’m not familiar with. At the end of the day, I’ve found that if I comment out the action hook in the last line, the comment editing works 100%. Here’s the code from bp_blogs_record_comment()

    function bp_blogs_record_comment( $comment_id, $is_approved = true ) {
    ...
    }
    add_action( 'comment_post', 'bp_blogs_record_comment', 10, 2 );
    //add_action( 'edit_comment', 'bp_blogs_record_comment', 10    );
    #187012
    danbp
    Participant
    #187010
    danbp
    Participant

    Both URL’s goes to error pages.
    So i’m affraid that you have to check your whole installation from the begin, first on your host (by reading his documentation) and after that your sites.

    To do that, you first need to ensure that your domain has a wildcard if you want to use subdomains.
    Then follow WP network install instruction and re-read BP install.

    https://codex.wordpress.org/Create_A_Network

    Configure BuddyPress

    danbp
    Participant

    Hi @thetinus,

    first of, two advice:
    http://www.wpbeginner.com/beginners-guide/why-you-should-never-upload-a-video-to-wordpress/
    http://support.hostgator.com/articles/specialized-help/technical/wordpress/why-videos-should-never-be-uploaded-to-wordpress

    To your question a) & b)
    yes you can code a custom (user) profile page. And yes you can use a player on it.
    But all depends of the number of videos attributed to each user, how many user will use this, the config of your server and of course your personnal knowledge about templating BP and php coding.

    Also, embeding hosted videos on profiles from official WP providers is very very easy – and powerfull. Doing the same from your own server is a bit more delicate to handle.
    https://codex.wordpress.org/Embeds

    Codex is your friend.

    BuddyPress Theme Development

    BuddyPress Plugin Development

    If you have questions, please ask only one by topic and try to be very specific and detailed.
    what you want to do
    what you already did – give example or pastebin your code
    and what you think should work and doesn’t.

    thank you !

    #186991
    danbp
    Participant

    What is the current address of your plugin?

    Doesn’t exist anymore !
    https://buddypress.org/support/topic/what-happened-to-these-buddypress-plugins/#post-163698

    Customizing labels, see here:

    Customizing Labels, Messages, and URLs

    As this topic is over one year old, and the initial question resolved, i close the tread.

    #186990
    danbp
    Participant

    Should i change template to deactivate this plugin?

    Yes, try this first. then activate 2013 theme.
    Deactivate also all plugins except BP and reactivate them one by one to find the culprit. If everything goes well with the plugins, you reactivate your theme.

    If you used bp-custom for some changes, remove the file while testing.
    Also in your theme, if you tweaked functions.php, remove it and replace it with the original functions file.

    Same recommendation if you use a child-theme. Remove it completely during your test.

    But before deinstalling definetly BuddyPress, i would take a moment to see what happens with my install.

    https://codex.wordpress.org/Debugging_in_WordPress

    #186965
    danbp
    Participant

    Hallo @1a-spielwiese,

    when checking the source code of http://www.1a-spielwiese.de/register/ you can see that, aside the missing buttons, the footer is also missing and at least mainly of the ending tags such as body and html…

    I would try to deactivate the custom css plugin and use a child-theme to do minor css modification for entry titles.

    Read also this:

    Twenty Twelve Theme

    #186953

    In reply to: Members Profile Page

    Venutius
    Moderator

    So for I’ve found a short code for the activity feed and this is giving me some ideas. I’ve found lots of widgets that let me customise the members profile page so overall I think I’m getting there.

    One of the issues with running Buddypress as a social network is the volume of plugins you need to use in order to get the right level of features and customisations, I’m running more than 80 in total. Inevitably this leads compatibility issues.

    Key features that are lacking – user profile page self-customisation options, Friends and memberships activity feeds, custom page views, image sharing options and site “fanfare options such as featured users, groups, posts and images on one page.

    But a big thanks to all those developers out there that are providing generally high quality plugins that fill a lot of these gaps.

    #186950

    In reply to: Members Profile Page

    brodskis
    Participant

    i’m with you. SOund like we are looking for the same thing. Probably why people end up spending a fortune. I have made a word press/ buddypress site and trying to see how to make the members area more cusomisable visual . THink I will have ot go back to the begginging. If you get any advice on this let me know.

    #186946
    danbp
    Participant

    I tested the snippet and applied the patch to 2.0.2 and it works. So i guess you did something wrong. 🙁

    BP 2.1 is expected in 12 days !

    #186938

    In reply to: add friend button

    beda69
    Participant

    if i get it right, this code goes to

    /home/database/public_html/content/plugins/buddypress/bp-members/bp-members-template.php

    but do i need to create a function?
    because if i just add the above line you posted, the code breaks and gives me a error message on screen when loaded…

    sorry, i am not a coder…

    thnaks

    #186936
    brodskis
    Participant

    Hi thank you for your info
    With the combination of both danbp and Henryrights sugestion rtMedia and buddypress-portfolio I’m getting somewhere but still not sure how I make hese portfolios come up in the members area of their profiles. Can past the shortcode but it’s a link to a page rather than embeded? Is there an easy way of sorting this?

    Any clues much appresciated

    all the best

    #186932
    Henry Wright
    Moderator

    Agree with @shanebp!

    I’m trying to isolate an apparent quirk in BuddyPress having to do with an embedded user avatar image (via shortcode) not linking properly to the user profile…

    To my knowledge, BP doesn’t supply shortcodes? I suspect if you search your theme for something like add_shortcode( 'shortcode-name-here' and look in the hook’s code, therein you’ll find the problem.

    Ref: https://codex.wordpress.org/Function_Reference/add_shortcode

    #186928
    shanebp
    Moderator

    BuddyPress uses the bbPress plugin for forums.
    So you’re better off asking the question on https://bbpress.org/forums/

    What you want may be possible, to start, see:

    Allowing inline images uploads in posts?


    https://wordpress.org/plugins/gd-bbpress-attachments/

Viewing 25 results - 16,026 through 16,050 (of 69,016 total)
Skip to toolbar