Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 2,301 through 2,325 (of 22,644 total)
  • Author
    Search Results
  • #302534
    stigma8113
    Participant

    Sorry, I don’t speak English, I use a translator.

    I do not have private messages
    There is just empty space

    Removed all plugins, did not help
    Tried on different topics, did not help
    On different sites, also does not work
    On different browsers, does not work
    Reinstalled WordPress and BuddyPress did not help
    etc.

    How to fix it?
    Screenshot
    Site https://rybalka-v-mordovii.ru/

    #302523
    joshthebeloved
    Participant

    Hmmm. Unfortunately I’m unsure of how to do this. I did find this one plugin that is supposed to do the job, but it hasn’t been updated in years. I still might have to give it a try it though unless someone else can make another suggestion?

    Plugin: https://wordpress.org/plugins/bp-automatic-friends/

    #302514
    thePixelPixie
    Participant

    Same problem here. I haven’t finished creating our template, so a lot of things are not “WordPress’d” yet, but when I try to go to the “Register” page, there’s no content there. Am I supposed to be putting a shortcode on that page in admin or something?

    #302508
    Leo Nelson
    Participant

    I have a solution for that. Recently in one of my Survey site which is https://surveyexperiences.com I have added few authors and for them I am using Gravatar. You can also search for Avatar Plugin in WordPress Plugin Directory.
    Let me know is it helpful for you or not?
    Regards,
    Leo

    #302502
    Norman Cates
    Participant

    I’m having a very weird problem with Buddypress.
    Buddypress 4.1.0
    Wordpress 4.9.9

    the problem occurs regardless of theme used.

    When I get confirmation emails there is a problem in the HTML part of the message.

    Part of the HTML seems to be cut off.

    Here’s a section of the email. There’s a fragment that is: <hr color=”#F7F3

    You can see that it’s cut off. So it kills a chunk of text including the link.

    I can’t find where this is generated to see what the problem might be…

    Thanks,
    Norman

    <!-- Email Body : BEGIN -->
    			<table role="presentation" cellspacing="0" cellpadding="0" border="0" align="center" bgcolor="#FFFFFF" width="100%" style="max-width: 600px; border-radius: 5px;" class="body_bg">
    
    				<!-- 1 Column Text : BEGIN -->
    				<tr>
    					<td>
    						<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
    							<tr>
    								<td style="padding: 20px; font-family: sans-serif; mso-height-rule: exactly; line-height: 24px; color: #555555; font-size: 15px" class="body_text_color body_text_size">
    									<span style="font-weight: bold; font-size: 20px" class="welcome">Hi Norman Cates,</span>
    									<hr color="#F7F3
    <p>kiwiadmin sent you a new message: &quot;Test for system&quot;</p>
    <blockquote><p>&quot;s dfsd fsdfsdfsdf&quot;</p></blockquote>
    <p><a style="color: #0025e0;" href="https://crew.conzealand.nz/members/normancates/messages/view/19/">Go to the discussion</a> to reply or catch up on the conversation.</p>
    
    								</td>
    							</tr>
    						</table>
    					</td>
    				</tr>
    				<!-- 1 Column Text : BEGIN -->
    
    			</table>
    			<!-- Email Body : END -->
    #302495
    egamestudio
    Participant

    Hello,

    This is my problem, I use ACF PRO to create my own fields on my WordPress theme, for the member profiles part everything works with this code:

    <?php
    /**
     * BuddyPress - Members Settings ( General )
     *
     * @since 3.0.0
     * @version 3.1.0
     */
    acf_form_head ();
    $author_id = bp_displayed_user_id();
    ?>
        <div class="col-lg-6">
            <?php
            acf_form(array(
    
                'id' => 'acf-formA',    
    
                /* Groupe de champs ID utilisé */
                'field_groups' => array('663'), //CHANGE ID IN LIVE
    
                /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                'post_id' => 'user_'.$author_id,
    
                /* Quel est le nom sur le bouton du button de sauvegarde */    
                'submit_value' => __("SAUVEGARDER", 'acf'),
    
                /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                /* Button de submit de formulaire */
                'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                /* Le spinner de chargement */
                'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                'form' => true,
                'return' => ''
            ));
            add_action('acf/save_post', 'my_acf_save_post', 20);
            ?> 
        </div>
    

    So far no problem to display then on the member’s profile page the information of the ACF field.

    My Problem:
    On the other hand, on the Groups part I can’t find how to attach the field to the ID group, that’s what I tried.

    In my edit-details.php (in group),My field works, I enter test in my acf form
    it comes out in the echo “test” but on all the groups, I can’t associate this field with the group id.

    <?php
    /**
     * BP Nouveau Group's edit details template.
     *
     * @since 3.0.0
     * @version 3.1.0
     * @version 4.0.0 Removed 'Notify group members' checkbox in favor of hooked callback.
     */
    acf_form_head ();
            
    $group_id = bp_displayed_user_id();
    $group = new BP_Groups_Group( $group_id );
    
    ?>
    <?php echo get_field('test_group', 'group_'. $group_id); ?>
    
         <?php
                acf_form(array(
    
                    'id' => 'acf-formA',    
    
                    /* Groupe de champs ID utilisé */
                    'field_groups' => array('714'), //CHANGE ID IN LIVE
    
                    /* Quelle est la function meta utiliser en $ sur ID auteur ? */    
                    'post_id' => 'group_'.$group_id,
    
                    /* Quel est le nom sur le bouton du button de sauvegarde */    
                    'submit_value' => __("SAUVEGARDER", 'acf'),
    
                    /* Le message que je retourne en cas de réussite sur l'infobox bootstrap */
                    'updated_message' => __("Mise à jour réalisée", 'acf'),   
    
                    /* Button de submit de formulaire */
                    'html_submit_button'	=> '<div class="text-center"><input name="updateuser1" type="submit" id="updateuser1" class="btn-style1" value="%s" /></div>',
    
                    /* Le spinner de chargement */
                    'html_submit_spinner'	=> '<span class="acf-spinner"></span>',
                    'form' => true,
                    'return' => ''
                ));
                add_action('acf/save_post', 'my_acf_save_post', 20);
                ?> 

    Thanks for your help !
    demo : https://cryodev.fr/branch/build/alpha/groupes/le-groupe-a-demo/

    sdeeds
    Participant

    Hey, first post here,
    I’m using a WordPress install with MemberPress to manage registrations.

    I then am using bbPress for a forum, and BuddyPress for Profiles, Messaging, etc.

    When a new user registers, a very peculiar thing happens.

    The WP Username and the BuddyPress name, stored in the wp_bp_xprofile_data do not match.
    In some cases, this also becomes imported_{username}.

    In the case where it the BuddyPress name becomes imported_{username} it seems to be associated with bbPress, in this file /plugins/bbpress/includes/admin/converter.php, starting on line 970.

    However, I can’t seem to track down where seemingly random usernames are coming from, and WHY…

    In the example image, if I were to search the database for bobbytaylor5971 the only instance of that string is in the one row in wp_bp_xprofile_data. Correct user_id, wrong value.

    I’ve been trying to figure this out for months, and so far, we’ve just been manually updating each new registered user.

    Any thoughts on this issue?

    Thanks for the help.

    #302483
    mbamutuelle
    Participant

    Hello,

    Can you help me for hiding the “Modify” button on a member page.
    I Don’t want that my members can change their profile by themself because all fields are automaticly feed by an LDAP authentication.
    Before updating my Woffice theme, i just have to comment some lines of this file :
    /home/wordpress/wp-content/themes/woffice/buddypress/members/single/profile.php

    // Edit
    //case ‘edit’ :
    // bp_get_template_part( ‘members/single/profile/edit’ );
    // break;

    But now i Don’t find where i can hide this button for my suscribers.

    Can you try to help me please ?
    Thx

    #302477
    ashley72
    Participant

    I can add a bit more to this. I have checked my wp_mailfunction on my wordpress. Using a simple php script.https://www.butlerblog.com/2012/09/23/testing-the-wp_mail-function/

    The mail is sending out as expected for several different email addresses I tried using wp_mail. So if BuddyPress uses the wp_mail function – the default installation must have configuration problem.

    #302476
    ashley72
    Participant

    I have the same problem. The lack of community support makes me feel this plugin may not be worth the effort.

    When you check the manage signups the new registered user is awaiting to be activated. It shows that an email has been sent. After you try and resend the activation email. It does trigger and add to the count – showing two emails sent. So it would seem most of the functionality is working. If I deactivate the plugin, my wordpress email notifications is working. I’ve checked the spam folder, and even tried non-gmail accounts and still getting no activation emails at all. However, I have received a buddypress notification when another member does a mention. So it appears some kind of small bug is the problem.

    Does any of the core developers for BuddyPress check theses support forums?

    #302465
    shanebp
    Moderator

    The easiest approach, imo, would be to remove the current member search input from the members directory.
    For example, create an overload of this file and delete the code re member search:
    buddypress\bp-templates\bp-legacy\buddypress\members\index.php

    Then get this plugin: BP Profile Search
    And configure a custom member search that only includes the fields you want.

    #302449
    msteimann
    Participant

    I think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.

    Thank your for looking into this, Venutius. Good to know that I can now raise a bug report, and a feature request as well. Thank you and your team for putting so much effort into this really great plugin!

    #302445
    Venutius
    Moderator

    I think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.

    chuchudolls
    Participant

    WP v. 5.0.3
    Directory
    root
    I did not upgrade from a previous version of WordPress.
    WordPress was functioning properly before BuddyPress install.
    BuddyPress v 4.1.0
    No upgrade.
    Other plug-ins: bbPress, bbPress WP Tweaks, Breadcrumb NavXT, BuddyPress, Column Shortcodes, Contact Form 7, Content Aware Sidebars, Mailchimp for WooCommerce (currently not set up), MetaSlider, N-Media WooCommerce PPOM, Shindiri Woo Shop Slider Lite, Widget Options, WooCommerce (currently not set up), WooCommerce Produce Carousel Slider, WooCommerce Services (currently not set up). All are up to date.
    Wordpress theme is Vogue.
    I’ve not modified the core files in any way that I’m aware of.
    No custom functions that I’m aware of.
    I do not know how to do .php coding.
    I do not have any errors that I am aware of and could not run the check from the tutorial as it didn’t work. Again, do not know .php code.
    Current website has been removed from online and is on a private server/localhost. This will change soon as the new site is finished.
    Windows.
    No BuddyPress theme chosen so maybe default theme selected?
    No idea if I overloaded any buddypress template files.

    Posting above per the “When asking for support” sticky.

    I have two problems. The first is that I don’t have a way for users to create groups using the BuddyPress groups system. I can only create groups manually by selecting “Groups” > “Add New” in the dashboard. I do not wish to cater to 100’s of requests for groups, and would like users to have freedom of creation. “Anyone can register” is selected. “User Groups” is selected.

    As of right now, my site has a “Social” menu option with sub-menu of all the BuddyPress items. If I click on “Groups” in the sub-menu, I DO NOT get an option to create groups. However, if I click on the main menu “Social,” and look at the right side where my “Groups” widget is, I can click on groups, and get a new page that has a “Create New Group” option that allows anyone to create.

    Ok, so why not just add the widget to all the BuddyPress pages? I did. They won’t load. The only way people can add groups is if they go through this widget. Which leads me to my second problem; I am not able to add that widget anywhere else on the website. It will not load on any other of the BuddyPress pages/sub-menu options. In fact, nothing will load.

    This was the result of adding “Content Aware Sidebar” plug-in, because I was not able to get website widgets OFF BuddyPress pages even when selected to be off those specific pages. Now, I have removed my main-site widgets from BuddyPress pages, but can’t get BuddyPress widgets on BuddyPress pages. Boy, I hope that was clear.

    If I remove “Content Aware Sidebar” (or deactivate it), everything goes back to the way it was. Main website widgets that I don’t want on BuddyPress pages will load on BuddyPress pages, but so will the BuddyPress widgets.

    How do I get my BuddyPress widgets to load AND prevent my other widgets from loading on BuddyPress-only pages? Or can I manually insert a “Create Group” link inside the “Groups” page, preferably next to “Invitations” and “Memberships?”

    I believe the problem lies with both the “Content Aware Sidebar” plugin and “Widget Options,” which is the one I used to be able to manually select pages. It worked perfectly until BuddyPress was installed. Now, I can’t get choices over BuddyPress-only widgets, but I can get widgets to load at will anywhere else on the site.

    #302425
    artluverr
    Participant

    I had to disable my child theme temporarily for some other issues after a recent theme/wordpress update and have lost some of my customizations. Becasue of this I now have the same issue but I don’t want it to show in the directory. I managed to remove it from my profile pages. I am using bp legacy though not nouveau. I tried your snippet with the snipit plugin and then tried it by editing the snipet to say buddypress_legacy but still not working. Any thoughts?

    I also noticed that now on the right column people’s names wrap right like they are doing on that page if the screen is full? Any snipits for that that I can use until I get my child theme back running properly?

    #302418
    jstande
    Participant

    If the following is to redirect Registration from BP to WP, what would redirect from BP to [Peepso_Register] ? And exactly where would I put it?

    (Any reason why nobody has developed options to turn everything on or off in BP since it is so integrated with other themes and plugins?)

    /*disable registration bp */
    function my_disable_bp_registration() {
    remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
    remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
    }
    add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );

    add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
    function firmasite_redirect_bp_signup_page($page ){
    return bp_get_root_domain() . ‘/wp-login.php?action=register’;
    }

    Version 4.1.0 BuddyPress
    Version 5.0.3 WordPress

    Home Default

    #302412
    shanebp
    Moderator

    I have even modified the original message in bp-core-functions.php

    There are 4 instances of that string in that file. Did you change all of them ?

    As you should know – editing core files is not a good idea.
    That string is in the buddypress.pot file.
    And it seems to be in the buddypress-fr_FR files.

    https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/fr/default?filters%5Bterm%5D=complete+the+activation&filters%5Buser_login%5D=&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated&filter=Filter&sort%5Bby%5D=priority&sort%5Bhow%5D=desc

    So I do not know why you are having issues.
    Have you tried using the Repair Tool – …/wp-admin/tools.php?page=bp-tools > Reinstall emails (delete and restore from defaults).

    #302410
    shanebp
    Moderator

    Please ask questions about bbPress on their support forums.

    It’s not easy to figure out what you are doing – or more importantly why.

    I suggest you not use pre_get_posts.
    Instead write your own WP_Query on your custom page.

    This thread is now closed due to being off-topic for these forums.

    #302385

    In reply to: Category & Tag

    shanebp
    Moderator

    This is a BuddyPress forum.
    Questions specific to WordPress should be asked on the WP support forums.

    #302379
    ng95
    Participant

    Hi,

    I have a fresh install of WordPress + Buddypress.
    Wordpress : 5.0.3
    BuddyPress : 4.1.0

    All wordpress email are working: manual user creation ….
    Unfortunely, buddypress cannot send email activation when a user registers.

    Please, this issue is very critical because all stops now. Could someone help ?

    Regards

    #302378
    ghayward805
    Participant

    The lack of recent updates, plus the notice that they have not been tested with the recent versions of WordPress. You feel confident they are safe to use and will continue to be supported?

    #302361
    shanebp
    Moderator

    I cannot duplicate your issues. There is something else happening on your installation.

    With the code in place I’m unable to search the user database in the WP dashboard – instead of search results it displays a blank page.

    The blank page indicates an error.
    You could turn on WP Debug and then try another search and then check your error log. Once you’ve generated the errors, you can turn off debug.

    #302354
    Venutius
    Moderator

    Possibly the issue is that it’s trying to call that function to early in the wordpress load process.

    #302331
    Varun Dubey
    Participant

    @designcornerdev Multisite database has lots of tables which are not covered by site-specific search and replace plugin in most of the cases. You can try https://interconnectit.com/products/search-and-replace-for-wordpress-databases/. Make sure you have a database backup before doing any real changes inside the database.

    #302314
    shanebp
    Moderator

    It’s difficult to debug from just that error message.
    But it is a generic error that is only sent when the message fails and the error is not a WP error.
    From your description, the error is specific to a single site, so something has changed on that site or on your hosting plan.
    Using WP_DEBUG may give more info.

Viewing 25 results - 2,301 through 2,325 (of 22,644 total)
Skip to toolbar