Search Results for 'wordpress'
-
AuthorSearch Results
-
May 11, 2018 at 3:24 pm #272931
In reply to: Cyrillic in username
Venutius
ModeratorBuddyPress uses the WordPress user database, so I think this is more of a general WordPress issue than one specific to BuddyPress in that if you removed BuddyPress and allowed user registrations to WordPress you would still be faced with the same issue.
You could raise this as a bug on BuddyPress Trac. but I think it’s probably WordPress that would need to change.
May 11, 2018 at 1:05 pm #272926Varun Dubey
Participant@gheebuttersnaps Seems it need some enhancement, you can report it here https://buddypress.trac.wordpress.org/report
May 11, 2018 at 11:55 am #272918In reply to: Database error
Varun Dubey
ParticipantHi @peacefulparent
There was a discussion about charset upgrade earlier, but the ticket was closed due to inactivity.
https://buddypress.trac.wordpress.org/ticket/6346May 11, 2018 at 9:46 am #272910In reply to: Does not show description in the User Profile
Varun Dubey
Participant@eduguerrero You can check https://wordpress.org/plugins/bp2wp-full-sync/ and link user bio with xprofile field
May 10, 2018 at 10:15 am #272891In reply to: Visual Composer in BuddyPress / BBpress
bergmans23
ParticipantHi Joseph,
Thanks for the input!
I choose kBase by DesignThemes ( https://themeforest.net/item/knowledge-base-helpdesk-wordpress-theme/18600587?s_rank=10 ) after reviewing and comparing a lot of premium themes and this one should be just right for this combination.
Of course I first knocked on their door with my problem, but they pointed me to the plugins…
So, as so often is case, Theme builder points at plugin developer and vice versa, with me in the middle not getting any wiser…Best regards,
Bye
WardMay 10, 2018 at 6:17 am #272888In reply to: How to change the image of top sidebar
Venutius
ModeratorFor example: https://wordpress.org/plugins/ag-custom-admin/
May 10, 2018 at 6:13 am #272887In reply to: How to change the image of top sidebar
Venutius
ModeratorYep that’s the WordPress Admin Bar. The only BP setting that affects this is that you can hide the entire bar for non logged in users via Settings>>BuddyPress>>Options.
As I said there’s a lot of plugins that will help you style this bar, just search WP Plugins for admin bar and you will find them.
May 9, 2018 at 9:14 pm #272883In reply to: How to change the image of top sidebar
bluevert
ParticipantWhat I mean is change or remove the wordpress logo image at the top of the frontpage (when you’re not logged in) the dark bar which contains “Log In”, “Register”.
May 9, 2018 at 7:21 pm #272878In reply to: How to change the image of top sidebar
Venutius
ModeratorDo you mean the WordPress Admin Bar? There’s a load of plugins that will help you customise that, including the logo. Unless you mean something else?
May 9, 2018 at 3:27 pm #272870In reply to: Discord Server Integration
wbcomdesigns
Participant@mrditt I think, the plugin does not have any linkup with WordPress to save or display any data. They display details from their server using an iframe.
May 8, 2018 at 7:55 am #272825wbcomdesigns
Participant@elagoon WP SMTP is not updated from last 4 year, try a different plugin like https://wordpress.org/plugins/easy-wp-smtp/
They have inbuilt option to change from email address, you can set it without any additional codesMay 7, 2018 at 9:42 am #272810In reply to: GDPR compliance
Varun Dubey
Participant@erictracz BuddyPress will also be ready with GDPR compliance in coming updates.
There is an ongoing discussion about it.
https://buddypress.trac.wordpress.org/ticket/7698For 3rd party plugin concern, Site owners are ultimately responsible for the all the plugins they are using at their site, and they also have to understand the functionality of each plugin including their data collection and storage methods before using them.
Regarding 3rd party BuddyPress developers, after BuddyPress GDPR compliance release they can update their plugins to hook all user specific data at BuddyPress option which allow users to delete themselves.
@hdcms You can create a profile fields with terms & condition or take a look at https://wordpress.org/plugins/simple-terms-and-conditions-for-buddypress/ plugin.May 6, 2018 at 1:00 pm #272782In reply to: Disable BuddyPress Register Page?
Venutius
ModeratorThis thread seems to have a tip to help:
Disable buddypress login page and switch back to wordpress default login.
May 6, 2018 at 11:16 am #272777In reply to: sitewide notice
sugar7
ParticipantThe first file;
<?php
/**
* @package Boss Child Theme
* The parent theme functions are located at /boss/buddyboss-inc/theme-functions.php
* Add your own functions in this file.
*//**
* Sets up theme defaults
*
* @since Boss Child Theme 1.0.0
*/
function boss_child_theme_setup()
{
/**
* Makes child theme available for translation.
* Translations can be added into the /languages/ directory.
* Read more at: http://www.buddyboss.com/tutorials/language-translations/
*/// Translate text from the PARENT theme.
load_theme_textdomain( ‘boss’, get_stylesheet_directory() . ‘/languages’ );// Translate text from the CHILD theme only.
// Change ‘boss’ instances in all child theme files to ‘boss_child_theme’.
// load_theme_textdomain( ‘boss_child_theme’, get_stylesheet_directory() . ‘/languages’ );}
add_action( ‘after_setup_theme’, ‘boss_child_theme_setup’ );/**
* Enqueues scripts and styles for child theme front-end.
*
* @since Boss Child Theme 1.0.0
*/
function boss_child_theme_scripts_styles()
{
/**
* Scripts and Styles loaded by the parent theme can be unloaded if needed
* using wp_deregister_script or wp_deregister_style.
*
* See the WordPress Codex for more information about those functions:
* https://codex.wordpress.org/Function_Reference/wp_deregister_script
* https://codex.wordpress.org/Function_Reference/wp_deregister_style
**//*
* Styles
*/
wp_enqueue_style( ‘boss-child-custom’, get_stylesheet_directory_uri().’/css/custom.css’ );
}
add_action( ‘wp_enqueue_scripts’, ‘boss_child_theme_scripts_styles’, 9999 );/****************************** CUSTOM FUNCTIONS ******************************/
// Add your own custom functions here
?>
The second contains:
<?php
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 35 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 35 ); //change this with your desired thumb height?>
May 5, 2018 at 3:45 am #272740Varun Dubey
Participant@beo9999 It’s already fixed you can followup following discussion
https://buddypress.trac.wordpress.org/ticket/7391May 5, 2018 at 3:45 am #272739In reply to: choices for visibility of user name?
Varun Dubey
Participant@demiano Profile Name field is mandatory and it’s created at a time of plugin activation. It’s hard to add visibility control on it.
You can also check a related discussion on it
https://buddypress.trac.wordpress.org/ticket/7391May 4, 2018 at 6:24 pm #272731In reply to: WP GDPR Compliance
Venutius
ModeratorThis is a bit of a wordpress issue in general, not just BuddyPress, for example much of the user info is actually from the WP user db, it’s also to do with the applications that you choose to use on WP. I believe the plan is for WordPress to build into core a Privacy Policy management system whereby plugins will be able to register their privacy/compliance options and the system admin will be able to use those to put together privacy policies using the mechanisms made available within this framework. Plugins can of course choose to implement their own solutons to GDPR.
The discussion regarding BP’s response to GDPR is here:
https://buddypress.trac.wordpress.org/ticket/7698 looks like the BP solution to this will be in 3.x.
May 4, 2018 at 6:05 pm #272729In reply to: choices for visibility of user name?
Venutius
ModeratorYou could ask for this as a feature request on Trac
There is a premium plugin I know of that does this – BuddyPress Profile Visibility Manager by BuddyDev.
May 4, 2018 at 11:29 am #272716In reply to: custom xprofile field with options
shanebp
ModeratorDo you have a validation function in your class?
Something like:public function is_valid( $values ) { $this->validation_whitelist = null; return parent::is_valid($values); }For a fairly simple example of adding a custom xprofile field, see BP xProfile Location
( yes, I know it does not yet reflect the recent changes to the Google API, but it should pass validation for your purposes )May 4, 2018 at 10:50 am #272713In reply to: Disable Change Email Address?
yusareba
Participantyep, I figured that would be a problem :’)
it honestly blows my mind that nothing is generally available for wordpress to prevent users changing their email addresses. That seems pretty fundamental
May 4, 2018 at 7:21 am #272688In reply to: Disable Change Email Address?
Venutius
ModeratorSounds like you need to remove the nav item that corresponds to that link.
There’s two menu items that possibly need to be removed. the most common one could be removed with the
bp_core_remove_subnav_item( 'settings', 'general' );function.Do you also use the WordPress/BuddyPress adminbar?
May 3, 2018 at 8:16 pm #272665In reply to: WordPress Broken During BP Activate
ChuxMark
ParticipantWordPress 4.9.5 running Twenty Seventeen theme. The only change to WP is that I deactivated Hello Dolly and installed Jet Pack. There are no other files in public_HTML. If you have no other thoughts, I am going to try terming this cPanel user and starting with a fresh domain, then I will install BP on WP
- without
Jet Pack.
THANKS for getting me this far.
May 3, 2018 at 10:34 am #272644In reply to: Getting Error When Clicking on Profiles
Venutius
ModeratorI think I’d be tempted to raise this as a bug on trac:
May 3, 2018 at 5:16 am #272628Venutius
Moderatorhttps://buddypress.trac.wordpress.org/ticket/7792
I’ve raised a ticket for this.
May 3, 2018 at 12:59 am #272623 -
AuthorSearch Results