Search Results for 'buddypress'
-
AuthorSearch Results
-
January 20, 2019 at 6:19 pm #302321
In reply to: Remove the “General” tab in profile settings
shanebp
ModeratorRemoving the tab could cause problems because it is the default tab.
I suggest you simply edit the page to remove those fields and replace them with a message directing users to your preferred page.
Create a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\single\settings\general.php
And then in the overload file, make your changes.January 20, 2019 at 6:01 pm #302320In reply to: Displaying Buddypress User Forms Individually
dietcheese
ParticipantI am a developer. I’m able to copy and edit templates no problem.
However, this doesn’t help as far as embedding and submitting the form components from an area outside BuddyPress.
Perhaps it isn’t possible?
January 20, 2019 at 5:50 pm #302319Topic: Remove the “General” tab in profile settings
in group forum Installing BuddyPressMike Witt
ParticipantWe have our users set their email and change their password in the MemberPress account page. I’d like to have that happen in only one place. So I’d like to remove the “General” tab from the BuddyPress profile page. Any advice on how to do that?
January 20, 2019 at 5:09 pm #302317In reply to: Displaying Buddypress User Forms Individually
shanebp
ModeratorYou need to look at the BP templates that have sections that you want to duplicate.
The templates are here:buddypress\bp-templates\
Unless you have good skills as a developer, it will be difficult to get your custom pages working properly.January 19, 2019 at 6:06 pm #302308In reply to: Email templates missing !!
Varun Dubey
Participant@teleworm1337 try to repair the email template files
Tools >> BuddyPress >> Reinstall emails (delete and restore from defaults).https://drive.google.com/file/d/1w7Ji76WDerpHqYin8kd-j5hCDtq6HU2j/view?usp=drivesdk
Also, make sure email deliveries are working fine.
January 19, 2019 at 6:02 pm #302307Varun Dubey
Participant@billysgtr with BuddyPress Nouveau template files you will have all participants avatars.
https://drive.google.com/file/d/1KqvtKjjvgU2XK9c3S40fuL0aOTSk9j86/view?usp=drivesdkJanuary 18, 2019 at 5:37 pm #302293In reply to: Custom Profil Tabs
shanebp
Moderator> I purchased a custom profile tab plugin
Was it a custom BuddyPress profile tab plugin ?
If so, the developer did a very poor job because any BP profile tab needs to handle dynamic user ids.Tell them to simply use
$user_id = bp_displayed_user_id();in the shortcode function and to ignore or remove theuser_idfrom the shortcode attributes.January 18, 2019 at 11:08 am #302289In reply to: BuddyPress on hosted shared server
vivekmathur1969
ParticipantHi, I’m even newbier (?) than @cvtbrian in that I’m just starting up with a brand new community (ie zero traffic), and plan to use Buddypress + Woocommerce, plus maybe 20-25 other plugins. I was planning to sign up for Managed WordPress hosting by Godaddy, but then i read in the BP codex/ getting started that “WordPress should be installed manually i.e. via FTP, cpanel, etc. and NOT via webhost scripts (fantastico, softalicious, etc.)which bring about numerous issues when BuddyPress is activated” – and apparently teh managed hosting doesnt allow that, so the Godaddy rep told me then i need to look at Linux hosting.
Has anyone tried BP with Godaddy Managed hosting, and would it be okay to start with shared hosting considering traffic will be very low initially (but BP+WC+plugins would need to work reasonably fast)?
If i take shared hosting now, will it be easy to move to VPS later as traffic increases?
thanks a ton for any inputs!January 17, 2019 at 6:42 pm #302280In reply to: Remove Profile Visibility Subnav
Varun Dubey
ParticipantYou can use following custom css
.buddypress-wrap .standard-form .field-visibility-settings-header { display: none; }January 17, 2019 at 3:36 pm #302274In reply to: Buddypress Tab names
Varun Dubey
Participant@lunarayven You can check following codes and use them with Snippet plugin
Change “Activity” component’s name and slug to something else.
Other references of “activity” string at the frontend can be translated using Loco Translate
January 17, 2019 at 11:22 am #302267In reply to: Styling the BP profile tabs
Varun Dubey
Participant@dwl003 no need to copy buddypress.css or min file inside the child theme.
You should be able to override the tab specific CSS with !important tags and writing codes inside appearance >> customizer >> additional CSS
http://prntscr.com/m8dj7tJanuary 17, 2019 at 9:01 am #302266In reply to: Problem when i upload avatar in registration page.
ARCangelGIRL
ParticipantHi @henrywright,
I’m using “Buddypress Upload Avatar Ajax” (Version 1.0.1) and Buddypress (Version 4.1.0).
Since upload avatar plugin was not updated I’m experiencing the same problem as @chavodbharat has mentioned – I’m getting “There was a problem cropping your avatar, please try uploading it again” error.I tried what he has suggested (edit directly wp-content\plugins\buddypress\bp-core\classes\class-bp-attachment-avatar.php) and I also tried your snippet, but I’m still getting the same problem.
Does something changed in latests Buddypress versions?
January 16, 2019 at 11:43 pm #302265In reply to: Styling the BP profile tabs
mrwassen
ParticipantOK, no replies as of yet but some progress to report:
I abandoned the idea of making minor style customizations in my WS child theme’s style.css because of the inconsistent results I was getting (see my previous post). Instead, after more hours scouring of the internet, I found a different approach which is to setup folders under my child theme folders like so:
…/wp-content/themes/mytheme/buddypress/css
I then created a new file named buddypress.css in the new /css folder, put in a couple of css entries and voila! – it didn’t work. Determined to get this working, I then spent a few more hours of scoouring and through trial and error and finally came up with the following which does work for me:
1) setup the above mentioned folder structure under the child WP theme
2) copy buddypress.css from the core buddy press css folder under the chosen template (e.g. nouveau) to the new css folder
3) rename the new buddypress.css to “buddypress.min.css” (even though it is not “minified”)
4) changes made to the new buddypress.min.css now take effect (hoorah!)Although this approach seems to work, it does raise several questions:
A) since the custom version of the css file is not “minified”, does this not defeat the purpose of minifying css files in the first place (i.e. presumably performance improvements)?
B) I would have hoped that the custom css file would only need to contain deviations from the theme’s css – however this does not seem to be the case. It appears that the entire file needs to be copied. The concern here is that when buddypress is upgraded, there may be css changes in the upgrade that are now “masked” by the custom css file which contains the older version of the styling (in cases where no modifications were made) – this seems a bit “messy” to me
C) I guess my main question really is whether the above approach which I finally settled on is valid and is the best available approach.
Sorry for the lengthy post, but I am seeking clarity on this so that I end up with a good long term solution.
Dennis
January 16, 2019 at 5:12 pm #302260In reply to: Add Column to Admin bp-groups page
shanebp
ModeratorMy mistake – the required hooks do exist.
Here is an example of adding a column to the Groups Admin page.> I’d like to show the pending members in the groups page.
You can see the pending requests by visiting the Group page > Manage > Requests.
January 16, 2019 at 1:26 pm #302259In reply to: Custom Notifications
webusat
ParticipantHi,
I am not sure it that helps but it is placing everything into the menu. So far I haven’t been able to get it to work anyway. I also forgot to mention I am using WP 5.0.3 and BuddyPress 4.1.0 and the code there is for older versions.
I just want to be able to add the count at the top of the content on the page.
Thanks for the help!
StanJanuary 16, 2019 at 9:29 am #302257In reply to: vimeo video whitespace
Venutius
ModeratorOn my test system, posting that into activity does not result in an embedded video, just a link to the video. BuddyPress does not handle video and in order to have it embed then something else is running in order to do that. It could be WordPress itself as it has embed functionality but looking at the CSS of the embedded video on your site it does not look like WordPress, it looks like there’s a plugin doing it.
January 15, 2019 at 7:13 pm #302243In reply to: Custom Notifications
Varun Dubey
ParticipantVarun Dubey
Participant@emmanuel1234 you can check wpadvancedads.com/ads-on-buddypress-pages
January 15, 2019 at 7:06 pm #302240Varun Dubey
Participant@flowta with default 2017 theme you have horizontal menu http://prntscr.com/m7mamo and you can also try with the vertical menu as well. As per theme specific support most available theme in the market have legacy template files, that’s why you get a suggestion to switch to legacy first.
@ssmalli3 you can also check one more Reign DemoJanuary 15, 2019 at 5:46 pm #302237In reply to: Groups listing to bottom of page
shanebp
ModeratorYour issue is specific to your installation. And nobody will register on your site so that they can see
the page in question.Given that you are using Avada and the Shortcodes for Buddypress plugin – there is very little chance that anyone here can help you.
> … list the groups to this page within the setting …
Sounds like an issue with Avada > BuddyPress
For that page, rather than use Avada to build the page, you may need to create a page and assign a hand-coded template to it.
There is lots of info on how to do that.
For example: https://ithemes.com/tutorials/applying-wordpress-page-template/January 15, 2019 at 4:57 pm #302235In reply to: BuddyPress Breadcrumbs
webusat
ParticipantNever mind, this wasn’t BuddyPress.
Thanks,
StanJanuary 15, 2019 at 12:34 pm #302227Varun Dubey
Participant@datenfresser You can find them inside user meta
http://prntscr.com/m7gdur
To set default values you can check previous threadJanuary 15, 2019 at 2:50 am #302219In reply to: Permalink Crash
shanebp
ModeratorDo not ever – EVER – post your admin credentials on a public web page.
[ Would you hand a copy of your house keys to ‘x’ number of random strangers you pass on the street ? ]
I have removed the credentials and replaced them with the error message that you are seeing.
I don’t have a solution to your issue.
I suspect the BuddyPress prompt to reset the permalinks is a symptom of an WordPress issue in your installation.
You might try asking on the https://wordpress.org/support/ forums.January 15, 2019 at 2:37 am #302218In reply to: Members profile page breaks during load
shanebp
Moderatorbp_is_user_forums()is not used in the current BuddyPress template files.The fatal errors are due old BuddyPress files coming from your child theme – not from buddypress plugin files.
PHP Fatal error: Uncaught Error: Call to undefined function bp_is_user_forums() in /nas/content/live/thefluentself/wp-content/themes/fluent-self-2017/buddypress/members/single/home.php:88
Perhaps there is a new version of your theme ?
Or you could ask the theme creators about the error?You could try deleting all BuddyPress files in your child theme.
Or you could try updating thebuddypress/members/single/home.phpfile in your child theme.January 14, 2019 at 2:01 pm #302207In reply to: Review ALL pending group requets
Varun Dubey
Participant@jamesmct I do not think BuddyPress have any current option to manage all pending membership for all private group at single location.
-
AuthorSearch Results