Search Results for 'buddypress'
-
AuthorSearch Results
-
October 3, 2016 at 5:13 pm #259372
In reply to: BuddyPress Components
mikke1978
ParticipantThank you @danbp for replying. For the past month, I have been trying to get BuddyPress to work for me on Yahoo’s hosting server. Yahoo has been offering me no help to resolve the issue. They keep telling to contact buddypress. org or wordpress.org. Basically, they got the money for one year, and they don’t care if the problem is resolved or not. They don’t even seem to understand the problem.
Everything is configured according to the required settings for BuddyPress to supposedly work. I have custom permalinks, each component has its own page etc.. I am not sure what you meant by WordPress doesn’t use www by default, but the way Yahoo host is set up for WordPress, we have to install WordPress in a default folder called “blog” (http://www.site.com/blog) or any name we choose. And I think this is what is causing the problem. BuddyPress components don’t know where WordPress is installed. Under the Dashboard-General Settings, both the WordPress Address (URL) and Site Address (URL) show the correct path (http://www.site.com/blog). I think it is a matter of telling BuddyPress components where to look for the WordPress installation.And this is where I lack experience and knowledge. I tried every possible solution I found online, especially on the WordPress site regarding installs in own directory: https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
Nothing worked for me. Yahoo told me they do not support the .htaccess file, they don’t seem to have a web.config file. I am sure there is a solution where a certain file(S) can be edited and all would be resolved, but I need someone to point them out to me since I can’t browse the hundreds of installed BuddyPress files looking for the ones that point to the WordPress installation location. I would really appreciate anyone’s help to resolve this issue.
Currently, I installed WordPress locally on my laptop, I set up BuddyPress plugin and it works like a charm. Yahoo suggested I uploaded it to the root of my host account, but I am have issues with the data base set up.
If I can get a solution for the default install that I get with Yahoo host set up, I would really appreciate it.
Thanks!
Mikke1978
October 3, 2016 at 4:11 pm #259369In reply to: Private message from student only for teacher
Venutius
ModeratorFor the second part of your ask there are a couple of mass messaging plugins that allow only certain roles to send messages to everyone.
one does it from the front end, the other from the backend.
https://wordpress.org/plugins/mass-messaging-in-buddypress/
https://wordpress.org/plugins/mass-messaging-for-buddypress-by-alkaweb/
October 3, 2016 at 4:09 pm #259368In reply to: TinyMCE for replying to messages
danbp
ParticipantHi guys,
you should read topics completely! 👿
In one of my answer to the above mentionned, you have the necessary information to get it to work for replies. I tested it today and it works for me.Now I repeat it again, it’s not done to add wp_editor to a textarea which was never intented to be a post editor. It’s a simple message composer ! Do you write MMS with Word ?
By adding wp_editor to this composer, you can only add the the HTML editor, like the one you have on this forum. The visual tab won’t work because of numerous filters and the way wp_editor is working. Activating the visual tab on the compose screen will also break your theme, in 99% of cases.
Once you have it correctly displayed, you will see that most of the tags will be striped. This can be avoided by defining $allowedtags in wp_kses filter. The inconvenient of this is that it will also be available on what’s new form and any other form you use on your site. So, you’re warned.
The code i used today, including allowed tags i had to activate.
function bpfr_compose_msg_tiny_editor() { add_filter ( 'user_can_richedit' , create_function ( '$a' , 'return false;' ) , 50 ); $content = ""; if ( isset( $_GET['r'] ) ) : $content = esc_textarea( $_GET['r'] ); endif; $editor_settings = array( 'content' => bp_messages_content_value(), 'textarea_name' => 'content', 'editor_id' => 'message_content', 'teeny'=>true, 'media_buttons'=>false, 'quicktags' => array( 'buttons' => 'strong,em,link,img,block,del,ul,ol,li,code,close' ) ); wp_editor( bp_messages_content_value(), 'message_content', $editor_settings); } add_action( 'compose_edit_tools', 'bpfr_compose_msg_tiny_editor' ); function bpex_allowed_tags() { global $allowedtags; $allowedtags['img'] = array( 'src' => array () ); $allowedtags['ul'] = array(); $allowedtags['ol'] = array(); $allowedtags['li'] = array(); } add_action('init', 'bpex_allowed_tags', 10);How-to is explained on the other topic.
October 3, 2016 at 12:44 pm #259359In reply to: connections
Henry Wright
ModeratorThis isn’t possible by default. You will need to find a plugin or add some custom code to get this done. Try looking here first to see if something is already available:
October 3, 2016 at 12:43 pm #259358In reply to: Admin notes on profiles
Henry Wright
ModeratorThis can’t be done with BuddyPress by default. You’ll need to find a plugin. Try looking through the Plugin Directory to see if anything is available:
October 3, 2016 at 2:51 am #259347Stacy (non coder)
ParticipantChanges on line 6317, doesn’t change front end.
#: bp-templates/bp-legacy/buddypress/activity/index.php:142
#: bp-templates/bp-legacy/buddypress/groups/single/activity.php:12
msgid “RSS”
msgstrOctober 2, 2016 at 12:11 pm #259336In reply to: Dedicated pages for groups, is possible?
Venutius
ModeratorAh, just found out that this plugin causes a conflict with BuddyPress Group Extras, so avoid it, by the looks of things it’s unlikely to get fixed anytime soon.
October 2, 2016 at 12:48 am #259331In reply to: Who’s Online Widget
danbp
ParticipantYes it’s different and ?
And this is how to use what i already suggestedfunction users_last_activity() { $user_id = bp_displayed_user_id(); //$activity = bp_get_user_last_activity( $user_id ); // raw date/time $activity = bp_core_get_last_activity( bp_get_user_last_activity( $user_id ), __('active %s', 'buddypress') ); // ago format like on members directory if( bp_is_active( 'activity' ) ) { echo $activity; } } // testing the result on profile header add_action( 'bp_profile_header_meta', 'users_last_activity' );October 2, 2016 at 12:13 am #259330In reply to: Hi. I would like to help develop the rest api
danbp
ParticipantHi,
all details here:
The fastest way to get in touch with the devs is to use the BudddyPress chanel on Slack.
October 1, 2016 at 4:24 pm #259316In reply to: Who’s Online Widget
danbp
ParticipantClients requiring many things ! Some can be done, some not. It’s to you to explain them that it’s not possible. Or only with a very huge additionnal budget. This argument is mostly the best to opposite to an obtuse “i want this feature”. Diplomacy, diplomacy… 👿
1) You count the number of avatars on the widget ! Or something like this. 😉
2) who’s online refreshes after 5 mn. See https://buddypress.trac.wordpress.org/ticket/3590
3) try with bp_get_user_last_activity()Also wp-content\plugins\buddypress\bp-members\classes\class-bp-core-whos-online-widget.php
October 1, 2016 at 3:48 pm #259311In reply to: Disable BP reg
Henry Wright
ModeratorIf I leave the registration and activation pages blank I get a warning all the time in the backend.
The warning won’t cause harm but I agree you should be able to dismiss it. You could open a ticket on Trac for the core developers to take a look at?
October 1, 2016 at 2:22 pm #259307In reply to: Whats new tinymce not showing HTML inline styles
Hitesh Makvana
ParticipantI have done code from this and add few js for saving data form tinymce on change event it will save to textarea.
https://buddypress.org/support/topic/add-tinymce-to-activity-post-form/Now what i need is i want to store those inline css code ex. style =”color:#02251″ inside every html tag.
But what’s new activity not storing or showing in frontend after saving data…October 1, 2016 at 1:28 pm #259305danbp
ParticipantHi @dphelun,
– 1) no idea ! It depends of what you know about WP and BP, coding and templating
– 2) see 1…
– 3) in theorie yes. In real life… check the forum… and point 1.Don’t buy a theme before you tested your project with all plugins and fonctionalities correctly working on a WP+BP default install. Use one of WP’s default theme, ie. Twenty Sixteen or Fifteen. Or even all coming with WP
This tests should be done on a test site (locally or online, but not on a production site)
Default install, because it’s the only waranty for you and the project to work properly in a respecfull environment of WP standarts. Once ok you can jump to a premium theme if you estimate it is worth. That said many free themes are just ideal too.
I would just warn you to avoid frameworks and page builders- specially because BP doesn’t use WP pages like WP does. Focus on the theme itself, and not on plethoric theme functionnalities. Theme is for layout. Plugin is for functionnality.About Themes
you will find a lot of themes on the net. Most with nice pictures and impressive list of functionnalities and prices. Problem is that this marketing arguments rarely fit with a project. And if you’re unable to customize it, you go towards weird issues and will be lost in no time.About plugins
Like for themes and of course your technical level.From what you tell, i would consider WP Job Manager and his (premium) add-on for BuddyPress.
Messaging is included in BuddyPress, even if it is not exactly meant as instant messaging.But test the message component first as is before going further. And keep in mind that less is more.
October 1, 2016 at 11:47 am #259302In reply to: translating bbpress show internal server error
danbp
Participant– I know nothing about Loco translate as i never used it. And i can’t read chinese, so i can’t help you with this specific translation.
– I never seen a error 500 after modifying a translation.
– The only thing i’m sure (because of the error messages) is that it is Loco who doesn’t find a file or can’t access to it properly.
– Re-check Loco Settings and try another path option… Or maybe use a custom path called MyTranslation and use the plugin only to translate. Once done, deactivate Loco and move the mo file manually to the right folder. By doing this you eliminate the eventual plugin issue and still have a mo file you can use (hopefully).
– Ensure your BP’s po/mo files have correct file extension and use the correct path to file:
/wp-content/languages/plugins/buddypress-zh_CN.mo & buddypress-zh_CN.po
Personnaly, i use poEdit and only on my computer and never directly on a site.
October 1, 2016 at 11:29 am #259301In reply to: Who’s Online Widget
tronix-ex
ParticipantHi danbp,
I actually googled it but didn’t find except wp-useronline it does the same functionalities but sometimes it shows wrong url and also it tracks users by their ip not the username.
Please suggest something like this as buddypress has already who’s online widget which is good but if it can also show the browsing page it would be good.
Thanks,
October 1, 2016 at 9:07 am #259300In reply to: translating bbpress show internal server error
bunse2011
ParticipantThanks for you reply.
Sorry, it is my typo………… my problem is with buddypress translation instead of bbpress.
I have contacted with the loco team, but they asked me to contact buddypress, as the the problem is only with the buddypress po.mo that I download from https://translate.wordpress.org/projects/wp-plugins/buddypress
could you please help me?
October 1, 2016 at 8:56 am #259299In reply to: translating bbpress show internal server error
danbp
ParticipantHi,
you are on the BuddyPress support.
bbpress questions should be asked on bbpress support.
And as you use Loco Translate plugin, and apparently have an issue with it, you have to ask on the LT plugin support.To get more about chinese translation, help and much more, please read the Polyglots blog.
October 1, 2016 at 8:49 am #259298In reply to: Different Languages for WP and BuddyPress
danbp
ParticipantHi,
all you have to do is to use a custom translation for BuddyPress !
This can be done with help of this plugin.Actually, WP uploads automatically all available translation for itself and any of his dependencies: themes and plugins(when exist) accordingly to the site language. Ie. brazilian portugue (pt_BR.mo)
In your case, while using the plugin, WP will remain in portuguese and as you will use buddypress-en_US.mo or buddypress_en_GB.mo as custom translation, anything related to BP will be in english.
Of course, this behave will always be used even AFTER an update of WP or BP and both updated to portuguese.
The avantage of the plugin is that you haven’t to struggle with complicated domain settings and hacks, because he does it for you by using a different path for any custom translation (in your case, BP’s english version). The file is stored in /uploads/wpt-custom-mo-file/buddypress-what_EVER.mo
You simply need to remember to download manually the english BP version.
Translation files can be downloaded here.Hope to be clear. 😉
October 1, 2016 at 3:16 am #259293In reply to: securing admin login user name
ckchaudhary
ParticipantHi Earl,
Two things you can do:- Hide admin user from members list. This post has some answers:- https://buddypress.org/support/topic/hide-admin-from-members-and-activity/
- Change the user_nicename field in users table in database, for the admin user.
I suggest going with the first option.
September 30, 2016 at 7:33 pm #259290In reply to: Paid Membership Pro and Buuddypress – Registration
Marcos Nobre
ParticipantI have this combination of plugins working on one of my website, it works just fine. in terms of registration, I set buddypress registration page to none and created some custom registration pages for PMP.
September 30, 2016 at 4:53 pm #259285In reply to: bp-template-notice failure
danbp
ParticipantAs it is working, you can’t expect a fix. 😉 (see #6112) If you think you have found a bug, open a ticket and give any details to recreate the issue: theme name, used plugins, php version.
Have you tried to create an error ? When you’re sure that a notice should appear, and you don’t see it, check first the source of the page (right clik – page source). Sometimes you’ll find it in the code but something avoid it to appear on the screen.
September 30, 2016 at 2:24 pm #259279danbp
ParticipantHi,
you read the wrong article.
You say that you installed bbPress 2.5.10 plugin today. So reading about forum migration is useless ! 😉Better try to follow what’s explained here.
September 30, 2016 at 8:48 am #259273In reply to: Custom Post Type Support for Activity
caykimtien88
Participantfunction plugin_registers_post_type() { $args = array( 'public' => true, 'labels' => array( 'name' => __( 'Artikel', 'your-plugin-textdomain' ), 'singular_name' => __( 'Artikel', 'sozialdynamik' ), 'bp_activity_admin_filter' => __( 'Neuer Artikel veröffentlicht', 'sozialdynamik' ), 'bp_activity_front_filter' => __( 'Artikel', 'sozialdynamik' ), 'bp_activity_new_post' => __( '%1$s hat den neuen <a href="%2$s">Artikel</a>', 'sozialdynamik' ), 'bp_activity_new_post_ms' => __( '%1$s hat den neuen <a href="%2$s">Artikel</a>, on the site %3$s', 'sozialdynamik' ), ), 'supports' => array( 'title', 'editor', 'buddypress-activity' ), 'bp_activity' => array( 'component_id' => 'activity', 'action_id' => 'new_sd_article', 'contexts' => array( 'activity', 'member' ), 'position' => 100, ), ); register_post_type( 'sd_article', $args ); } add_action( 'init', 'plugin_registers_post_type' );September 30, 2016 at 8:37 am #259272In reply to: Dedicated pages for groups, is possible?
caychumngaygiong1
ParticipantHi,
Is there a premade plugin to achieve that instead of coding as We are not a coder?
Usually, where do people put group description and their activities in Buddypress?
Thanks
September 30, 2016 at 8:36 am #259271In reply to: Change MetaDescriptions
Paul Wong-Gibbs
KeymasterWP SEO plugins won’t work on those kind of BuddyPress “page”, because they actually are not real “pages”, so everything gets confused.
I’ve not seen a BuddyPress-specific SEO plugin – I suspect some people don’t realise they aren’t handled by most SEO plugins – or have been built with custom code.
-
AuthorSearch Results