Search Results for 'wordpress'
-
AuthorSearch Results
-
March 19, 2018 at 5:44 pm #271469
In reply to: Is there not a list of shortcode anywhere?
Venutius
ModeratorThere’s a few plugins that provide shortcodes, take a look at the BP Activity Shortcode and also Shortcodes for BuddyPress in wordpress.org.
March 19, 2018 at 3:18 pm #271464mcpeanut
Participant@jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out.
function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; }What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the PHP opening and closing tags and save.
This should disable BuddyPress registration and let you use WordPress registration as default, hope this helps.
March 17, 2018 at 8:03 pm #271441In reply to: Creating Tutor website
owen2
ParticipantA good example of a WordPress based “Tutor website” is the mgrmusic.com Music Teacher Database.
Using the Geo My WordPress plugin users can search the database for music teachers local to them. The can also filter the teachers dependant on instrument or level, so this achieves two of the aims you mentioned in terms of the “search page”.
As for sign-ups; tutors submit information via a Contact Form 7 plugin form on a Sign-Up page and receive enquiries in a “Community” area of the website where enquiries are send to teachers, enabling them to respond to the students. I am not sure about how this website facilitates payment from either the teachers or students, however, I am sure you could add some type of Paypal payment facilitation that creates the release of a download file upon payment, in the file a student could find a teacher’s contact details. The whole website is ran on WordPress so it is certainly achievable to create a tutor website based only on WordPress achieving the aims that you set up above.
Hope this helps, I would research the plugins and theme options out there.
March 17, 2018 at 7:24 pm #271440jonleesky
ParticipantI just want the original wordpress registration page. After I installed buddypress, It becomes a new registration page. is there any way to stop it? ((o(^_^)o))
March 16, 2018 at 8:44 pm #271431In reply to: Embed Groups
Venutius
ModeratorHold the presses! I’ve found a plugin that promises to deliver what you need!
If you install this one, it seems to have a group list shortcode where you can specify the id of the user that each group will belong to.
For example [groups-listing user_id=1]
I think this should in the least show all the groups you are a member of, WBCOM, the plugin author are also quite active and may add a feature for an admin= option.
March 16, 2018 at 7:54 pm #271423In reply to: Link is not embedding
Jonas
ParticipantYou could give Iframely a shot, it should convert any useful link into a rich snippet embedded post.
March 16, 2018 at 11:14 am #271410In reply to: Link is not embedding
Venutius
ModeratorIs the link one that is supported by embed? my understanding is that only links with supported URL’s will embed, one such link would be https://wordpress.org/plugins/buddypress/
March 15, 2018 at 9:00 pm #271403In reply to: A custom feature I wish I found how to do
Venutius
ModeratorThat’s great, thinking about it this should go in your bp-custom.php, then you won’t need to remember to transfer it if you ever change your theme. Or as a rather nifty way of managing code snippets you could use:
March 15, 2018 at 7:43 pm #271397In reply to: Default Groups assigned to new Registrants?
Venutius
ModeratorThere’s a plugin for that – BP Auto Group Join:
March 15, 2018 at 2:24 pm #271383pedger
Participant@dro-i-de aparently this is a feature not a bug. If the user editing the fields has a bp_moderate capability, it is allowed to save empty fields. Your regular users will not.
Found it here: https://buddypress.trac.wordpress.org/ticket/7483#comment:6
I tested and it works as expecteded.
Cheers
March 15, 2018 at 10:51 am #271373In reply to: BuddyPress Moderator
Venutius
ModeratorLooks like this plugin is just about the last remaining moderation plugin:
March 14, 2018 at 4:48 pm #271358Venutius
ModeratorNo the comments are WordPress Territory, not BuddyPress, BuddyPress is extremely light in it’s handling of posts and comments and it does not have any moderation, WordPress handles that for comments.
March 14, 2018 at 2:51 pm #271354lorndal
ParticipantHi,
in my private, user-login BuddyPress Community with groups, forums, activity-stream, I´m just integrating a blog, in which everyone should be able to create posts and comments, without having to wait for approvement!Here is my first problem:
A participant can´t comment on an post, created by admin:
“Your comment is awaiting moderation.”
Even in the settings/discussion, “Allow people to post comments on new articles” is set!
I also can´t find any other option, which could feed to this problem!Second:
People should be able to create posts in the frontend, that it is not necessary, that they logg in into the wordpress-backend.
Can anyone suggested a plugin for that?nice greetings and thousand thanks
SandraMarch 14, 2018 at 1:05 pm #271347In reply to: Register & Profile Fields not showing or working
Venutius
ModeratorOk I’m in.
You should change that password now I’ve had access.
I can see what the problem is, your Base Profile field looks to be corrupt. It’s duplicated and does not have the required Name field. I added this field to one of the profile fields and it still did not show up.
So basically your profile field settings are corrupt in your database. As I see it there are two ways forward:
1. Delete wordpress entirely including the Database and start again.
2. Try to recover your Database by manually editing it.Given it’s a test site and you are not experienced I suggest option 1 is the best way forward.
It would be good to know exactly what happened to get this error, technically it should not happen.
March 14, 2018 at 10:31 am #271330In reply to: Register & Profile Fields not showing or working
Venutius
ModeratorI notice the registration form does not ask for the BuddyPress username, only the WordPress username. have you changed anything from the default to make it this way? That login does not seem to work.
March 13, 2018 at 9:03 pm #271316In reply to: Embed Groups
David Cavins
KeymasterI don’t know of a shortcode for listing out groups. However, you could use the code in
buddypress/bp-templates/bp-legacy/buddypress/groups/groups-loop.phpas a starter. The loop is powered bybp_has_groups()which is template loop like the WordPress posts loop. You could add a template to your child theme, likepage-group-list.phpand copy that groups loop into it and start tinkering. you can read more about the parameters you can pass intobp_has_groups()here: https://buddypress.trac.wordpress.org/browser/branches/2.9/src/bp-groups/bp-groups-template.php#L290I do want to make sure that you know there’s a group directory built by default, right?
March 13, 2018 at 6:10 pm #271314shabbelle
ParticipantWordPress 4.9.4
Theme: Community Builder 1.1.0 by BuddyDev https://buddydev.com/
BuddPress 2.9.3
A2 HostingMarch 13, 2018 at 4:37 pm #271310In reply to: How to Insert @username in activity comment replies.
giulietta
ParticipantThank you very much for your reply!!!
What I want to do is to echo in the reply comment form textarea “@username” (where username is the username author of the comment I’m going to reply.Add the “@username” for activity update relpy is very easy. I edited the file /plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/entry.php
from:
<textarea id=”ac-input-<?php bp_activity_id(); ?>” class=”ac-input bp-suggestions” name=”ac_input_<?php bp_activity_id(); ?>”></textarea>to:
<?php $userid” = ‘@’ . bp_core_get_username(bp_get_activity_user_id()); ?><textarea id=”ac-input-<?php bp_activity_id(); ?>” class=”ac-input bp-suggestions” name=”ac_input_<?php bp_activity_id(); ?>”> <?php echo $userid; ?> </textarea>
and it work!
On the contrary, when I reply to an activity comment (acomment) I can get the author username by bp_core_get_username(bp_get_activity_comment_user_id()); editing the file: /plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/comment.php
but the button “reply” created by comment.php open the form created by edit.php and within this file I can get only the activity root user_id and I can’t get the comment user_id 🙁
I tried also with the GLOBALS variables but noway 🙁So what I need is to pass bp_core_get_username(bp_get_activity_comment_user_id()) executed by comment.php to the file edit.php
If this is not possible or to difficult to perform there is a second possibility.
When I reply to a comment the post form is opened attached to the right comment. So it is enought to get the username from the <div class=”acomment-meta”> in the comment area itself. I tried to do that by a little js inside entry.php but I’m too basic to do that 🙁
If you need I can give you credentials to work on my test site. But it is a normal wordpress site with only buddypress plugin and the Minimal theme.
I hope to have been more clear now. If not, I can do another try 😉 but I think that images are not useful for a better explanation of the problem 🙁
It would be fantastic if you could help me as I can’t solve it by myself 🙁
Kisses!
GiulyMarch 13, 2018 at 2:52 pm #271305In reply to: version 2.9.5 for bug fixes!?
David Cavins
KeymasterHello, not sure about the timing of a 2.9.4 release. Also unaware of a bug with the number of friends not matching the indicator bubble. If you can verify that there is a bug, please open a trac ticket: https://buddypress.trac.wordpress.org/
Thanks!
March 13, 2018 at 8:52 am #271294In reply to: Edit fields in members directory
andreasnordengen
ParticipantWell, I asked the developer behind the theme I´m using and got this code:
function sq7_extra_fields_members_directory() { $location = bp_get_member_profile_data('field=Location'); $specialization = bp_get_member_profile_data('field=Specialization'); if ($specialization || $location) { echo '<div class="mdetcenter">'. 'Location : ' . $location . '</div>'; echo '<div class="mdetcenter">'. 'Specialization : ' . $specialization . '</div>'; } } add_action('bp_directory_members_item', 'sq7_extra_fields_members_directory');But, when I add the code and update, I get this message from WordPress:
Could not communicate back with the site to check for faulty errors, so the PHP change was reset. You must upload your change to the PHP file in another way, for example, with SFTP.Could be related to my PHP version…
March 11, 2018 at 6:35 pm #271264In reply to: can’t reinstall buddypress after uninstalling it
Venutius
ModeratorYes, I’m wondering if it’s getting deleted properly.
Another thing, last time I had something like this I’d hit a limit from my hosting provider, but it was affecting all plugins I was trying to install. Still it’s something to look at since ovbiously WordPress is struggling to create the file.
March 10, 2018 at 11:44 am #271253In reply to: Create Group not showing up
Venutius
ModeratorTake a look at this Trac ticket https://buddypress.trac.wordpress.org/ticket/7673
March 10, 2018 at 10:25 am #271251In reply to: How to edit Registration Denied email?
Venutius
ModeratorThe registration denied email I think is actually a WordPress email that is also used by BuddyPress. There’s a premium plugin that allows you to edit these system emails, but I’ve not been able to find if it allows you to edit the registration denied email, yu’d need to ask the plugin developers. the plugin is All in One Email for WordPress. That might be able to do what you are looking for.
March 9, 2018 at 10:43 pm #271247In reply to: How to make members page blur
Henry Wright
ModeratorYou could filter body_class and add a logged-in and logged-out class. Then style in your child theme’s style.css document. For example:
body.logged-out { // Do some blurring }March 9, 2018 at 8:46 pm #271246In reply to: BP Multiline Text Box Alignment
rexormunde
ParticipantWow I’m late on getting back to this. The issue is still ongoing. Nothing aligns in the multiline text box element in user profiles. I noticed that when centering in the “Visual” tab, and then going to the “Text” tab, I can see the HTML code that would center the text. After saving, that HTML code vanishes. It doesn’t seem to get saved or applied to the page, like it’s being stripped away.
WordPress: 4.9.4
BuddyPress: 2.9.3
Site: newenglandfurs.org
Theme(s) tested: Avant (Primary)
Example: http://newenglandfurs.org/members/rexormunde/profile/ -
AuthorSearch Results