Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,451 through 1,475 (of 22,682 total)
  • Author
    Search Results
  • Jill
    Participant

    How to edit a slide pictures to a WordPress website without a plugin? this is my website, I want to edit slide picture.

    #312584
    Varun Dubey
    Participant
    #312559
    annadito
    Participant

    Thanks for replying! I am able to add new field sets to the profile. They are displayed in a long list instead of broken up by tabs.

    If you’re looking at this screenshot: https://drive.google.com/file/d/1hgBbI3Za688UzVbl5cC9L5OjKboMVV5z/view?usp=sharing

    Ideally, there would be tabs under the “View Profile” text for “Bio” and “Test Field Set”. When you clicked on the tab, it would display the info associated with that field set.

    There’s an old plugin that appears to do this (https://wordpress.org/plugins/buddypress-profile-tabs/), but I am concerned about its stability and wondering if there is another option.

    Thank you for any guidance!

    #312558
    clickallco
    Participant

    Could you elaborate? Currently this is an already built in function in Buddypress.

    Go to your wordpress dashboard followed by clicking on Users > Profile fields > click on the button called “Add new field group” and you got a new tab you can fill out with profile fields.

    #312546
    Varun Dubey
    Participant

    @globsticks if the plugin is going to change their hooks then you will also need to update your custom code as well, in general developers do not change hooks very frequently.

    #312502
    Andrea
    Participant

    currently i have found this solution:

    – Create a new role: https://wordpress.org/plugins/members/
    – enable option management
    – Denied access backend panel with code in function.php

    The problem:
    If user is author/editor cant join wp-admin, so i should create a new accout for let them moderate activity and profiles.

    Anyone have other good ideas for getting bp moderators?

    #312497

    In reply to: 2 problems

    wahj73
    Participant

    I can’t remember when this problem happen. Is it after doing wordpress upgrade? or is it after install some plugins?

    #312496

    In reply to: 2 problems

    wahj73
    Participant

    Which version of WordPress are you running?

    Current Version: 3.2.7.2

    Did you install WordPress as a directory or subdomain install?

    directory

    Which version of BP are you running?

    last version

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

    s2.member
    learnpress
    Wpbakary
    Loco

    Which theme do you use ?

    eduma

    __

    I tried delete the WordPress website and reinstall it again with using the same database but it doesn’t work.

    I had use jetpack plugin before.

    I can’t remember when this problem happen. Is it after graduation? Is it after install some plugins?

    #312481
    danimasedo93
    Participant

    Hi all! I’m new in php & css.

    After reading a lot and learning very little, I managed to program the notifications in my project in php and css. It works fine, shows the amounts (friends, messages and notifications) and redirects where it should.

    My problem is that I need to “hide” the bubble of “0” when the user has no notifications and only show when if they have 1 or more notifications

    Bubble Notification in menu

    Functions.php

    function my_counter_nav_menu($menu) {
    
    	if ( ! is_user_logged_in() ) {
    		return $menu;
    	}
    
    	$user_id = bp_loggedin_user_id();
    	$user_url = bp_loggedin_user_domain();
    
            $friends_url = $user_url . bp_get_friends_slug() . '/';
    	$msg_url = $user_url . bp_get_messages_slug() . '/';
    	$notify_url = $user_url . bp_get_notifications_slug() . '/';
    
    	ob_start();
    	?>
            <li><a><a href="<?php echo bp_loggedin_user_domain();?>friends"><span class="notifications_icons"><i class="fas fa-user-friends" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo friends_get_friend_count_for_user( $user_id );?></span></a></a></li>
    
    	<li><a><a href="<?php echo bp_loggedin_user_domain();?>messages"><span class="notifications_icons"><i class="fas fa-envelope" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo bp_get_total_unread_messages_count( $user_id );?></span></a></a></li>
    	
    	<li><a><a href="<?php echo bp_loggedin_user_domain();?>notifications"><span class="notifications_icons"><i class="fas fa-bell" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo bp_notifications_get_unread_notification_count( $user_id );?></span></a></a></li>
    <?php
    	$menu_items = ob_get_clean();
    
    	$menu = $menu . $menu_items;
    	return $menu;
    }
    
    add_filter( 'wp_nav_menu_items', 'my_counter_nav_menu' )

    CSS

    .notifications_icons {
    color: #ffffff;
    vertical-align: middle;
    margin: -7px;
    }
    
    .my_bubble_notify {
    color: #ffffff;
    border-radius: 3px;
    background-color: #f7823f;
    vertical-align: 20%;
    position: relative;
    	font-size: small;
    	padding: 0.1em 5px;
    }

    Buddypress 6.0.0
    Wordpress 5.4.2
    site: http://www.gamerstroop.com
    If you need, you can use test account (acc:test – pw:test)

    I dont know if I can paste my site link here. If I can’t please remove it or let me know, thank you so much for reading and helping me! <3

    #312479
    cmsplay
    Participant

    How can one email all members of a BuddyPress group only?

    There is the ‘Email WP Users’ plugin:

    WP Email Users

    …but its email ‘Group’ option is greyed-out and not useable. I have posted a query to the plugin’s support page, but no reply.

    There is a separate email subscription plugin:

    BuddyPress Group Email Subscription

    …but that just copies BP Group messages to users who have already opted to receive copies of messages posted to that group.

    Is there a simple way in BuddyPress to email all members of a BP Group? (It can’t be that difficult.)

    Thank you for your help 🙂

    #312473
    coolhunt
    Participant

    I found this thread
    https://buddypress.trac.wordpress.org/ticket/7321

    But I cant really make sense of it

    #312454

    In reply to: WooCommerce conflict

    shanebp
    Moderator

    Your log is full of database query errors.
    They seem to be caused by this plugin: WP_User_Frontend
    And those errors affect BP but are not caused by BP, afaik.
    You should ask the creators of WP_User_Frontend about your errors.
    The sending of emails does not seem to be related to this error – and is most likely also not a BP issue.

    [09-Jun-2020 20:37:10 UTC] 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 ‘WHERE id = 51’ at line 1 for query SELECT * FROM WHERE id = 51 made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘plugins_loaded’), WP_Hook->do_action, WP_Hook->apply_filters, WP_User_Frontend->plugin_upgrades, current_user_can, wp_get_current_user, _wp_get_current_user, wp_set_current_user, do_action(‘set_current_user’), WP_Hook->do_action, WP_Hook->apply_filters, wplr97_->wplg67rg, wplr97_->wplkzu6r, wplt4j15::wplno56a, xprofile_set_field_data, xprofile_get_field, BP_XProfile_Field::get_instance, BP_XProfile_Field->__construct, BP_XProfile_Field->populate

    #312445
    iamthewebb
    Participant

    Hi, you can post on the official wordpress jobs board https://jobs.wordpress.net/post-a-job/

    #312412

    In reply to: Message to all users

    Varun Dubey
    Participant

    You can try https://wordpress.org/plugins/bp-better-messages/
    As per plugin desc, they have Mass messaging feature

    #312401
    scarllettlins
    Participant

    How can I set the user’s register name as display name?
    I’ve the latest version of wordpress and buddypress.

    #312395
    clickallco
    Participant

    Maybe this plugin could help you with the notifications https://wordpress.org/plugins/bp-live-notification/

    shameem5566
    Participant

    I have to hide some nav menus of bp users’ profile page from other users. I using the following function to do so. That was working fine.

    /* BuddyPress profile nav menu restrictions */

    function bpex_hide_profile_menu_tabs()
    {

    if (bp_is_active(‘xprofile’)) :

    if (bp_is_user() && !bp_is_my_profile()) {
    // BP’s profile main menu items. Comment those to show.
    // bp_core_remove_nav_item( ‘activity’ );
    // bp_core_remove_nav_item(‘profile’);
    bp_core_remove_nav_item(‘friends’);
    bp_core_remove_nav_item(‘groups’);
    // exist only if you use bbPress
    bp_core_remove_nav_item(‘forums’);
    // bp_core_remove_nav_item(‘activity’);
    bp_core_remove_nav_item(‘following’);
    bp_core_remove_nav_item(‘followers’);
    bp_core_remove_nav_item(‘bookmarks’);
    bp_core_remove_nav_item(‘activity’);

    // BP’s profile main menu items. Comment those to show.
    bp_core_remove_subnav_item(‘activity’, ‘personal’);
    bp_core_remove_subnav_item(‘activity’, ‘friends’);
    bp_core_remove_subnav_item(‘activity’, ‘groups’);
    bp_core_remove_subnav_item(‘activity’, ‘following’);
    bp_core_remove_subnav_item(‘activity’, ‘feed’);
    }
    bp_core_remove_subnav_item(‘activity’, ‘mentions’);
    bp_core_remove_subnav_item(‘activity’, ‘favorites’);

    endif;
    }
    add_action(‘bp_init’, ‘bpex_hide_profile_menu_tabs’, 15);

    I have this navigation menu for the bp user on the header by default. When I am viewing other’s profiles the nav menus inside the user’s header menu also get hidden.

    Is there any other ways to do this.

    I am using the latest version of WordPress 5.4.2, BuddyPress 6.0.0, and BuddyX Theme 1.3.7.

    chris98
    Participant

    Hello guys,

    I have included a few buttons, one for friendrequests, one for messages and one for all notifications, but how I can display the notifications for each button by clicking on the button.

    But I dont want that the Notifications were shown in the notifications page, they should be shown in a Popup like Facebook or like the menu of WordPress.

    After watching the Popup, the Notifications should become as read.

    I would be happy if you could help me.

    #312357

    In reply to: installing wordpress

    @mercime
    Participant

    @lexpaulz44 You can either deactivate the plugin via wp-admin or SFTP https://wordpress.org/support/article/managing-plugins/#uninstalling-plugins

    #312343
    Varun Dubey
    Participant

    @cmsplay try https://wordpress.org/plugins/bp2wp-full-sync/
    It will allow you to map xprofile fields with WP core first name and last name

    kim007x
    Participant

    Hello,

    I am working on a subdomain for a client: https://forum.secretsofpakistan.com/

    I put a few public Groups on the Homepage, but I can only click on them when I am logged in to the WP site.

    When I am logged in, I can visit https://forum.secretsofpakistan.com/groups/uk-nationals-in-pakistan/ e.g. but whoever is not logged in will land on the Homepage of the website.

    I already went to Settings – Permalinks and selected “Post Name”.

    WordPress Version 5.4.2
    BuddyPress Version 6.0.0
    Theme Aardvark

    Does anyone has an idea how to make the Group pages visible for non-logged in visitors?

    #312318
    Varun Dubey
    Participant
    sonicboom81
    Participant

    Hi,

    Is there a way to stop users being able to tick the checkbox and use weak passwords while updating their password through BuddyPress? I have googled and found various answers of how to enforce strong passwords, and also code to remove the option to allow it, but for WordPress, not specifically BuddyPress. However, none of the things I have tried have worked.

    I’m even struggling to hide it uses CSS and using !important as it is overridden.

    I am using the latest WordPress/BuddyPress and the Woostify theme. My website is https://segauniverse.com, however you need to be registered to access BuddyPress (under Community/SEGA Chat).

    I don’t want users to be able to select a weak password, as they can select a 1 letter password or basic word, and i think this is a security risk.

    Thanks

    #312254

    In reply to: Unable to join groups

    swalky
    Participant

    I am using WordPress 5.4.1 and BuddyPress v 6.0

    #312248

    In reply to: Archive Group Content

    Varun Dubey
    Participant
Viewing 25 results - 1,451 through 1,475 (of 22,682 total)
Skip to toolbar