Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1,876 through 1,900 (of 31,071 total)
  • Author
    Search Results
  • Venutius
    Moderator

    Are you using BP Nouveau? Are you using Cover-images?

    if so you would need to overload the plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/single/cover-image-header.php file:

    1. Setup a child theme.
    2. make a copy of cover-image-header.php
    3. Edit line 23 of cover-image-header.php as follows:

    Current:

    <h2 class="user-nicename">@<?php bp_displayed_user_mentionname(); ?></h2>

    edited:

    <h2 class="user-name"><?php bp_core_get_username( bp_displayed_user_id() ); ?></h2>

    4. place your edited copy of cover-image-header.php in themes/your-child-theme/buddypress/members/single

    #306125
    Venutius
    Moderator

    Have you ruled out conflicts with other plugins or your theme?

    In a vanilla install this feature works so it’s reasonable to suppose there’s something in your specific configuration that is preventing this functionality.

    Try deactivating all other plugins apart from BuddyPress and switching to a default theme such as 2019.

    Venutius
    Moderator

    ONe option is to overload the buddypress css by creating a file in themes/buddypress/css/buddypress.min.css you could then choose not to add any bp css styling to those elements.

    #306100
    jsanjak
    Participant

    Yep, the issue is not with the theme because the problem still occurs when I use 2019. This was on of the first things I did, when I thought the problem was with the theme.

    WP engine support did fully uncache that page, but nothing happened.

    An alternative solution to getting this to work would be to disable the “public messaging” feature entirely. The initial reason I found this problem is because public messaging takes you to an activity form that starts with @user (whoever you are messaging). If I can’t get the activity form to appear, then I would rather just remove the feature. Is there any simple way to do that?

    #306075
    Venutius
    Moderator

    First thing I’d try is switching to the 2019 theme and see how that works.

    #306074
    delauney
    Participant

    WP 5.2.1, BP 4.3.0, PHP 7.3.5, GhostPool Aardvark Theme 3.5

    I can create a group, now since my last post where the theme couldn’t work with nouveau, couldn’t just swap to legacy, had to copy template files to theme BP folder for group single.

    Now, strangely it appears to all work, but under admin it says “no admin” and to the right of the photo it says “group active not yet active”

    #306072
    shanebp
    Moderator

    Try deleting the wpengine cache and turning the settings ‘down’ as much as possible – they are quite aggressive about caching, which is great for WP but can cause issues with BP.

    Try switching momentarily to a WP theme like 2019 to confirm that the issue is not specific to woffice.

    #306071
    delauney
    Participant

    GhostPool got back with me and said the legacy theme was necessary. I copied the BP Temp Legacy group-header into the theme BP Groups folder and it fixed the problem. Changing to legacy wouldn’t work for some reason, but that work around fixed it. Thanks for your help!

    liammitchell
    Participant

    When using wp_enqueue_scripts I should set a higher priority number.
    But need to remove from parent themes css enqueue first, maybe something like this will work.

    
    /**
     * Proper way to enqueue scripts and styles
     */
    function it_company_child_theme_scripts() {
      wp_dequeue_style('bootstrap'); // from parent theme
      wp_deregister_style('bootstrap');
      wp_enqueue_style('bootstrap', get_template_directory_uri().'/css/bootstrap.css', 10);
    }
    add_action( 'wp_enqueue_scripts', 'it_company_child_theme_scripts' );
    
    #306066
    Venutius
    Moderator

    This looks like you have overloaded the group-header.php file with the BP Nouveau version, but you have set your bp theme to Legacy.

    #306065
    delauney
    Participant

    I have WP 5.2.1, BP 4.3.0, PHP 7.3.5, GhostPool Aardvark Theme 3.5

    I can create groups, but when I click on the group, it never opens and I get a white page.

    I have tried deactivating plugins, didn’t resolve issue.
    In error logs I have this:

    PHP Fatal error: Uncaught Error: Call to undefined function bp_nouveau_group_meta() in /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress/groups/single/group-header.php:24
    Stack trace:
    #0 /home4/bandarro/public_html/wp-includes/template.php(724): require()
    #1 /home4/bandarro/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(155): load_template(‘/home4/bandarro…’, false)
    #2 /home4/bandarro/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(61): bp_locate_template(Array, true, false)
    #3 /home4/bandarro/public_html/wp-content/themes/aardvark/lib/sections/single/page-header.php(112): bp_get_template_part(‘groups/single/g…’)
    #4 /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress.php(21): ghostpool_page_header(0, ‘gp-fullwidth-pa…’, ”, ‘320px’)
    #5 /home4/bandarro/public_html/wp-includes/template-loader.php(78): include(‘/home4/bandarro…’)
    #6 /home4/bandarro/public_html/wp-blog-header.php(19): require_once(‘/home4/bandarro…’)
    #7 /home4/ban in /home4/bandarro/public_html/wp-content/themes/aardvark/buddypress/groups/single/group-header.php on line 24

    #306062
    jsanjak
    Participant

    Sorry for the error code dump. According the admins of wpengine there is no minification implemented.

    The theme I am using (woffice) uses BuddyPress and has thousands of installs that work just fine. This error occurs with nothing but a fresh install of the theme and no other plugins.

    Any other thoughts? To me it seems that there is some interaction between BuddyPress code and wpengine, but I really don’t have the technical background to figure it out.

    #306060
    darunia77
    Participant

    Hi everyone.
    Recently I have increased my avatar thumbnail sizes to about 225×225 and full size image to 270×270 but for the sake of the retina, I’m also trying to upload them larger much larger.

    I have changed my settings to this below but for some reason, the images still come out blurry – even if uploading very his res photo. Is there anything else I should do? I tried this code both in the child theme functions.php and in bp-custom.php but still blurry (both avatar and main image but avatar worse).

    if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
    define( ‘BP_AVATAR_THUMB_WIDTH’, 300 ); //change this with your desired thumb width

    if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
    define( ‘BP_AVATAR_THUMB_HEIGHT’, 300 ); //change this with your desired thumb height

    if ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
    define( ‘BP_AVATAR_FULL_WIDTH’,300 ); //change this with your desired full size,weel I changed it to 260

    if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
    define( ‘BP_AVATAR_FULL_HEIGHT’, 300 ); //change this to default height for full avatar

    if ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
    define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 800 );

    #306047
    concinnityadmin
    Participant

    @shanebp,

    I tried 2 things. 1 – adding the custom bp folder via SSH via FileZilla. This caused a fatal error, so I had to reinstall from backup.

    Then I tried #2,
    I went to appearance > theme editor

    Went to functions.php

    Underneath this section,
    /****************************** CUSTOM FUNCTIONS ******************************/

    // Add your own custom functions here

    I pasted the code:
    add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ );

    This caused a fatal error on my site.

    I am thankful for your help, but I request that you actually help me by giving me instruction instead of telling me that I’m doing it wrong or I should look for help elsewhere. I am sufficiently capable of injecting code and dealing with lower sophistication items like this.

    Can you please walk me through this?

    felixzc
    Participant

    Hello,
    I’m working on my WordPress web site and I want to import groups (with groups type as possible) with a csv file or other I can create. The file will come from another database in which I have a lot of data, and I want to transform that data in groups.
    I’m working on the theme BuddyBoss with BuddyPress.
    Does someone know how to do that?
    Thanks in advance,
    Felix

    #306031
    Venutius
    Moderator

    It can go in your child-themes function.php file or you can create a bp-custom.php file in the plugins directory and put the code in there.

    #306014
    ikaraibes
    Participant

    Thanks for the answer. Sorry I made a mistake, Themosaurus support may have say there is the same issue for standard wordpress theme…confused

    Hi @icharme,

    After switching theme to the default one (Twenty Nineteen), it seems that this issue comes directly from BuddyPress, another plugin or your server.
    Unfortunately, we have no clue. ????‍♂️

    As this issue is related with the BuddyPress plugin, it’s best if you try to reach the plugin authors.
    They will be more informed and better suited to help you.

    To go further, we invite you to post your request on their support forums:
    https://buddypress.org/support/

    We remain available for all support requests related with the use of your theme.

    Best,

    #306012
    shanebp
    Moderator

    I’ve never heard of that specific issue re BP + s2 members.

    If you deactivate s2 Members, does the issue persist?
    If you switch momentarily to a WP theme like 2019, does the issue persist?

    #306011
    shanebp
    Moderator

    > (no issue with twenty nineteen)

    Then it is obviously an issue with the Themo theme.
    Does their theme include BuddyPress templates?
    Does their theme enqueue javascript or minify javascript?

    Cropping issues are usually due to an absence or conflict re javascript.

    Until somebody with experience with that theme sees your post, it is very unlikely that any solutions will be found here.

    ikaraibes
    Participant

    Hi,

    We are working on a new dating site with Themosaurus Theme (Gwangi v1.3.1) and it seems that an issue could be related to buddypress. We contact the support of Themosaurus who tell us to contact BuddyPress support. (no issue with twenty nineteen)

    We try to capture the discussion on Themosaurus forum :

    Regards.

    David

    #306006

    In reply to: Unable to Post???

    LordLiverpool
    Participant

    OK Great thanks @venutius

    I will open a ticket with the theme developer.

    Sorry to take up your time, thank you for your help, it’s appreciated.

    Kind Regards.

    #306004

    In reply to: Unable to Post???

    LordLiverpool
    Participant

    @Venutius

    Thanks for replying.

    If I deactivate buddypress the login menu disappears. I assumed it was core BuddyPress functionality.

    Looking down the list of other plugins I can’t see another plugin that can provide that functionality.

    Here is a screenshot to the pop-up which appears on the registration page if I click the login link.

    https://i1091.photobucket.com/albums/i395/LordLiverpool/2019-05-20%2014_40_53-Create%20an%20Account%20%20Age%20Friendly%20Economy_zpsjqgayi9h.pngLogin Page

    FYI

    WordPress Version: 5.2
    BuddyPress Version: 4.3.0
    Theme: OneCommunityVersion: 3.2.1

    Is this a theme issue?

    Thanks very much.

    #305962
    jennifersanchez
    Participant

    Warning: Cannot modify header information – headers already sent by (output started at public_html/home/wp-content/mu-plugins/message.php:1) in /public_html/home/wp-content/themes/eonet/inc/hooks.php on line 347

    Warning: Cannot modify header information – headers already sent by (output started at public_html/home/wp-content/mu-plugins/message.php:1) in public_html/home/wp-admin/includes/misc.php on line 1198

    #305957
    jsanjak
    Participant

    I am having an issue with BuddyPress public messaging. When users attempt a public message, the activity form (buddypress nouveau) does not appear on the page. It appears that the requisite javascript files are unable to load. I’ve tested this with default wordpress themes ( twentynineteen). I contacted my hosting service provider, wpengine, and they identified the following database error:

    [Fri May 17 17:14:48.061122 2019] [php7:notice] [pid 18420] [client 127.0.0.1:27604] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘( user_id, blog_id ) VALUES ( 1, 1 ) /* From [menastage.wpengine.com//wp-admin/?’ at line 1 for query INSERT INTO ( user_id, blog_id ) VALUES ( 1, 1 ) /* From [menastage.wpengine.com//wp-admin/?wp-cmd=ensure] in [/nas/content/live/menastage/wp-content/plugins/buddypress/bp-blogs/classes/class-bp-blogs-blog.php:127] */ made by require_once(‘wp-admin/admin.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, WpeCommon->real_ip, WpeCommon->process_internal_command, WpeCommon->ensure_standard_settings, wp_update_user, wp_insert_user, do_action(‘profile_update’), WP_Hook->do_action, WP_Hook->apply_filters, call_user_func_array, bp_blogs_add_user_to_blog, bp_blogs_record_blog, BP_Blogs_Blog->save

    Can anyone identify a solution to this issue? Or perhaps anything else I should try?

    #305950
    pandraka
    Participant

    Good Morning,

    WordPress 5.2
    BuddyPress 4.3.0

    I’m in the process of creating a multisite which will contain an existing BuddyPress site. Right now I’m just setting up the site. I’ve created a simple top site, then enabled BuddyPress. When I upload bp-custom.php the site starts to throw errors:

    The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.

    Warning: Cannot modify header information – headers already sent by (output started at /home/navalw5/XXX.XXXXwargaming.com/wp-content/plugins/bp-custom.php:7) in /home/navalw5/test3.navalwargaming.com/wp-includes/option.php on line 948

    If I remove the bp-custom.php these errors go away.
    This is the code in bp-custom:
    <?
    add_action( ‘init’, ‘remove_xprofile_links’ );
    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 3 );
    }
    >?
    Pretty standard and a direct copy from the production site, I was curious so I just uploaded a blank bp-custom. I still got the errors.

    I had network activated BuddyPress, so I deactivated and then activated the plugin in the main site.

    Still, have the error.

    My intention is to have a multisite / BuddyPress installation. where members can be part of several or just one other department of the organization.

    site/org1
    site/org2
    Site/org3

    each site would have its own groups & forums

    All the research seemed to indicate that BuddyPress / bbpress should be network activated.

    wp-config. currently looks like:

    define(‘MULTISITE’, true);
    define(‘SUBDOMAIN_INSTALL’, false);
    define(‘DOMAIN_CURRENT_SITE’, ‘test3.navalwargaming.com’);
    define(‘PATH_CURRENT_SITE’, ‘/’);
    define(‘SITE_ID_CURRENT_SITE’, 1);
    define(‘BLOG_ID_CURRENT_SITE’, 1);
    define( ‘BP_ENABLE_MULTIBLOG’, true );

    I’m confused as to the error, should I be using the child theme’s function.php instead? Any help is greately appreciated.

    Thanks

Viewing 25 results - 1,876 through 1,900 (of 31,071 total)
Skip to toolbar