Search Results for 'buddypress'
-
AuthorSearch Results
-
March 8, 2015 at 9:26 am #235632
In reply to: Installing buddypress
danbp
ParticipantPlease follow the install guide provided on the Codex.
FYI, bp-config.php doesn’t exist.March 8, 2015 at 9:00 am #235629In reply to: disable members to do new post and reply in a group
giuseppecuttone
ParticipantHi @shanebp
I have seen you have writed in the TOPIC “How to disable Group Activity updates?”(https://buddypress.org/support/topic/how-to-disable-group-activity-updates/)
I need to do the same, but I need to let administrator to introduce comment in the groups.
I have ENFOLD THEME. ENFOLD is a theme compatible with BUDDYPRESS, but I think it is not a BUDDYPRESS THEME (I don’t find the folder named GROUP, so I think ENFOLD it is not a BUDDYPRESS THEME).The question is: if ENFOLD is not a BUDDYPRESS THEME, how can I do in order to restinge activity in the groups and let only at the administrators to do comments?
Thanks very much for your support.
I hope your answerMarch 7, 2015 at 10:10 pm #235621In reply to: Filter members loop
Henry Wright
ModeratorHi @barodscheff
You can just copy the code from here and paste it in to your page template (say page-poodles.php). You can then go about filtering the returned members as you see fit.
March 7, 2015 at 10:04 pm #235620Henry Wright
ModeratorHi @pieter
Try this
function filter_private_message_email_body( $email_content, $sender_name, $subject, $content, $message_link, $settings_link, $ud ) { $content = substr( $content , 0, 140 ); $email_content = sprintf( __( '%1$s sent you a new message: Subject: %2$s "%3$s" To view and read your messages please log in and visit: %4$s --------------------- ', 'buddypress' ), $sender_name, $subject, $content, $message_link ); return $email_content; } add_filter( 'messages_notification_new_message_message', 'filter_private_message_email_body', 10, 7 );This will make the message 140 characters. Feel free to change the 140 to another number.
March 7, 2015 at 8:01 pm #235617In reply to: "Post Update" button problems
bp-help
Participant@iiseptum
Maybe this will help. I think the only thing that is changed though is now you would make the edit on lines 36 and 56 and you would probably want to copy that js file into your themes buddypress folder. I am a bit rusty though so I may be wrong.
https://buddypress.org/support/topic/why-does-a-vertical-scroll-buttons-appear-when-you-click-inside-the-post-field/March 7, 2015 at 7:41 pm #235616In reply to: Activate the community
bp-help
Participant@numumar
I hope this doesn’t sound dumb for asking but have you installed WordPress? Reason being is BuddyPress and bbPress are WordPress plugins so having WordPress installed is a prerequisite to using BuddyPress and bbPress. Again sorry if its a dumb question.March 7, 2015 at 6:46 pm #235612In reply to: Settings -> Profile Visibility does not display
Xander206
ParticipantThis file looks correct too: bp-xprofile-loader.php
It matches the documentation here:
March 7, 2015 at 6:35 pm #235611In reply to: Installing BuddyPress for tests?
danbp
ParticipantFYI, Boone posted about phpunit test today !
http://teleogistic.net/2015/03/phpunit-speedtrap-and-wordpressbuddypress-automated-tests/
March 7, 2015 at 6:20 pm #235610In reply to: Settings -> Profile Visibility does not display
Xander206
ParticipantThanks for your quick reply.
I tried adding that file:
to the …BuddyPress/Members/Single/Settings directory and saw no change in behavior.
I don’t get an error page and in the console appears to load …/members/bud/settings/profile/
March 7, 2015 at 5:48 pm #235609In reply to: Settings -> Profile Visibility does not display
shanebp
ModeratorThere is not a profile.php file in …BuddyPress/Members/Single/Settings as I expected.
Look here:
bp-templates\bp-legacy\buddypress\members\single\settings\profile.phpMarch 7, 2015 at 3:36 pm #235605rosyteddy
ParticipantThanks @danbp for the detail write-up.
This problem happened with “Categories” only, and nothing else as far as I tested. Not just on localhost, but in live site too which I need to test more.I will follow your words.
One thing if “Before installing BuddyPress, activate pretty permalinks to what you want, EXCEPT default. Save.” is a strict requirement, the BP installer pages should say this, force me to do this before proceeding. Our goal should be solve everything programmatically 🙂
Still better, WP installer should by default set permalink to such protocol that does not interferes or gets disturbed by BP ( since BP is just no other plugin but an important part of WP family – infact it is one of 3 major-most flavors of WP – WP, WP Multisite, WP+BP)Thanks again.
March 7, 2015 at 2:46 pm #235603danbp
Participanthi @rosyteddy,
guess the mytery sit here: http://localhost/wordpress/userA/Multisite (subdomain or subdirectory) need that wordpress stays at the site root. At least for a default install.
SSite: hxxp://my_site.com
MS: hxxp//my_site.comMS subdomain: hxxp//wouah.my_site.com
MS subdirectory: hxxp//my_site.com/wouah/A local install (wamp, mamp or xamp) is mostly in a ‘www’ folder at your hard disk root C://
(recommended path) Refer to your software documentation for more details about installing Wamp/Mamp/Xamp – at least about localhost in URL. In the latest version (wamp 2.5), this is no more used. In my case, the local URL is http://my_site/wp-admin/….C://www represent the private part of the site path. The equivalent of /var/your_account/htdocs/ on a production server.
The same path scenario goes localy
C://www/my_site (avoid confusion and don’t use WordPress as site name)
My_site folder contains all WP directories and files:My_site/wp-admin
My_site/wp-content
My-site/wp-include
My_site/wp-config.php and so on…At the end of the install, you got a htaccess file containing:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPressThe important things here are rewrite engine on and rewrite base /, where the slash means “start to manage site URL’s form this point”, which is /…/…/var/your_account/htdocs/<- from here !!!
Before installing BuddyPress, activate pretty permalinks to what you want, EXCEPT default. Save. I do this before, because WP likes also pretty permalinks, and so i don’t forget to do it after i finished with a BP install.
Install BP and setup (or at least control if they exist) the choosen component page(s).
If you do this, you won’t have 404 or other issues, no matter if you use MS or subdirectories or subdomain. WP alone will work, and BP too.
The most important advice if you want to work localy, is to setup correctly apache (mod_rewrite is not activated for ex.). And if you use it with windows, to double-check anything, including HOST file where you have to declare manually each of your local sites (since wamp 2.4 – don’t remember exactly)
# localhost name resolution is handled within DNS itself. 127.0.0.1 localhost ::1 localhost 127.0.0.1 my_site ::1 my_site 127.0.0.1 my_other_site ::1 my_other_siteMarch 7, 2015 at 1:41 pm #235599In reply to: [Resolved] How to remove tabs from group admin nav
Mathieu Viet
ModeratorHi @svenl77,
It’s the case, just tested it and the function does what it intends to do : remove the group-avatar && the delete-group manage tabs.
I don’t manage to reproduce your issue. If i go to
groups/GROUP-SLUG/adminthen i’m automatically redirected togroups/GROUP-SLUG/admin/edit-detailsso no 404.My config is :
fresh install
WordPress latest trunk
BuddyPress latest trunk
twentytwelveI don’t think we’ve played in this area since 2.2.1
FYI : if i add the edit-details to the list of restricted tabs, then the group admin cannot access to any manage page without knowing the url of the allowed tabs. So i’d say the edit-details should always be there.
March 7, 2015 at 1:28 pm #235597In reply to: Best Way For Member's To Add Blog Posts To Profile
rosyteddy
Participant@svenl77 Thanks for the link. Its nice.
Does it work on Multisite? The form can deposit posts to individual blog? and not one central blog or blog 1? Any demo of that please?
Specific settings I am asking about:
WP 4.1.1, BP 2.2.1 – default installs
define( ‘WP_ALLOW_MULTISITE’, true );
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
Registration Settings : Both sites and user accounts can be registered.If it does work with the above settings has it solved this category problem?
Thanks.
March 7, 2015 at 12:33 pm #235593In reply to: How to change default activity stream tab?
Yassin Bey
ParticipantGreat! thank you, found the solution in https://buddypress.org/support/topic/change-the-default-activity-tab/.
Here’s the solution by @paulhastings0 and it also works with the Buddypress Follow plugin:
1. Make sure that you’re working on a child theme of the BP Default theme.
2. Copy/paste the contents of bp-default/activity/index.php into your child theme’s activity/index.php folder
3. Find the line <li class=”selected” id=”activity-all”> and delete class=”selected”
4. Scroll down a few lines further to <li id=”activity-friends”> and insert class=”selected” just after id=”activity-friends”🙂
March 7, 2015 at 12:19 pm #235592In reply to: How to change default activity stream tab?
rosyteddy
ParticipantMarch 7, 2015 at 12:12 pm #235591In reply to: Best Way For Member's To Add Blog Posts To Profile
peter-hamilton
ParticipantBrajesh makes great plugins, I use a few of his, I seem to remember that buddyblog is multisite only, and I had lots of issues making multisite function the way I intended my site to function.
I did have a look and tried Buddyblog, but I found in my case the FEP plugin did what I needed just a bit better/easier, and without multisite.
And I think it should be possible to get the posts to show on the plugin.php buddypress template, on my thngs to do list.
P.H.
March 7, 2015 at 10:44 am #235586In reply to: Title page removed users and groups
nomad48
ParticipantI looked at this post, I do not quite understand what should I do? Do I understand correctly that the fix will be in the next release of BuddyPress? With Respect!
March 7, 2015 at 8:24 am #235581In reply to: Vanishing links – any clue will help
rosyteddy
Participanthmmm… so I missed some info 🙁
WP 4.1.1 Multisite, Buddypress 2.2.1, Bp-checkins.1.2.2 – plain, simple, default install, nothing else, Theme is default Twenty FifteenSteps to reproduce ( you can test it in localhost in 3 seconds flat)
Install WP 4.1.1, enable Multisite, BP 2.2.1
Enable Bp-checkins.1.2.2 – some links in sidebar as shown in the above picture vanishes
Disable Bp-checkins.1.2.2 – they come back
Most funny is Mr. WordPress on Hello World! – Hello World! disappears but Mr. WordPress remains 🙂Thanks
March 7, 2015 at 2:59 am #235580In reply to: Vanishing links – any clue will help
Ben Hansen
Participantgood to provide more info such as other plugins WP version theme etc:
https://buddypress.org/support/topic/when-asking-for-support-2/
🙂
March 7, 2015 at 2:32 am #235579In reply to: Title page removed users and groups
@mercime
ParticipantMarch 7, 2015 at 12:28 am #235575danbp
Participantfirst of, required pages for buddypress such as registration cannot use custom template as an usual WP page.
“Create an Account” can be modified by using the language file, even if the site is in english.
Read hereBP comes with a pot file where you find ALL strings used by the plugin AND the file/line where they are used. Very handy for searching “create an account”. 😉
For now:
bp-core/bp-core-filters.php:487 bp-members/bp-members-screens.php:517Also found scratchhouse.co Is this your site ? BP seems to not be installed.
Have you setup the pretty permalinks ? Could explain why you have trouble with some pages.And don’t forget: codex is your friend. 😉
March 7, 2015 at 12:09 am #235574In reply to: Notification count in navigation menu item?
danbp
Participanthi @tennaki,
did you searched a little before asking ? 😉
This subject was handled many times in the past.
https://buddypress.org/support/search/notifications+counter/March 7, 2015 at 12:06 am #235573In reply to: Installing BuddyPress for tests?
danbp
ParticipantSorry, i can’t help you for best practice in that domain.
They’re many things BP related on GitHub.
https://github.com/boonebgorges/wp-cli-buddypressOr contact one of the dev on their blog:
https://bpdevel.wordpress.com/March 6, 2015 at 11:30 pm #235569In reply to: Share photos from any website to buddypress
danbp
ParticipantHi,
see if this may help you:
https://buddypress.org/support/topic/add-tinymce-to-activity-post-form/ -
AuthorSearch Results