Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 1,151 through 1,175 (of 32,561 total)
  • Author
    Search Results
  • #318262
    Varun Dubey
    Participant

    @bibblybob you can test https://wordpress.org/plugins/no-suggested-password/
    for profile navigation arrow that might be theme specific

    Varun Dubey
    Participant

    @beenfishinglately getting the same error for all activities for just random one, you can also test using 2021 theme to make sure current active theme is not creating an issue.

    #318257
    Varun Dubey
    Participant

    @satyrography test same with default wp 2021 theme

    #318240

    In reply to: Auto Refresh

    songdove
    Participant

    On the sitewide activity, I see “load newest”, but on the profile activity, or on whatever the page is that loads when you click to see a full conversation, or view a notification of someone’s comment, “undefined(1)” not only shows, but starts incrementing endlessly till you click it or leave the page. And don’t tell me to change the theme, I’ve tried a dozen themes now at least to get every piece working I need for my buddypress puzzle, this should work no matter what the theme is. If there IS a particular css call being messed up, what is it so I can add it to the customizer Additional CSS area?

    #318218
    gisellewc
    Participant

    Hi! I modified my entry.php file on the child theme and the comment button stopped working, I tried putting the original into my child theme and it still not working. How can I change it without breaking the comment button?

    #318193
    mysitefixesit
    Participant

    So this seem to be the forum that has current users talking.

    Issue: Buddypress widgets and Buddypress/BP plugins for media not working correctly for updates.

    Discussion: So using the latest activities there are a few thing seen.

      Creating Activity

    • when updates selected any activity with an image will not show, so latest list is not correct
    • when gallery updates selected activities will show latest but only if no images attached, so latest list is not correct.

    Buddypress version: 7.3.0
    Wordpress Version: 5.4.5 but have tested with newer version
    Plugin: Mediapress 1.5.1 (able to control what media can be added to community)
    other Plugins: n/a have disabled in testing

    Solution: None found so far

    Alternate: Alter code at plugin/level – have not done(but able to if need/able to write new code)

    Theme Goal: Achieved – twitter/like community.

    traceykin
    Participant

    Hi

    I was wondering if you could help me please with php.

    After the user fills in the create an account section and base register form I would like 2 things to happen when the user the hits complete signup button.

    1. Disable the auto activation so I can assign a member group in the wordpress users section
    2. Redirect to an external website for their tiered membership payment

    I have tried this for the redirection but I cant get it to work (I added the URL). I placed it in the child theme’s function.php

    function ps_bp_redirect($user) {
    $redirect_url = ‘url goes here’;
    wp_safe_redirect( add_query_arg( array( ‘user’ => $_POST[‘signup_username’] , ’email’=> $_POST[‘signup_email’]), $redirect_url ) );
    }
    add_action(‘bp_core_signup_user’, ‘ps_bp_redirect’, 100, 1);

    and I used this to stop the auto activation and this works perfect. I added the code to snippets plugin.

    add_filter( ‘bp_core_signup_send_activation_key’, ‘ps_disable_activation_email’ );
    function ps_disable_activation_email() {
    return false;
    }
    add_filter( ‘gettext’, ‘ps_change_activation_message’, 20, 3 );

    function ps_change_activation_message( $translated_text, $text, $domain ) {

    switch ( $translated_text ) {
    case ‘You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.’ :
    $translated_text = __( ‘Your membership account is awaiting approval by the site administrator.’, ‘buddypress’ );
    break;
    }

    return $translated_text;
    }

    I am using the newest version of wordpress and buddypress Version 7.3.0

    Many thanks and kind regards

    Tracey Kinchella

    #318168
    systmx
    Participant

    Hey all.

    I’m trying to determine the best way to change the header and footers on my buddypress pages like member etc. I’ve done a fair bit of searching, but haven’t been able to find the right approach. It seems like something simple that I’m just missing. To be clear, I want, for example, member pages or activity to use a theme header or footer I specify for that page…very similar to what I could do for regular wordpress pages.

    Thanks for any help you can provide!
    Tim

    #318143
    jesusinica
    Participant

    The error seems to be back, uploading any photo under 452px causes the issue.

    The solution suggested by @dragoeco seems to work:

    
    define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 150 );
    
    

    My installation uses the docker image: wordpress:php7.4-fpm-alpine

    My environment:

    
    PHP: 7.4.13
    WordPress: 5.7.1
    BuddyPress: 7.3.0
    GD: bundled (2.1.0 compatible)
    Imagemagick:3.4.4
    
    

    Plugins enabled:

    
    BuddyPress: 7.3.0
    
    

    Theme:

    
    Twenty Twenty-One: 1.2
    
    
    #318130
    funkydiver
    Participant

    Is there a way to stop each reply indenting… it makes the messaging very quickly unreadable on any screen.

    It’s not Theme related, as I’ve switched it to different themes and it’s still doing it.

    Also, the same with spam being repeated.

    New to BP, so apologies if it’s something simple I’ve overlooked.

    http://fringenetwork.co.uk/wp-content/uploads/2021/04/indent.jpg

    songdove
    Participant

    How do I fix the fact that the “read more” button on a long post doesn’t work? I’ve tested this in three themes: Ixion, Fluida, and now Melos Dark. Is there a way to enforce a character limit if this isn’t fixable?

    tantrigger
    Participant

    Hello,

    the signin and signup form is mixing english and german language

    Sign in Form which should be displayed in German language

    Can someone please help me to fix this?

    I’m pretty new to wordpress and buddyboss
    I’m using plattform v.1.5.8 and theme v1.6.5 and wp 5.7.1.

    #318102
    shanebp
    Moderator

    You cannot overload core files in a theme – only template files which are in this dir: bp-templates.
    To change messages, use the language file.

    Customizing Labels, Messages, and URLs

    #318100
    michaelburnell1
    Participant

    Hey guys i really hope you can help.

    i have buddy press with inspirebook theme.

    everything works well except when me or users try to upload media it shows a reaaaaaaly slow loading bar but if you just press post it will post it anyway. but the main thing is no photos or videos are showing when someone uploads them , ive checked all settings and tried looking for conflicts

    #318099
    r083r7
    Participant

    Found the file!
    It’s in buddypress > bp-groups > bp-groups-template.php

    But I’m not sure how to create the folder structure in my theme folder, I tried this but it didn’t work 🙁

    [child-theme-folder] > buddypress > bp-groups > bp-groups-template.php

    #318089
    Mathieu Viet
    Moderator

    Hi @dimensionmedia


    @vapvarun
    brought your topic to our attention during today’s dev-chat. I believe both needs can be satisfied if we migrate our custom URI to WP’s Rewrite API.

    If you look at this comment/patch I had a proof of concept working (the patch probably needs a huge refresh). Our main concern is the potential damage that BuddyPress Plugins/Themes could face.

    One possible way to finally progress about it is to use the patch to build a plugin so that it’s easy to deactivate if there’s an issue, and it’s also faster to iterate from the plugin to solve one by one the compatibility issues as they arrive.

    I’ll look into it once 8.0.0 is released 👋

    #318085
    Varun Dubey
    Participant

    @american2020 you can use these code inside child theme functions.php or using code snippet plugin
    https://pastebin.com/xiYQNXLU

    #318081
    fraughtithrouble
    Participant

    Every since the BuddyPress new update, I can no longer edit pages in my Buddy X Pro themed BuddyPress site. All plugins turrned off, and can edit, until I turn on BuddyPress.

    Here is the error produced:

    When I attempt to edit with Elementor I get a 500 internal server error. Sometimes there is left in the php error log, this error, but not every time I get the 500 internal server error

    Here is my Environment and error log from the Elementor System Info…

    == Server Environment ==
    Operating System: Linux
    Software: Apache
    MySQL version: MySQL Community Server (GPL) v5.7.33
    PHP Version: 7.3.27
    PHP Max Input Vars: 10000
    PHP Max Post Size: 512M
    GD Installed: Yes
    ZIP Installed: Yes
    Write Permissions: All right
    Elementor Library: Connected

    == WordPress Environment ==
    Version: 5.7
    Site URL: https://www.crossazure.net
    Home URL: https://www.crossazure.net
    WP Multisite: No
    Max Upload Size: 512 MB
    Memory limit: 1028M
    Permalink Structure: /%author%/%year%/%monthnum%/%day%/%postname%/
    Language: en-US
    Timezone: 0
    Debug Mode: Inactive

    == Theme ==
    Name: BuddyxPro
    Version: 2.6.1
    Author: wbcomdesigns
    Child Theme: No

    == User ==
    Role: administrator
    WP Profile lang: en_US
    User Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0

    == Active Plugins ==
    Absolutely Glamorous Custom Admin
    Version: 6.8
    Author: Cusmin

    BuddyPress
    Version: 7.3.0
    Author: The BuddyPress Community

    Classic Editor
    Version: 1.6
    Author: WordPress Contributors

    Colorlib Login Customizer
    Version: 1.2.99
    Author: Colorlib

    Elementor
    Version: 3.1.4
    Author: Elementor.com

    Elementor Pro
    Version: 3.2.1
    Author: Elementor.com

    Kirki Customizer Framework
    Version: 3.1.6
    Author: David Vongries

    Wordfence Security
    Version: 7.5.2
    Author: Wordfence

    WPSSO Core
    Version: 8.26.2
    Author: JS Morisset

    == Elementor – Compatibility Tag ==

    Elementor Pro: header_not_exists

    == Elementor Pro – Compatibility Tag ==

    == Elements Usage ==

    wp-page : 3
    button : 2
    heading : 2
    icon : 11
    image : 1
    bpb-buddypress : 0
    bpb-members-directory-filters : 1
    bpb-members-directory-list : 1
    bpb-profile-member-avatar : 1
    bpb-profile-member-buttons : 1
    bpb-profile-member-content : 1
    bpb-profile-member-cover : 1
    bpb-profile-member-username : 1
    icon : 26
    spacer : 1

    == Log ==

    PHP: showing 2 of 2PHP: 2021-04-12 14:03:52 [notice X 2][/home/crossazure/public_html/wp-content/plugins/elementor-pro/license/updater.php::75] Undefined index: new_version [array (
    ‘trace’ => ‘
    #0: Elementor\Core\Logger\Manager -> shutdown()
    ‘,
    )]
    PHP: 2021-04-14 08:56:53 [error X 27][/home/crossazure/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php::2038] Uncaught TypeError: Argument 1 passed to Elementor\Controls_Stack::sanitize_settings() must be of the type array, null given, called in /home/crossazure/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php on line 987 and defined in /home/crossazure/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php:2038
    Stack trace:
    #0 /home/crossazure/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php(987): Elementor\Controls_Stack->sanitize_settings(NULL)
    #1 /home/crossazure/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php(1787): Elementor\Controls_Stack->get_data(‘settings’)
    #2 /home/crossazure/public_html/wp-content/plugins/elementor/core/base/base-object.php(142): Elementor\Controls_Stack->get_init_settings()
    #3 /home/crossazure/public_html/wp-content/plugins/elementor/core/base/base-object.php(40): Elementor\Core\Base\Base_Object->ensure_settings()
    #4 /home/crossazure/public_html/wp-content/plugins/elementor/includes/base/contro [array (
    ‘trace’ => ‘
    #0: Elementor\Core\Logger\Manager -> shutdown()
    ‘,
    )]

    #318078
    Varun Dubey
    Participant

    @sabrinapitre it’s the theme or memberpress specific styling issue, you can simply fix it custom CSS.
    https://developer.chrome.com/docs/devtools/css/

    #318053
    Varun Dubey
    Participant

    1- BuddyPress does not bundle any theme itself
    2- theme-specific questions
    3- ideally you can view it at domain.com/forums/single-forum-slug or domain.com/forums
    to isolate any theme-specific limitation you can also test with WordPress default 2021 theme.
    4- theme my login plugin provides role base redirect and also when you are using different login pages, they act differently.

    #318045
    Cloud Stone
    Participant

    Is it possible to make better html structure and naming convention for bp nouveau template? The current naming is so confusing and make headache.

    1. friendship button even insert a div tag to ul list after click button.

    2. confusing naming everywhere. for example:

    a member list:
    .item-entry
    =.list-wrap (Shouldn’t it be .item-wrap)
    ===.item-avatar
    ===.item
    ====.item-block
    =====list-title (Shouldn’t it be .item-title)
    =====-meta action (Shouldn’t it be .item-actions)

    There are a bunch of other bugs seems that only people who have only learned front-end development for a week will make. I don’t intend to offend, but to be honest, the BuddyPress default theme and the WordPress default theme are not at the same level. I can always learn a lot from the WordPress default theme and improve my skills, but the BuddyPress default theme is simply terrible.

    #318035
    fmlrwemakefuture
    Participant

    Hey there,

    for a client we set up Learndash and Buddyboss using the Buddyboss Theme. Elementor is also installed as a builder.
    The Course and Lesson Pages however show too many information like “progress” and “members” and more. Can I change the design layout for courses and lessons? And if yes, how?

    The main task would be to hide many elements, not to add more.

    Thanks for your help

    #318031
    KevinBCarney
    Participant

    There are a few things I’m not figuring out, and am unable to find in the documentation.

    I’ve installed BuddyPress, Theme My Login with the Social extension (to allow logins via Facebook, Twitter, and Google), and bbPress.

    The ability to login via any of the above mentioned social media or use the email address as a user name works.

    Here is a list of what I’m not figuring out:
    – I’m running a theme named Customify, which I do not recall installing. Did it somehow come with BuddyPress (which seems weird) or did I in fact install it and just forgot?
    – There is an orange button labeled “BUTTON” that appears to the right of the menu, and within the menu, which slides in from the left side of the screen. It goes to the home page. I’m not seeing how to change the label within this button, but I do see it’s part of the Customify theme.
    – I’ve created a forum with bbPress, but when I login as either a user or an administrator, I don’t see it.
    – Sometimes when I login I find myself at the users profile page, other times I find myself at the home page. I’m not seeing the pattern as to when one occurs and when the other occurs.

    That’s it for now.

    If anyone can help steer me in the right direction, I will be most appreciative.

    Subsequent edit
    As I typed the above, it occurred to me I might see my forum at host.com/forums, which I do.

    #318012
    sasasasaaa
    Participant

    1. Which version of WordPress are you running?
    5.7

    2. Did you install WordPress as a directory or subdomain install?
    installed on root

    3. If a directory install, is it in root or in a subdirectory?

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    Fresh install

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    yes

    6. Which version of BP are you running?
    7.2.1

    7. Did you upgraded from a previous version of BP? If so, from which version?
    Fresh install

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    NO

    9. Are you using the standard BuddyPress themes or customized themes?
    Divi Theme

    10. Have you modified the core files in any way?
    Not yet

    11. Do you have any custom functions in bp-custom.php?
    Nope

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    no bbPress yet

    13. Please provide a list of any errors in your server’s log files.

    14. Which company provides your hosting? all-inkl.com (Germany)

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    not sure

    #318011
    sasasasaaa
    Participant

    Hi, when I created first a group in Buddypress, page title appeared correct on all buddypress pages.

    After making changes to divi theme options, part of page title on buddypress pages disappeared.

    Only website name appear in Page title, but nothing else.

Viewing 25 results - 1,151 through 1,175 (of 32,561 total)
Skip to toolbar