Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,151 through 1,175 (of 22,687 total)
  • Author
    Search Results
  • force73
    Participant

    Hi everyone,

    there is a strange problem. I’ve use WordPress, BuddyPress and “Buddyboss-Global-Search” what should be the correct plugin to use.

    If I search for a blocked member, the search-result number is correct and show “0 results found” BUT the search-result filter lists “Members (1)” and also show the member in the results itself.

    Can anyone help me, to get rid of the blocked members in the search-results? It is not an option the delete the user from database as of linked page-content written or edited by this members.

    Thanks.

    #317375
    xbladerunner
    Participant

    Hello. I created a group directory tab in the groups area of my buddypress theme, and it seems to work fine minus the page tab navigation (e.g., there are over 25 groups, and 20 or so displayed per page, but when you click to tab through the pages it is nonresponsive).

    Before I figured out how to create a buddypress page from a tab, I just created a link to the wordpress group directory page– and the navigation tabs work fine there, just not on my buddypress page, so I’m sure the problem is with my coding.

    Have you seen this before? Can you help out?

    function group_tab_yourtabname() {
          global $bp;
     	  $parent_slug = 'groups';
     	  
          bp_core_new_subnav_item( array( 
                'name' => 'Advisory Group Directory', 
                'slug' => 'directory', 
                'screen_function' => 'mydirectory_screen', 
                'position' => 40,
                'parent_url'      => bp_loggedin_user_domain() . $parent_slug.'/',
                'parent_slug'     => $parent_slug,
                
          ) );
    }
    add_action( 'bp_setup_nav', 'group_tab_yourtabname' );
     
     
    function mydirectory_screen() {
        
        // Add title and content here - last is to call the members plugin.php template.
        add_action( 'bp_template_title', 'yourtab_title' );
        add_action( 'bp_template_content', 'yourtab_content' );
        bp_core_load_template( 'buddypress/members/single/plugins' );
    }
    function yourtab_title() {
        echo '<center>Advisory Group Directory</center>';
    }
    
    function yourtab_content() { 
        echo 'United Resource Connection uses Advisory Groups as quality assurance judiciary boards. If your field of study and expertise aligns with one or more Advisory Group you are interested in joining, request membership by using the <i>Request Membership</i> buttons on the right.  ';
    do_action( 'bp_before_groups_loop' ); ?>
    
    <?php if ( bp_get_current_group_directory_type() ) : ?>
    	<p class="current-group-type"><?php bp_current_group_directory_type_message() ?></p>
    <?php endif; ?>
    
    <?php if ( bp_has_groups( 'user_id=NULL'  ) ) : ?>
    
    	<div id="pag-top" class="pagination">
    
    		<div class="pag-count" id="group-dir-count-top">
    
    			<?php bp_groups_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="group-dir-pag-top">
    
    			<?php bp_groups_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    	<?php
    
    	/**
    	 * Fires before the listing of the groups list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_before_directory_groups_list' ); ?>
    
    	<ul id="groups-list" class="item-list" aria-live="assertive" aria-atomic="true" aria-relevant="all">
    
    	<?php while ( bp_groups() ) : bp_the_group(); ?>
    
    		<li <?php bp_group_class(); ?>>
    			<?php if ( ! bp_disable_group_avatar_uploads() ) : ?>
    				<div class="item-avatar">
    					<a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a>
    				</div>
    			<?php endif; ?>
    
    			<div class="item">
    				<div class="item-title"><?php bp_group_link(); ?></div>
    				<div class="item-meta">
    					<span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>">
    						<?php
    						/* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */
    						printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() );
    						?>
    					</span>
    				</div>
    
    				<div class="item-desc"><?php bp_group_description_excerpt(); ?></div>
    
    				<?php
    
    				/**
    				 * Fires inside the listing of an individual group listing item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_groups_item' ); ?>
    
    			</div>
    
    			<div class="action">
    
    				<?php
    
    				/**
    				 * Fires inside the action section of an individual group listing item.
    				 *
    				 * @since 1.1.0
    				 */
    				do_action( 'bp_directory_groups_actions' ); ?>
    
    				<div class="meta">
    
    					<?php bp_group_type(); ?> / <?php bp_group_member_count(); ?>
    
    				</div>
    
    			</div>
    
    			<div class="clear"></div>
    		</li>
    
    	<?php endwhile; ?>
    
    	</ul>
    
    	<?php
    
    	/**
    	 * Fires after the listing of the groups list.
    	 *
    	 * @since 1.1.0
    	 */
    	do_action( 'bp_after_directory_groups_list' ); ?>
    
    	<div id="pag-bottom" class="pagination">
    
    		<div class="pag-count" id="group-dir-count-bottom">
    
    			<?php bp_groups_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links" id="group-dir-pag-bottom">
    
    			<?php bp_groups_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    <?php else: ?>
    
    	<div id="message" class="info">
    		<p><?php _e( 'There were no groups found.', 'buddypress' ); ?></p>
    	</div>
    
    <?php endif; ?>
    
    <?php
    
    /**
     * Fires after the display of groups from the groups loop.
     *
     * @since 1.2.0
     */
    do_action( 'bp_after_groups_loop' );
    } 
    #317344

    In reply to: BuddyPress 7.2.0

    meysam1bayat
    Participant

    Hello
    I have a WordPress site that has become a social network with BodyPress

    On this site, people can post and publish photos after registration

    I want the administrator to view and approve any photos or posts before they are published

    Can such a thing be done?

    Thankful

    #317343

    In reply to: BuddyPress 7.2.0

    hello i hva e alitt`le problem and is the follow:
    I intall the lasted version of wordpress and then i intsall the lasted version of buddy press and when i go to tool bar menu for user i recive Error 404 page not found
    some can help me

    #317338

    In reply to: BuddyPress 7.2.0

    Mathieu Viet
    Moderator

    Hi @djsteveb,

    I have doubt 7.2.0 caused this issue. As the file you’re referring to was lastly modified 11 months ago.

    The function bp_nouveau_sanitize_nav_order() is used to sanitize navigation slugs. I’d advise you to launch the customizer, activate the BuddyPress Nouveau > Member navigation Panel and edit the navigation order using the drag/drop control and then save your edits to see if it’s fixing the issue. See the screenshot below:

    Customize Member navigation screenshot

    #317337
    lukgoh
    Participant

    Hi everyone,

    I have a strange bug that I have not been able to find a solution for, although I see in the forums others have had very similar issues I believe that these have been fixed many years ago.

    The Problem:
    ‘total_group_count’ value is in negative numbers for several users. Some up to -17. Using the “Repair total groups count for each member” tool does not fix these negative numbers.

    I could simply change all these values in the database but I think it will happen again and I would like to understand what might be causing this issue. I have gone through the database for ghost entries relating to groups and I have confirmed that the only entries that exist are for groups found on the website. I have also confirmed this is not theme related.

    The setup:
    BuddyPress Version 6.3.0, network installed on WordPress 5.5.3 multisite. Hosted by WPengine.

    If anyone can point me in any direction it would be really appreciated.

    #317287
    gracenote
    Participant

    Hey guys, I’ve scoured around google and this forum. Not sure if I simply don’t know what keywords to plug in but I haven’t found a solution. :-/

    My membership page is not working. When you go to the page, you’ll see this string of code:
    [kc_row _id=”852969″][kc_column _id=”404198″][kc_column_text _id=”130096″][edr_user_membership][/kc_column_text][/kc_column][/kc_row]

    I’m using the Avada WordPress 5.5.3 theme on my site with WordPress with BuddyPress 7.1.0

    Here’s a screenshot to help: https://drive.google.com/file/d/1dfQirfgFrZVC4FiaFyxR7mtI0PotVQX0/view?usp=sharing

    Appreciate you taking the time to read this far. 🙂 Thank you!

    #317286
    Mathieu Viet
    Moderator

    Hi @paulw32,

    To force BuddyPress to use the wp_mail() WordPress function, you need to add a filter this way:

    add_filter( 'bp_email_use_wp_mail', '__return_true' );

    You can add this into the functions.php file of your active theme or into a bp-custom.php file at the root of your /plugins directory.

    PS: if you’re using the bp-custom.php file, make sure the first line of the file is used to open a PHP tag:

    <?php

    #317284
    Mathieu Viet
    Moderator

    Hi,

    You should:
    – check the WordPress settings allowes account to be created (Anyone can register checkbox needs to be active) See: https://wordpress.org/support/article/settings-general-screen/#membership
    – check your permalink settings are using one of the pretty permalink options (not plain), see this documentation page https://wordpress.org/support/article/using-permalinks/#mod_rewrite-pretty-permalinks
    – check the activate and register actions are associated with a public WordPress page. You can find some inputs about it from this documentation page : https://codex.buddypress.org/getting-started/configure-components/#settings-buddypress-pages

    NB: the registration and activation pages are only displayed to users who are not logged in, so if you try to visit these being logged in you’ll be redirected to home page. To test the pages, log out first 😉

    #317211
    ppp12345
    Participant

    I’ve decided not to use your registration form. No registrations can (or should) now be made on my site through Buddypress, and I have hardcoded my WordPress password restrictions which seem to work fine in my login/- and lost-password pages/forms. STILL there is something in your code overriding my new registration form, allowing this to happen.

    Please, provide a solution ASAP.

    #317209
    purityboy83
    Participant

    Hi

    I use to wordpress + bbpress + buddypress

    When sending a private message between members, I want to put an image in the body
    Right now the only way is to use the image url link.

    I would like to upload a file using the upload button like a reference image and put it in the body

    Ref img : https://ibb.co/4pvMLDg

    This image is the “Inline Image Upload for BBPress” plugin

    Currently, images are not attached to buddypress’s private messages (inline).

    Is there any possible way?

    Best Regards,
    Hyunho

    #317203
    #317195
    bathgate
    Participant

    Trying to figure out the best way to have a login on homepage? I placed [bbp-login] shortcode on homepage but not sure if this is the best option? Is there a way to have it so wordpress is aware who is logged in and a user and who is not?

    Thanks

    #317189
    paulw32
    Participant

    No one knows the outgoing SMTP settings for BuddyPress and why they are different from the native WordPress settings?

    Really?

    #317187
    bathgate
    Participant

    Oh i think it’s because I am logged into the wordpress backend

    paulw32
    Participant

    I’m trying to send emails from my site via SendGrid.
    Everything except for BuddyPress is sending correctly. No BuddyPress emails are sent through the SendGrid SMTP.
    The emails are being sent, but they art not being sent via SMTP settings I have set up.
    I also use an email logger plugin to keep track of emails sent from WordPress. No BuddyPress emails are logged at all.
    How are BuddyPress emails sent, and how do log them, and how do I get them sent through the correct SMTP server?

    #317143
    ppp12345
    Participant

    I need the default setting…

    <input type=”text” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>

    to be….

    <input type=”password” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>

    Unfortunately I can’t identify the default “text” input type coded anywere- https://buddypress.trac.wordpress.org/changeset/12397 … looking in /bp-templates/bp-nouveau/buddypress-functions.php at least… everywere I look I see “password” set.

    Am I the only one facing this issue? :/ What am I missing, ANYONE?

    #317142

    In reply to: Approving Blog Posts

    Venutius
    Moderator
    djintelbe
    Participant

    Hello,

    Some mathematical objects written in mathjax/latex use backslash (\). For example, one use \sqrt{} for the square root function, \mathbb{} for the set of numbers. In bbpress forums, these objects work perfectly but when the forums are displayed in buddypress activities streams, the backslash disappears and therefore the mathematical symbols are not rendered and make the texts difficult to read. If the texts are typed directly in buddypress side, things are also alright. So, the problem seems to be in the transition from forum to the buddypress activities.

    I tried some solutions but nothing work. So I am asking for help; how can I do to solve the problem

    Thank you in advance

    Wordpress 5.6.1
    Buddypress 7.1.0

    Regards

    Nestor

    #317073

    In reply to: BuddyPress 7.1.0

    Mathieu Viet
    Moderator

    Hi @djsteveb

    I understand you might be disappointed to have troubles with the avatar feature, but this trouble is not a generic one, it’s specific to your WordPress configuration. Saying the following is very wrong:

    The edit avatar / upload profile pic is still broken for new installs.

    I can confirm everything works as expected.

    Since BuddyPress 6.0, users can manage their local avatars (hosted on the community website) whether or not the xProfile component is active. See this developer note for more information about the changes we made in 6.0.

    Below is a screenshot I just made having the xProfile component active :

    avatar-xProfile on

    Below is another screenshot I just made having the xProfile component inactive :

    avatar-xProfile off

    To control whether or not to allow users to manage their avatars from their profile page, as you said you can use the BP option about “Profile Photo Uploads”. Below is a screenshot of the BuddyPress options screen (Settings > BuddyPress).

    BP Options screen

    If you uncheck “Profile Photo Uploads”, then users can’t manage their locally hosted avatars.

    And there’s also a WordPress setting you need to pay attention to. If you decide that Avatars shouldn’t be shown globally on your WordPress site, then users cannot manage their local avatars from the front end. This WordPress setting is available from the Discussion settings screen (Settings > Discussion). See the screenshot below :

    WP Discusion settings

    For instance, if you uncheck the “Avatar display” WP setting, then the page to manage avatars is not available even if “the Profile Photo Uploads” BP Option is checked. Here’s a screenshot below showing how a user’s profile page looks like when you globally disable Avatars in WordPress.

    Avatars globally disabled

    The page to manage user’s avatar is not available and the user’s profile header does not include the avatar.

    Again, I confirm everything works as expected in BuddyPress, the issue you’re mentioning is specific to the way you configured WordPress &/or BuddyPress.

    #317050
    Julia
    Participant

    1. Which version of WordPress are you running?
    ⇒WordPress 5.6.1

    2. Did you install WordPress as a directory or subdomain install?
    ⇒As a directory

    3. If a directory install, is it in root or in a subdirectory?
    ⇒subdirectory? full pass /home/users/1/〇〇〇〇〇〇/web 

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    ⇒Yes. WordPress 5.5.3 
    But it is the first try to see wrong display in buddypress.
    I am beginner.

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

    6. Which version of BP are you running?
    ⇒Version 7.1.0

    7. Did you upgraded from a previous version of BP? If so, from which version?
    ⇒Probably No.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    ⇒bbpress Version 2.6.6
    Other plugins are unactive in the test.

    9. Are you using a standard WordPress theme or customized theme?
    ⇒a standard WordPress theme

    10. Which theme do you use ?
    ⇒Generatepress Version 3.0.2

    11. Have you modified the core files in any way?
    ⇒No

    12. Do you have any custom functions in bp-custom.php?
    ⇒No

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    ⇒bbpress Version 2.6.6
    copy ⇒Unknown

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress

    ⇒The code is adding.

    
     // WP_DEBUG debug mode
    define( 'WP_DEBUG', true );
    
    // /wp-content/debug.log 
    define( 'WP_DEBUG_LOG', true );
    

    ⇒No error message!
    ⇒No log file generated. In short, no bug?

    15. Which company provides your hosting?
    ⇒lolipop.jp[Japan]

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?
    ⇒Linux(CentOS)
    ⇒ Apache

    17. Which BP Theme are you using?
    ⇒Buddypress Nouveau

    18. Have you overloaded any BuddyPress template files.
    ⇒Unknow

    19. Any other site customisations that might have a bearing on the issue?
    ⇒No.  After remove customisations code in bbpress, I checked it.

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    ⇒Buddypress Nouveau

    Basic Trouble Shooting:

    1. Identifying whether you have a theme issue:
    ⇒I tried other two themes[ Onepress and Twenty Twenty-One],
    but the icon[×] trouble occurred in buddypress profile page.(Nothing happens)

    2. Plugins:
    ⇒In the bbpress is activated only, the icon[×] works completely.(The topic deleted!!)
    In the bbpress and buddypress set, the icon[×] trouble occurred in buddypress profile page.(Nothing happens)
    Both test, the other plugins are invalid(not active).

    3. BP Themes:
    Both Buddypress Nouveau and Legacy, same wrong display.(Nothing happens)

    I think it is something wrong with the icon[×] button? on forum section in buddypress.
    Nothing happens when that [x] is clicked.

    #317041
    giorgossin
    Participant

    Hi!
    I am using WordPress 5.6.1 and Buddypress 7.1.0.
    Suddenly the RSS displayed on the Activity, and all the activity of all the users as well, whatever they do it is visible, for everyone, without having any connection between them at all.
    What should I do to make the RSS invisible?
    What should I do to to hide the activity of all the users if they do not have any connection between them?
    I am asking you kindly, please someone help me, because I have a problem with this.
    Thanks a lot.

    #317012
    clickallco
    Participant

    Try using the Buddypress Tools to repair it. It’s in your wordpress dashboard > tools > buddypress

    #317004
    csellington
    Participant

    I have a topic that I set as super sticky. Once I’ve set it as super sticky, the topic only appears in forums that don’t have a buddypress group assigned (regardless of the public/private/hidden nature). This seems to negate the super sticky notion of showing up in all groups. Is this a bug or behavior as it is supposed to be?

    Wordpress version is 5.6.1; Buddypress is 7.1.0, bbPress is v2.6.6. Site is wtf.chiaribridges.org ; see the behavior at https://wtf.chiaribridges.org/forums (you can look at each forum and see the ones with and without the super sticky).

    I’ve also posted on the bbPress site for help.

    #316995
    wordplus
    Participant

    Hi there!

    You can try this plugin, its showing DisplayNames and avatars in Send To field autocomplete:

    BP Better Messages

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