Search Results for 'wordpress'
-
AuthorSearch Results
-
March 8, 2015 at 11:23 am #235640
In reply to: Profile features
Henry Wright
ModeratorHey @mariatrier
1. Yes, sending a message to multiple recipients is possible
2. Yes, this feature is called @-mentions
3. Not possible ‘out-of-the-box’. You’d need to find a plugin that does this. Try searching the Plugin Directory
4. Not possible ‘out-of-the-box’. But see the BP Checkins pluginHope this info helps!
March 8, 2015 at 10:41 am #235636In reply to: disable members to do new post and reply in a group
giuseppecuttone
ParticipantHi @shanebp
First of all, thank’s a lot for your fast answer. Now I have understood a lot of thinghs, but I have only two little questions more:
1. The solution using ACTIVITY.PHP, listing in the following topic , let administrator introduce comment from ADMINISTRATION PAGE (DASHBOARD)? Or neither user and administrator will can to do comments in the groups?
2. If I create a CHILD THEME, where I must introduce the file ACTIVITY.PHP ?
Maybe, I need create the followings folders GROUPS/SINGLE into the folder ENFOLD-CHILD? And introduce there ACTIVITY.PHP file into SINGLE folder? Is it so?
I am not informatic and I don’t undestand very well what I need to do.
Thank’s very very much for your answer.March 8, 2015 at 10:14 am #235635In reply to: Activate the community
numumar
ParticipantI have installed WordPress, but I don’t know if it is necessary to create a file for buddypress. I have installed bbpress and I have to create a file ‘bb-config.php’. Do I need other file (bp-config.php) for buddypress? Can you explain to me, please? Thanks.
March 8, 2015 at 9:32 am #235633In reply to: disable members to do new post and reply in a group
danbp
ParticipantSince 1.7, BuddyPress can be used with almost any correctly coded theme.
How to customize BuddyPress needs a child-theme. From here you can add modification to BP templates or code. No matter the theme: Enfold, Twenty something or any other one.
How it works is explained here.
March 8, 2015 at 9:23 am #235631danbp
ParticipantWhy should every thing possible to do with WordPress automatically be on ON as soon as BP is used ? There is no obligation to use BP. And there are hundreds of way to use that plugin. As there are also hundreds of ways to use WP.
Permalinks offers 6 options.
1 Default value -> means OFF
2-5: are 4 pre-defined option
6 your own custom setting !Before installing a plugin, users are invited to read documentation. At least, it’s the case for BP.
Not all WP user are using BP, so i guess enabling some BP specific option will never be part of WP installer. When you buy a TV, you can’t whatch it immediatly. You have to unpack it, and setup some channels yourself. Same thing with WP and plugins.since BP is just no other plugin but an important part of WP family I understand your enthousiasm and BP is effectively a plugin from the WP family, but it’s just a plugin. Not more, not less. 😉
March 8, 2015 at 9:05 am #235630In reply to: Help to put Favorit button in blog post page
danbp
Participant@rosyteddy, What am I doing wrong? Apparently nothing. You try do add it to a plugin template.
If it doesn’t work, maybe it is not intended for or buddypics is not activated. And for the right answer to this, the code author is @modemlooper.
Ask on plugin support.
March 8, 2015 at 12:08 am #235625shanebp
ModeratorThis is a bit nicer:
$content = wp_trim_words( $content, 15 );https://codex.wordpress.org/Function_Reference/wp_trim_words
March 8, 2015 at 12:02 am #235624tinabeansy
ParticipantThanks, @danbp!
I’m currently in the process of migrating my site to use WordPress, so it’s not on the main production server yet.
I’ll check out the codex!
March 8, 2015 at 12:00 am #235623In reply to: Filter members loop
Henry Wright
ModeratorHi @rosyteddy
I haven’t tried it, but I think it’ll work if you put it in a page template. See here for more info.
Regarding the functionality you want, you’d need to do something like this:
$ids = '1, 2, 5, 33, 43';if ( bp_has_members( 'exclude=' . $ids ) ) :Where
$idsis a comma separated list of user IDs who are not friends.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 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
Anonymous User
InactiveHi @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:14 pm #235595In reply to: Best Way For Member's To Add Blog Posts To Profile
Sven Lehnert
ParticipantI have also created a plugin for this purpose if you need more complex forms check out BuddyForms. https://wordpress.org/plugins/buddyforms-members/
There is also a demo available http://buddyforms.com/
Feedback is welcome 😉
Cheers,
SvenMarch 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:32 am #235579In reply to: Title page removed users and groups
@mercime
ParticipantMarch 7, 2015 at 12:53 am #235577In reply to: Share photos from any website to buddypress
rosyteddy
ParticipantThanks. Its not a question of trusting them. I trust always. Issue is:
Suppose you have created a site where your members use this feature and posts pictures not belonging to them in their stream. It is okay but there should be a small note (if the site admin feels so as an option) to say if that is picture is from flickr | original postername (if available) or photobucket or whateverAsking users to manually add a note won’t work most of the time – it should be and must be solved programmatically. I visited the page https://make.wordpress.org/core/handbook/design-decisions/#whitelisting-oembed-providers but could not see any comment-box ( although there are other user’s comments)
This should be an issue but in WP main site I have no idea where do I submit “issue”, and even if I do I wonder if there is going to be any response at all. But I think this should be addressed immediately. Thanks.
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 8:20 pm #235565In reply to: Share photos from any website to buddypress
Sunday A. James
ParticipantIf you could get it to work with wordpress using /wp-admin/press-this.php you could probably make it work with the light version of WP’s editor used for notices. Don’t know exactly what you mean by”endpoint”, but if it’s related to “target”, tought that what’s new is targeted and ajaxified, like pressthis.
Yes, I mean “target”. And how do I locate the “light version of WP’s editor?
March 6, 2015 at 7:12 pm #235562In reply to: Installing BuddyPress for tests?
jreeve
ParticipantHi @danbp,
I’m familiar with how BuddyPress tests work in general, and so I’ve read https://codex.buddypress.org/developer/automated-testing/ and https://codex.buddypress.org/developer/automated-testing/writing-automated-tests-for-buddypress-dependent-plugins/, but what I’m asking is, what’s the best-practices way of writing an automated setup for automated tests, in the style of
install-wp-tests.sh, so that tests will run on any machine, and not just my own development box (i.e. Travis, etc.)? If you look at that file, you’ll see that it installs WordPress in /tmp so that it can test against it, using the functioninstall_wp(). I figure I also need a functioninstall_bp()that would do something similar with BuddyPress. Simple enough. But I was wondering whether someone already has a setup like this in theirinstall-wp-tests.sh, so that a) I didn’t have to go about the process of writing my own, and b) I can take advantage of whatever optimizations experienced BP developers may have made in this process, which I might be unaware of. Do you know of a setup like that? For instance, what do you use to set up your Travis box so that it can automatically run tests for your plugins?March 6, 2015 at 6:28 pm #235559In reply to: [Resolved] Spreadsheet Of All User Information
rosyteddy
ParticipantThese may help
wordpress.org/plugins/export-user-data/
wordpress.org/plugins/wp-users-exporter/
buddypress dot org/support/topic/exporting-xprofile-fields-to-csv-etc/[ My previous reply here had many more links, and it just vanished on hitting submit without any alert message, probably was caught as spam]
Thanks
March 6, 2015 at 5:16 pm #235553jreeve
ParticipantMarch 6, 2015 at 5:14 pm #235552In reply to: Share photos from any website to buddypress
-
AuthorSearch Results