Search Results for 'buddypress'
-
AuthorSearch Results
-
August 17, 2014 at 12:22 am #187042
In reply to: [Resolved] No button for finishing registration
danbp
ParticipantA 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.
August 16, 2014 at 11:46 pm #187041danbp
ParticipantWould 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. 😉August 16, 2014 at 10:42 pm #187040In reply to: [Resolved] No button for finishing registration
1a-spielwiese
ParticipantAnd 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.
August 16, 2014 at 10:29 pm #187039In reply to: [Resolved] No button for finishing registration
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.
August 16, 2014 at 7:53 pm #187031In reply to: Modifying The Member List
danbp
ParticipantSometimes 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/August 16, 2014 at 7:35 pm #187030danbp
ParticipantFYI:
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.phpfunction 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' );August 16, 2014 at 6:52 pm #187029In reply to: [Resolved] No button for finishing registration
1a-spielwiese
ParticipantI 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.
August 16, 2014 at 6:24 pm #187028In reply to: Modifying The Member List
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.
August 16, 2014 at 5:53 pm #187025shanebp
ModeratorThen in your custom handler, adapt the code in bp_blogs_record_comment or write your own using bp_activity_add
August 16, 2014 at 5:53 pm #187024In reply to: [Resolved] No button for finishing registration
danbp
ParticipantWe 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.
August 16, 2014 at 5:38 pm #187019In reply to: Modifying The Member List
danbp
ParticipantUnfortunately 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.phpIch glaube echt dass bevor du alles umbaust, das du heftig über BP lesen (und lernen) solltest !
August 16, 2014 at 4:37 pm #187018wspencer
ParticipantI’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 );August 16, 2014 at 3:43 pm #187012In reply to: Modifying The Member List
danbp
ParticipantYes, by creating a custom function.
Add custom filters to loops and enjoy them within your plugin
https://codex.buddypress.org/plugindev/using-bp_parse_args-to-filter-buddypress-template-loops/How to
https://wordpress.org/support/topic/display-profile-fields-in-the-members-directory-all-members
(2nd topic gives a technique you can use)August 16, 2014 at 3:22 pm #187010In reply to: [Resolved] No button for finishing registration
danbp
ParticipantBoth 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
August 16, 2014 at 9:19 am #186996danbp
ParticipantHi @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-wordpressTo 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/EmbedsCodex is your friend.
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 !
August 16, 2014 at 9:03 am #186991In reply to: Re-naming and re-ordering tabs.
danbp
ParticipantWhat is the current address of your plugin?
Doesn’t exist anymore !
https://buddypress.org/support/topic/what-happened-to-these-buddypress-plugins/#post-163698Customizing labels, see here:
As this topic is over one year old, and the initial question resolved, i close the tread.
August 16, 2014 at 8:54 am #186990In reply to: [Resolved] Time out in deactivating BuddyPress
danbp
ParticipantShould 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.
August 15, 2014 at 7:31 pm #186965In reply to: [Resolved] No button for finishing registration
danbp
ParticipantHallo @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:
August 15, 2014 at 1:36 pm #186953In reply to: Members Profile Page
Venutius
ModeratorSo 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.
August 15, 2014 at 10:46 am #186950In reply to: Members Profile Page
brodskis
Participanti’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.
August 15, 2014 at 9:23 am #186946danbp
ParticipantI 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 !
August 15, 2014 at 2:23 am #186938In reply to: add friend button
beda69
Participantif 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
August 15, 2014 at 12:47 am #186936In reply to: members portfolio with video
brodskis
ParticipantHi 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
August 14, 2014 at 8:27 pm #186932In reply to: User avatar redirects to random page, not profile
Henry Wright
ModeratorAgree 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
August 14, 2014 at 5:48 pm #186928In reply to: Simple Way to Enable Image posting in Forums
shanebp
ModeratorBuddyPress 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:
-
AuthorSearch Results