Search Results for 'wordpress'
-
AuthorSearch Results
-
March 20, 2019 at 9:41 am #303744
In reply to: Register page keep refreshing
airsid
Participant“How about switching to the BP Legacy theme to see if that works?”
That is the first action i did : i deactivated all plugins exept bbpress and buddypress and i installed TwentySixteen official wordpress theme.
March 19, 2019 at 10:57 pm #303726In reply to: Best practise SEO setup for BP
sarafereder
Participanti think Yoast seo it’s the best seo plugin for wordpress you can use that
March 19, 2019 at 4:15 pm #303714In reply to: Conditional menu and BuddyPress core
Venutius
ModeratorHave you looked at https://wordpress.org/plugins/nav-menu-roles/ that’s what I use to only display some menus to logged in members
March 19, 2019 at 4:12 pm #303713In reply to: Conditional menu and BuddyPress core
superp777
ParticipantMarch 19, 2019 at 1:48 pm #303696Venutius
ModeratorRegarding changing the messages BuddyPress shows, you can create your own local translation file using the PoEdit application, see this doc:
If you really want to disable the activation emails, there’s an old plugin which I think still works:
If you have issues with it let me know.
March 19, 2019 at 1:34 pm #303695cdtrue
ParticipantThank you! That gets me half way 🙂
I still get the notification after registration about the activation link – and I do not think that the little old ladies using my site will get that they have to activate and then wait for approval (to much for them to take in).
So I now are able to stop users with the extra My Private Site-plugin and the messages sent out from BP egistration works as a charm. There is only one (Account Approved Email) that actually is sent though – I can not figure out how to get the other ones to override the BuddyPress – activation-email. And if I de-activate that e-mail no e-mail is sent at all.
Also when I click on the register-button in the registration form I get redirected to a page that says that my account needs to be activated and I have to check my e-mail to do so. I want to loose it or change the text.
If they try to log in anyway they get the wordpress opt of re-sending the activation-link. Same thing here – preferably change the text.
But where do I find the texts? I guess the re-direct page is automated from BP, the other one is from WP.
Any tips?
March 19, 2019 at 7:52 am #303690In reply to: Search activity from title or member name
Venutius
ModeratorYou can enable search for names by putting this code in your child themes functions.php:
add_filter( 'bp_activity_get_include_user_search', 'venutius_add_name_to_search' ); function venutius_add_name_to_search( $setting ) { return true; }Unfortunately there’s not a similar filter for the title, you could raise a feature request for this on https://buddypress.trac.wordpress.org/
March 18, 2019 at 11:23 pm #303681In reply to: How to REMOVE “This field can be seen by:”
chris19731973
ParticipantIn the site below, they copy the code to style.css file …
https://buddypress.org/support/topic/how-to-remove-this-field-can-be-seen-by/
You could download a plugin like this: https://wordpress.org/extend/plugins/safecss/ and add these lines of css to your style sheet, or If you have a created a child theme, you can just add these lines to your style.css file.field-visibility-settings-toggle { display:none; } .field-visibility-settings-notoggle { display:none; }I don’t have the style.css file in my Theme but these 2 files instead :
editor-style.css
theme-customizer-controls-stylesPlease do you know which CSS files need to be added or modified ?
March 18, 2019 at 7:28 am #303662In reply to: Is this possible?
Venutius
ModeratorThere’s an old plugin called BuddyPress Links which allows members to add links to a links directory and then other members can vote on those links. I think this would probably serve a similar function to what you want. However, it’s out of date and throws a lot of errors. I’ve been working on updating this and have asked the developer the code can be updated. I think for your requirement it would still need some changes so it recognises videos and embeds the video instead of a static thumbnail for the site. I think this is the closest BP has got to delivering what you want easily.
Alternatively there’s MediaPress which allows video links to be added to video galleries. You can also have a sitewide gallery that everyone can add videos to, this could serve as a basis for what you are looking for.
March 16, 2019 at 9:03 pm #303647In reply to: Wrong template display
Venutius
ModeratorAnother one I’ve just discovered is this: https://wordpress.org/plugins/dynamic-user-directory/ not tried it yet but maybe it will overload that page for you and work.
March 16, 2019 at 9:01 pm #303646In reply to: Wrong template display
Venutius
ModeratorFor side to side members pages you could try my plugin https://wordpress.org/plugins/bp-directory-views
March 13, 2019 at 2:34 pm #303518In reply to: Missing Password Validation
Venutius
ModeratorUnfortunately there’s not a before save hook for this, only after save. I guess what you could do is wait until it’s saved then validate the password but that sounds like it’s not going to give the desired UI experience. Maybe you could ask for a hook to be added?
March 13, 2019 at 2:07 pm #303514In reply to: Registered/Unregistered
Venutius
ModeratorHi there,
It’s not clear from the text exactly what you are looking for but it sounds like you’d need to do some customisation. For a lot of BP functions you only need to be a site members to perform a task and you’d therefore need to work out exactly what you’d like to restrict and then write the code for it. There are some plugins that do aspects of what you are looking for, for example https://wordpress.org/plugins/buddypress-restrict-group-creation/ will prevent standard users from creating groups and I’m currently working on a plugin to restrict messaging for users. For bbPress forums you could set the new user role to Spectator to prevent the creation of topics and replies but I think what you are looking for is probably ore granular than this and so will probably need custom code to deliver your vision.
March 12, 2019 at 8:13 am #303488In reply to: Customizing Register Page
Venutius
ModeratorHi Angela,
One way would be to customise the message already shown at the top of the register page. You can do this by creating your own translation of the text shown, and the translation can say what you like.
See this page for details on how you can create the translation:
Once you have created your translation file (.mo) my suggestion for the best way to add it to your site and manage it is to use WPT Custom Mo File.
March 11, 2019 at 9:11 pm #303461In reply to: Update buddypress from 2.9.1 to 4.2
shanebp
ModeratorA lot of things have changed since BP 2.9.
You may need to update in stages instead of all at once.
You can find all the BP versions here.March 10, 2019 at 1:37 pm #303442Venutius
ModeratorI took a look at BuddyPress Like and it looks like it’s far from ready for use, so I think I’d look at https://wordpress.org/plugins/favorites/ instead, you could create a Profile page for the users list of likes and add your weighting based on your criteria.
March 10, 2019 at 7:19 am #303435Venutius
ModeratorI think based on your requirement that for your ultimate requirement you will need some custom coding. This is due to you wanting to add weighting to the likes.
One option would be to enable new blog posts to appear in the BuddyPress activity stream. That would automatically allow BuddyPress users to favorite the activity and for it to appear in their list of favorites in their profile. However you won’t easily be able to add your weighting since the BP favorites system dones not have this functionality. But that’s the same for any existing plugin. The potential downside is that the BP Activity stream is not just posts (which would have to be enabled with a bit of code).
There are also a number of WordPress post specific likes plugins, however these don’t give you a profile page with a list of your likes and the same issue remains that they would not support you weighting.
If it was me, I’d probably look to use a plugin such as BuddyPress Like as a basis for my solution. I’ve not looked in detail at this plugin but I’m assuming it adds the ability to like posts and display a list of likes in the users profile. That would serve as a good basis for what I was looking to do. It would then need some modification in order to support your specific weighting mechanism. The complexity of that task would depend on exactly how you want your weighting mechanism to work and the technique you use to account for it when displaying the likes list.
March 9, 2019 at 11:27 am #303416In reply to: Friends List (on Member List) showing ALL members
Venutius
ModeratorHi there, I can confirm I’m also seeing this behaviour, could you raise this as a bug on Trac?
March 8, 2019 at 7:03 pm #303396In reply to: BP Nouveau – What’s New?
Venutius
ModeratorHi there, translations do work, I’ve just created a custom MO file and added it to the site using the WPT Custom MO file plugin, What’s New translated to my custom script just fine.
March 7, 2019 at 11:09 pm #303377shanebp
ModeratorSo you want a custom link that only appears when the user is not logged in, correct ?
That is not specific to BP.
Have you tried searching for WordPress solutions?
It’s a much bigger codebase.March 7, 2019 at 1:02 pm #303361In reply to: On profile Update get posted fields
shanebp
ModeratorI think a good enhancement would be for this hook to pass some data:
bp_core_general_settings_after_save
Currently, there is no way to tell if there were errors.
The same issue is found in the other files inbp-settings/actions/You can open an enhancement ticket here.
Use the same login info you use for these forums.
Include a reference to this thread in the ticket description.March 7, 2019 at 11:51 am #303357In reply to: Severe BuddyPress / Yoast conflict
msteimann
ParticipantThank you for your quick reply Venutius. I reported this issue to the Yoast support forum and hope to get feedback some day in the future. I will keep you informed.
One more thing: May I direct you to this support ticket, which describes an issue which is said to be fixed for years, but still present on my and KLEO theme developer’s system:
https://buddypress.trac.wordpress.org/ticket/8044
Thanks for looking into this ticket, and I would be happy if you could chime in.
Regards,
MartinMarch 7, 2019 at 3:36 am #303347janjalanie
ParticipantHi everyone! does anyone here experience the same thing when you compose a message then you view the thread you will notice the text above the subject like this (Conversation between you and Deleted User and you.) it has a redundant (you) how to fix this? does anyone experience the same thing? i am using buddypress Version: 4.2.0 and wordpress 5.1 thank you guys..
March 6, 2019 at 11:49 pm #303343In reply to: Multi-Line Text Area loses formatting
shanebp
ModeratorI can confirm this bug. And it is not specific to a Template Pack.
Some formatting is lost : afaik, the 3 alignment options and the numbered and bullet lists.I believe this is due to the
allowed tagsarray used by BP.
Those tags are not allowed and therefore are stripped when edits are saved.The
allowed tagsneed to be altered to allow those tags.
Or filtered to allow those tags when profile edits are saved and a Multi-Line Text Area field is present.Please open a bug ticket here.
Please reference this thread in your bug description.
Use the same login that you use for these forums.March 5, 2019 at 11:28 pm #303316In reply to: No Activation Emails
shanebp
ModeratorUnless your issue is reproducible by BP devs, it is nigh impossible to suggest a fix.
To narrow down the possible sources of the issue…
Have you tried momentarily switching to a WP theme like 2017 ?
Have you tried deactivating all other plugins and, if the issue goes away, then activating them one at a time? It’s a real pain, but often the only way to identify the source of a conflict.
Have you tried switching the BP template pack under Settings > BP > Options ?
Have you tried turning on WP_DEBUG and then checking your error log ?
-
AuthorSearch Results