Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,401 through 1,425 (of 22,682 total)
  • Author
    Search Results
  • zippie12
    Participant

    Hello,

    The following bug occurs. A loggedin user presses Home Button, then the website is loggedout.

    Can someone help me to solve this problem?

    Wordpress 5.5 Mesodark theme (a child theme of Mesocolumn theme).

    Buddypress 6.2.0

    Prometheus0

    #313368
    Varun Dubey
    Participant

    @brayte email is mandatory for WordPress.

    #313349
    Jeff Borghoff
    Participant

    Wordpress Version 5.4.2
    Buddypress Version 6.2.0

    I’m having an issue with adding HTML/blocks to the buddypress pages, Activity, Members, groups. Is there something I need to do to get to work?

    #313332
    brayte
    Participant

    I am looking to modify the registration so that no need for the email. we will only ask for Username and password. I am using WordPress and a plugin called ultimate membership pro to manage membership. this plugin is responsible for the registration page. Could anyone here help with this?

    #313303
    shanebp
    Moderator

    > The description field is a standard wordpress profile text field

    That’s not the same as a BP profile field. They are two separate beasts.
    You need to find the code, perhaps in your theme, that is adding that field on profiles.

    > How could I place a BuddyPress profile field on the profile start page
    You need to edit the home template for profiles.
    And it sounds like that is already being done by some code on your site.
    Find it and you should know how to change it to show a BP profile field for bio.

    #313302
    p3t3rr
    Participant

    Hi Shane,

    thx for the quick answer.

    The description I am talking about is seen here ‘http://example.com/members/USERNAME/’. The link pointing to ‘/wp-admin/profile.php#description’ is just below it.

    By short description do you mean Biographical Info?

    yes.

    I don’t think there is another plugin which creates this short description (bio info). The description field is a standard wordpress profile text field, isn’t it?

    How could I place a BuddyPress profile field on the profile start page ‘/members/USERNAME/’?

    CloudedDottedMind
    Participant

    I figured it out… it was pretty simple in the end as all I did was change ‘role” to ‘role__not_in’ while putting the role I do want to show in $role

    /**
     * Exclude Users from BuddyPress Members List unless they have specific WordPress role.
     *
     * @param array $args args.
     *
     * @return array
     */
    function buddydev_exclude_users_by_role( $args ) {
        // do not exclude in admin.
        if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
            return $args;
        }
     
        $excluded = isset( $args['exclude'] ) ? $args['exclude'] : array();
     
        if ( ! is_array( $excluded ) ) {
            $excluded = explode( ',', $excluded );
        }
     
        $role     = 'roletoshow';// change to the role to be shown.
        $user_ids = get_users( array( 'role__not_in' => $role, 'fields' => 'ID' ) );
     
        $excluded = array_merge( $excluded, $user_ids );
     
        $args['exclude'] = $excluded;
     
        return $args;
    }
     
    add_filter( 'bp_after_has_members_parse_args', 'buddydev_exclude_users_by_role' );
    #313180
    clickallco
    Participant

    Sounds like a memory issue (server hosting problem). What errors do you get?

    You can see the errors by enabling WordPress debug. Locate your wp-config.php in your wordpress installation files and set WP_DEBUG to true, i.e.: define( ‘WP_DEBUG’, true );

    #313179

    In reply to: Add-ons

    clickallco
    Participant

    I haven’t tried it personally, but https://wordpress.org/plugins/likebtn-like-button/ seems to add a like / dislike button to activity comments and posts.

    #313177
    clickallco
    Participant

    You’d probably have better luck and less headaches just making searchable hashtags. You can dig through https://wordpress.org/plugins/hashbuddy/ and take the few lines of code it requires.

    natelanza
    Participant

    I’m trying to create a searchable list of profiles which only displays profiles of a certain type. I tried using the BP Profile Search plugin, but it doesn’t seem like it can only search a certain profile type. I also tried using FacetWP, but that doesn’t seem to do anything. Is there any way to limit BP Profile Search to a single profile type, or achieve this some other way? (I’m using the latest versions of BuddyPress and WordPress)

    #313156
    Michael
    Participant

    I’ve been looking for a solution and found a lot of dead ends….

    Possible hook. Though Not sure if it works.
    https://buddypress.trac.wordpress.org/browser/tags/1.5/bp-themes/bp-default/functions.php#L112

    There is this unanswered post
    https://buddypress.org/support/topic/how-to-disable-join-group-option-on-public-group/

    #313131
    orangeboxdev
    Participant

    Hey Everyone!

    Does anyone know if there is a way that we can disable public facing user profiles? We have noticed that the public facing user profiles use the user’s email address as their @ username and thus exposes the users email address.

    Also, when we navigate to /members this exposes a list of all of our members. Is there a way to disable this as well?

    We are using WordPress 5.4.2 the BuddyBoss theme with BuddyPress 5.2.0 and LearnDash LMS.

    If anyone can point me in the right direction I would be eternally grateful!

    <3 OBD.

    #313120
    mungbean
    Participant

    Related request: https://buddypress.org/support/topic/buddypress-verified-feature-suggestion/

    Has this feature been resolved? I’m also interested in a “verified account” badge or indicator for users.

    If this is/can be not built into BP, is it compatible with this WP plugin https://wordpress.org/plugins/bp-verified-member/ or something similar else that is recommended?

    Thanks!

    #313085
    martohar
    Participant

    Thank you @mercime for the information,

    Changed to Twenty Twenty and the profile settings shown.

    So the issue is on The Theme,

    I am using Kleo WordPress THeme,

    Thanks again for the information

    #313077
    martohar
    Participant

    The Profile, Notification and Setting tab is empty

    Here is the screenshot: https://www.dropbox.com/s/d4920u7r2g0e4fg/Screenshot%202020-07-26%2011.23.45.png?dl=0

    Buddypress Versi 6.1.0
    WordPress 5.4.2

    #313075

    In reply to: Error after upgrading.

    John
    Participant

    I get the errors while enabling/disabling the components, I’m using the Buddypress newest version: 6.1.0

    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_activity CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_activity_meta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_invitations CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_notifications CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_notifications_meta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_friends CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_groups CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_groups_members CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_groups_groupmeta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_messages_messages CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_messages_recipients CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_messages_notices CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_messages_meta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_xprofile_groups CHANGE COLUMN <code>id</code> id bigint(20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_xprofile_fields CHANGE COLUMN <code>id</code> id bigint(20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_xprofile_data CHANGE COLUMN <code>id</code> id bigint(20) unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_xprofile_meta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_user_blogs CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    WordPress database error: [Multiple primary key defined]
    ALTER TABLE wp_bp_user_blogs_blogmeta CHANGE COLUMN <code>id</code> id bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/xxx/workspace/wordpress/wp-includes/wp-db.php:1491) in /home/xxx/workspace/wordpress/wp-includes/pluggable.php on line 1281
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/xxx/workspace/wordpress/wp-includes/wp-db.php:1491) in /home/xxx/workspace/wordpress/wp-includes/pluggable.php on line 1284
    #313061

    In reply to: Edit Email Template

    Lars Henriksen
    Participant

    Hi aeldri,

    r-a-y showed me how to do it in this thread

    I added a few lines that insert images in the header and footer of the template – line 189-192 and 215-221 and created the folders in my theme and uploaded the template file.

    The problem with recipient name might be due to a typo in the e-mail templates. Check if a bracket ({) is missing ?

    gooalgenie
    Participant

    Hey Guys,

    Wordpress version: 5.4.2
    Buddypress Version: 6.1.0

    (Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)

    Yes I face the same issue with twenty, twenty themes.
    Website URL: gooalgenie.com

    Issue:

    When we click on Groups and then click on groups tab >>>> it takes to particular group page >>> but there is no option for users to navigate back to my groups tab? How can we fix this.

    #313028
    gooalgenie
    Participant

    Hey Guys,

    Wordpress version: 5.4.2
    Buddypress Version: 6.1.0

    (Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)

    Yes I face the same issue with twenty, twenty themes.
    Website URL: gooalgenie.com

    How to rename Home Tab in Groups tab

    Issue:

    How can we show all members tab and search Members under Friends tab.

    gooalgenie
    Participant

    Hey Guys,

    Wordpress version: 5.4.2
    Buddypress Version: 6.1.0

    (Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)

    Yes I face the same issue with twenty, twenty themes.
    Website URL: gooalgenie.com

    Issue:

    How can we show all members tab and search Members under Friends tab.

    renoarnolds
    Participant

    We are using Total WordPress Theme with BuddyPress and everything is working well, except when I post a blog post… the post shows on my activity page with some initial shortcodes showing from Visual Composer…

    [vc_row][vc_column][vc_column_text css=”.vc_custom_1595275549516{padding-bottom: 20px !important;}”]Saturn in Aquarius is the beginning of

    I understood Visual Composer was compatible and not sure why the code is showing.

    Any ideas? Thanks in advance.

    #313001
    clickallco
    Participant

    You’re experiencing a redirect loop due to misconfigurations. If you enter the network tab in chrome’s developer tools (right click on the website page and click inspect element) on https://starcarding.com/members/ and click on a member hereafter, you’ll notice whats going on when the page is loading.

    As a start, try going into the permalink settings in settings > permalinks in the wordpress dashboard, followed by pressing the button “save changes” in the bottom.

    If this doesnt fix it, you could try restoring default .htaccess file.

    Otherwise you might try deactivating your plugins one by one to see if it changes anything.

    #312983
    in_jail_out_soon
    Participant

    Query Monitor has detected a Database error – Deactivating Buddypress removes the error, deleting and reinstalling Buddypress does not solve / or create the table.

    How do I fix this?

    running latest php version / latest version of wordpress.

    SELECT DISTINCT i.item_id
    FROM wpni_bp_invitations i
    WHERE user_id IN (1)
    AND class IN ('bp_groups_invitation_manager')
    AND type = 'invite'
    AND invite_sent = 1
    AND accepted = 0	
    Unknown
    
    Unknown	Table 'training_cpd.wpni_bp_invitations' doesn't exist	qmdb
    #312982
    Varun Dubey
    Participant
Viewing 25 results - 1,401 through 1,425 (of 22,682 total)
Skip to toolbar