Search Results for 'wordpress'
-
AuthorSearch Results
-
October 12, 2018 at 5:58 pm #278533
In reply to: remove ‘last active’ status
Prashant Singh
ParticipantIf it is child theme then it’s fine otherwise please cut it from there and use this plugin https://wordpress.org/plugins/code-snippets/ to add a new snippet and then paste it there.
Thanks
October 12, 2018 at 12:00 pm #278526In reply to: Registration notice, manual activation
micheleestes
Participant@prashantvatsh Loco translate appeared to work on my own testing with a typical new account registration and activation, but the snippet of code did not prevent someone from bypassing account activation if using another WordPress account to login. The tester mentioned logging in with the other account (apparently no registration required in this case) and seeing a jet pack process accept them. I am not sure jet pack had anything to do with this and wonder if you have other suggestions. I hope to test in real-time later today to better know what is happening.
October 12, 2018 at 7:19 am #278516In reply to: update button in the Activity stream disappears
yuravw
ParticipantNo when I activite the rtMedia for WordPress, BuddyPress and bbPress plugin
October 12, 2018 at 5:33 am #278511In reply to: Classified Ads & Musician directory.
Prashant Singh
ParticipantHi,
This is not BuddyPress plugin but please see: https://wordpress.org/plugins/advanced-classifieds-and-directory-pro/
You can use this plugin https://wordpress.org/plugins/wc4bp/ to manage accounts and all through profile. But for this you have to use woocommerce to sell things.
Thanks
October 11, 2018 at 9:53 pm #278498Topic: remove ‘last active’ status
in forum How-to & Troubleshootingdennymar
ParticipantHello, I searched existing posts but didn’t find this exact question.
On the members’ page, and on individual profile pages, it shows the time the member was last active. (example ‘active 3 minutes ago’)
I’d like to hide/turn this off but can’t figure out where or how to do this. I have turned off the activity stream but that didn’t do it.
Is there a snippet of code I need to change or add to accomplish this?I changed the theme to twenty-seventeen and it still shows up.
Wordpress version 4.9.8
BuddyPress version 3.2.0This will (temporarily) take you directly to the member ( ‘Connect’ ) page.
Thank you!
DeniseOctober 11, 2018 at 5:32 am #278462In reply to: Registration notice, manual activation
Prashant Singh
ParticipantHi,
Please create a file bp-custom.php in wp-content/plugins folder and then put it there. If you want an easy solution then install this https://wordpress.org/plugins/code-snippets/ plugin and then add a snippet and paste this code there and save it.
For loco if you have already installed it then go to the menu loco in dashboard and then plugins->buddypress-> there you have to create a new language file and select language there. Once it is created search for the word in this file. You will find it.
You can see the process in loco plugin’s documentation itself https://localise.biz/wordpress/plugin/beginners
October 10, 2018 at 8:14 pm #278456Prashant Singh
ParticipantHi,
Please check this plugin https://wordpress.org/plugins/loco-translate/
Using this plugin just go to it’s plugins menu and open BuddyPress there and then in your prefered language file find the word and replace it with your text.
Hopefully, it will help you.
Thanks
October 10, 2018 at 8:09 pm #278455In reply to: Profile field groups tabs while editing profile
Prashant Singh
ParticipantHi,
No need to edit any template. I have created a snippet for you. Please paste the following snippet in your child theme’s functions.php file:
function ps_redirect_next_group() { if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) { return; } $group_id = bp_get_current_profile_group_id()+1; if ( bp_get_current_profile_group_id()==4 ) { bp_core_redirect(bp_displayed_user_domain()."profile/"); }else{ bp_core_redirect(bp_displayed_user_domain()."profile/edit/group/$group_id/"); } } add_action( 'xprofile_data_after_save', 'ps_redirect_next_group' ); add_filter( 'gettext', 'ps_change_save_button_text', 20, 3 ); function ps_change_save_button_text( $translated_text, $text, $domain ) { if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) { return $translated_text; } switch ( $translated_text ) { case 'Save Changes' : $translated_text = __( 'Save and Continue', $domain ); break; } return $translated_text; }If there is no child theme then create a file bp-custom.php in wp-content/plugins/ folder and paste this there. https://codex.buddypress.org/themes/bp-custom-php/
If not possible to create bp-custom.php file then third and easy solution is to install the plugin code snippets https://wordpress.org/plugins/code-snippets/ and there add a snippet and paste the code and save.
Hopefully, it will help you.
Thanks
October 10, 2018 at 7:12 pm #278453In reply to: Is integration with MailPoet possible?
Prashant Singh
ParticipantHi,
This is the plugin https://wordpress.org/plugins/wysija-newsletters/ that you can use but will need customization to restrict as per check box value.
https://www.mailpoet.com/buddypress-case-study/ Also try to consult with mailpoet once.
Thanks
October 10, 2018 at 6:47 pm #278452In reply to: Can Buddypress build a community like this one?
Prashant Singh
ParticipantIn particular,I’d like to distinguish between organizations and individuals.
The organizations apply to build communities, and organizations can post blogs in established communities to answer questions, free and paid features.
The data discussed by members can be saved and can be provided to scientific institutions for analysis.
Hi,
BuddyPress have member type features that you can use to distinguish between members. Please check this plugin https://buddydev.com/plugins/buddypress-member-types-pro/ and then can restrict group creation and blogs by member type organization.
Also use this plugin https://wordpress.org/plugins/bbpress/ for forum creation where members can come and reply on topics.
The topics and replies and activity post in buddypress are stored in the database.
Please check all of them and then can choose a BuddyPress based theme https://colorlib.com/wp/best-buddypress-wordpress-themes/ and it will have most of things inbuilt.
Thanks
October 9, 2018 at 7:09 pm #278399In reply to: Private Blogs
Prashant Singh
ParticipantHi,
Is it a custom template where blogs are listing or default WordPress blog page?
Thanks
October 9, 2018 at 7:00 pm #278397In reply to: Default Landing group while editing Member profile
Prashant Singh
Participantfunction ps_change_default_profile_group() { if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) { return; } $group_id = 2; if ( bp_get_current_profile_group_id()==1 ) { bp_core_redirect(bp_displayed_user_domain()."profile/edit/group/2/"); } } add_action( 'get_header', 'ps_change_default_profile_group', 1 );Hi, please remove what you did in edit.php and use this code. Try pasting this in bp-custom.php file. If not able to create then add a plugin called Code Snippets https://wordpress.org/plugins/code-snippets/ and then add a snippet and paste the code there.
Thanks
October 9, 2018 at 5:58 pm #278386In reply to: Points system
Prashant Singh
ParticipantOctober 9, 2018 at 9:59 am #278369In reply to: Activity/updates
Prashant Singh
ParticipantCreate a file named bp-custom.php in the plugins folder and then put this code there. For reference: https://codex.buddypress.org/themes/bp-custom-php
If not able to do it then the easiest way is to install the plugin Code Snippets https://wordpress.org/plugins/code-snippets/ and add a new snippet there, then paste this code.
Thanks
October 9, 2018 at 7:45 am #278358In reply to: Links in members-loop for Profile Field
israel4lincelot
ParticipantHi Prashant, I should have maybe started with listing following information:
1. Which version of WordPress are you running?
WordPress 4.9.82. Did you install WordPress as a directory or subdomain install?
Subdomain4. Did you upgrade from a previous version of WordPress? If so, from which version?
I installed the latest.5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
Latest Version 3.2.07. Did you upgraded from a previous version of BP? If so, from which version?
No8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
BuddyDrive, Custom Profile Filters for BuddyPress, Gravity Forms, K Elements, Really Simple SSL, rtMedia for WordPress, BuddyPress and bbPress, Slider Revolution, What The File,
WPBakery Page Builder9. Are you using the standard WordPress theme or customized theme?
Customized.10. Which theme do you use ?
Kleo Theme from seventhqueen11. Have you modified the core files in any way?
Yes I have, but always in the child-theme.12. Do you have any custom functions in bp-custom.php?
Yes
<?php
// hacks and mods will go here
define( 'BP_DEFAULT_COMPONENT', 'profile' );?>
15. Which company provides your hosting?
CompbellSo to answer your other questions, I added a new Profile Field with checkboxes. Indeed you have to select it and that’s why I can’t just wrap it in an anchor tag because I need the fields to be clickable separately.
In Profile fields the Expertises are individually links. In my Members page all the Expertises ar put in a Paragraph. But I’d like them to be individual links such as in Profile page.
See Screencast here: https://screencast-o-matic.com/watch/cF6QiCYqw6
Thx!
October 9, 2018 at 12:37 am #278345In reply to: CPT – Each post connects to a group
jacobsager
ParticipantPrashant is correct about custom coding.
However, there is a buddyforms add-on plugin which will make automatically make groups from a cot post submission. You may need a premium license from buddyforms tho. I have not tested it so I can’t speak for the quality or experience.
Here’s the linkBuddy forms attach posts to groups
October 8, 2018 at 8:04 pm #278337In reply to: profile page sidebar assignment
Prashant Singh
Participanthttps://codex.wordpress.org/Function_Reference/dynamic_sidebar
We can use this function to call the sidebar.
Thanks
October 8, 2018 at 6:15 pm #278325In reply to: Registration notice, manual activation
Prashant Singh
Participantadd_filter( 'bp_registration_needs_activation', '__return_false' );Please try this snippet.
Also you can install loco translate plugin and find the text using this plugin and then can change it to something else.
Thanks
October 8, 2018 at 7:02 am #278302Prashant Singh
ParticipantSure, please try. Also by default theme, I mean default WordPress theme like Twenty sixteen and others.
Thanks
October 7, 2018 at 7:38 pm #278293In reply to: Put pages behind BuddyPress login
Prashant Singh
ParticipantDoes the Restrict Content plugin integrate with BuddyPress registration or require a separate registration?
It works with BuddyPress Registration. It restricts content for non-logged in users so mechanism is simple if not a user and is a guest only then restrict the content.
You can go with shane’s solution because that allows to restrict BuddyPress content and WordPress post type contents as well.
Thanks
October 7, 2018 at 10:43 am #278248In reply to: Put pages behind BuddyPress login
shanebp
ModeratorAnother alternative: https://wordpress.org/plugins/bp-simple-private/
October 7, 2018 at 9:06 am #278185In reply to: Put pages behind BuddyPress login
Prashant Singh
ParticipantHi,
Please try this plugin https://wordpress.org/plugins/restrict-content/
Hopefully this will help you.
Thanks
October 6, 2018 at 11:21 am #277647In reply to: DIrect messaging problem
Prashant Singh
ParticipantPlease check: https://wordpress.stackexchange.com/questions/23401/how-to-apply-a-patch
WordPress have a good explanation as well https://make.wordpress.org/core/handbook/tutorials/working-with-patches/
October 6, 2018 at 10:29 am #277644In reply to: Malfunctioning private message
Prashant Singh
ParticipantPlease check: https://wordpress.stackexchange.com/questions/23401/how-to-apply-a-patch
WordPress have a good explanation as well https://make.wordpress.org/core/handbook/tutorials/working-with-patches/
October 6, 2018 at 10:08 am #277639In reply to: Malfunctioning private message
admin0478
ParticipantI think I did not speak well. Sorry for my bad English. Infact, I have this problem there: https://buddypress.trac.wordpress.org/ticket/7908. And suddenly I would have liked to know how installed the patch proposed here: https://buddypress.trac.wordpress.org/ticket/7908. Still sorry for my bad English.
-
AuthorSearch Results