Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 2,226 through 2,250 (of 31,071 total)
  • Author
    Search Results
  • #302518
    shanebp
    Moderator

    So…

    You have created a blank page with this as the slug: register

    You have assigned that page to ‘Register’ on this page:
    yoursite.com/wp-admin/admin.php?page=bp-page-settings

    You have checked the ‘ Anyone can register’ box on this page:
    yoursite.com/wp-admin/options-general.php

    And you still get a blank page when logged out and visiting that page ?

    It may be theme related.
    Try switching momentarily to a WP theme like 2017 and then log out and visit the register page.

    #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/

    #302487
    Varun Dubey
    Participant

    Hi @wegosi you can use following codes inside child theme functions.php or bp-custom.php
    You can change the values as per your requirement

    if ( ! defined( 'BP_AVATAR_THUMB_WIDTH' ) )
        define( 'BP_AVATAR_THUMB_WIDTH', 50 ); //change this with your desired thumb width
     
    if ( ! defined( 'BP_AVATAR_THUMB_HEIGHT' ) )
        define( 'BP_AVATAR_THUMB_HEIGHT', 50 ); //change this with your desired thumb height
     
    if ( ! defined( 'BP_AVATAR_FULL_WIDTH' ) )
        define( 'BP_AVATAR_FULL_WIDTH', 260 ); //change this with your desired full size 
     
    if ( ! defined( 'BP_AVATAR_FULL_HEIGHT' ) )
        define( 'BP_AVATAR_FULL_HEIGHT', 260 ); //change this to default height for full avatar
    #302485
    shanebp
    Moderator

    If you are not seeing code now in your theme then you could create a copy of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\profile.php
    Place it in the same theme location you mentioned above and make your edits.

    If you are using the BP Nouveau template pack, then make a copy of this file:
    buddypress\bp-templates\bp-nouveau\buddypress\members\single\profile.php

    #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

    wegosi
    Participant

    Could you please, help to solve this issue. It’s Ok, when uploading avatar via desktop, but when loading avatar via mobile – cropping image is very poor quality.

    Screenshots:
    http://prntscr.com/me7ja3

    Theme developer of the theme:

    After some testing we were able to reproduce the issue and we determined that this is an issue with BuddyPress, as this issue seems to happen with the default Twenty Nineteen theme as well. So unfortunately we cannot help you resolve this as we have no control over the way BuddyPress handles avatar uploads on mobile.
    
    To go further, we invite you to contact BuddyPress support about this issue:

    Thank you.

    #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.

    #302448
    msteimann
    Participant

    Thanks for the interim solution. Because your CSS-code didn’t work for the KLEO theme, I’ve asked the theme developers and they’ve suggested another code, which did the trick. Just in case someone else would like to know:

    p#field-visibility-settings-toggle-1 {
        display: none;
    }
    #302443
    shanebp
    Moderator

    If you are not an experienced developer, you may be better off hiring such a person.

    Until you write some code and ask specific questions about it, here are some general pointers…

    Take a look at how the activities are restricted on a group activity page.

    There are some codex pages that provide info:

    Add custom filters to loops and enjoy them within your plugin

    Activity dropdown filters in templates

    #302438
    msteimann
    Participant

    Thanks for your quick reply, Venutius!

    I have tried the WP 2015 Theme and got the same results. So I switched back to KLEO and noticed, that the xProfile fields do change to the desired visibility settings, AFTER the user clicks the SAVE SETTINGS button. So I guess I was confused by the fact that BEFORE you hit the save button there is a misleading visual feedback (the visibility term does not alter to the according setting the user has just changed it to, it still displays the same value as before).

    Could this be changed in the next release?

    My first problem still remains: the „change display name visibility option“ is displayed beneath the name field on the user Registration page. This doesn’t make sense, if the name’s visibility throughout BuddyPress network is mandatory. How can I get rid of this line? Does this line and it’s user changeable visibility options really not appear on a default install?

    In the WP Dashboard I cannot change the options for the primary Name field. Only the fields under the details tab can be altered by admin and set to be visibility-changeable by the user. (Hope you understand what I try to say 😉

    Regards,
    Martin

    Hide visibility option on registration page?

    #302434
    Venutius
    Moderator

    On a default install there is no option to change the visibility of the Name field, it is always visible to all. Other profile fields can have this setting changed and it works. I suggest you try switching to a default theme such as 2015 and see if you still have the issue.

    #302432
    msteimann
    Participant

    Hello,

    I am using the KLEO Theme (the current version supports only bp-lagacy-template) together with the current Version of BuddyPress 4.1.0, and having some serious trouble.

    1. Whenever I try to change the visibility settings of the Name Field on the registration page, it jumps back to the default „everyone“ value (please note the attached GIF). As far as I understand BuddyPress requires this field to always be present and for the value to always be everyone. But why is the line of text and visibility option setting shown beneath the Name Field then? And if the settings are not stored as expected, the user ends up confused.

    2. Similar issue on the user’s profile page. Whenever I try to change the visibility settings of an xProfile (Detail), it looks as if a chosen setting is stored while saving, but the text still says „This field can be seen by: everyone), which confuses the user even further (please note the attached GIF).

    It looks like a BuddyPress related bug to me, because for testing purposes I have deactivated any other plugin that might interfere. My site is still under construction, so unfortunately I cannot proof my claim „live“. Can you please confirm, if these issues exist on other websites as well?

    Thank you in advance for your reply.

    Regards,
    Martin

    field visibility options bug on register page

    field visibility options bug on profile page

    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

    #302390
    fab974
    Participant

    Hi
    I would like to know if there is an easy solution to move a sub item from 1 parent to another ?
    Example: My nav bar contains 2 items

    ITEM 1
    subitem 11 – subitem 12

    ITEM 2
    subitem 21 – subitem 22 – subitem 23

    I want to move subitem 23 to ITEM 1 in order to get:

    ITEM 1
    subitem 11 – subitem 23 – subitem 12

    ITEM 2
    subitem 21 – subitem 22

    Can I do with edit-

    I am using:
    WordPress 5.0.3 running Astrid theme
    BuddyPress 4.1.0

    Thanks
    Fabrice

    #302360
    shanebp
    Moderator

    BuddyPress does not have a function called bb_notification_count

    Are you using a BuddyBoss plugin or theme?
    If so, that is where the issue is and you should contact BuddyBoss with your question.

    #302356
    shanebp
    Moderator

    It should work.
    Try moving it to bp-custom.php

    #302326
    designcornerdev
    Participant

    I support.

    My problem is the follow.

    I have a multisite installation with more than 30 subsites.

    I developed the platform in and different domain for later to “export” to the final domain.

    Buddypress groups were working fine before export.
    During export, I use a search and replace plugin to change the URLs to the new URL.

    After the export when creating a new group, in the second step, wordpress craches and don´t let me chosse the group privacy settings.
    My theme is woffice from Alkaweb and the problem pressist even whit the Twenty Seventeen.

    This issue started after the export of my site.

    Can you please help me in this issue.

    Best Regards.

    #302321
    shanebp
    Moderator

    Removing the tab could cause problems because it is the default tab.

    I suggest you simply edit the page to remove those fields and replace them with a message directing users to your preferred page.
    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\settings\general.php
    And then in the overload file, make your changes.

    #302310
    michaelgraci
    Participant

    Hi

    Pretty straight forward error message I receive when I try and send private messages Could use help in debugging. I had been able to send messages “amongst friends”. It worked for a long time. I had not tested in a while and now it does not work. I have it working on other sites.

    Any suggestions?

    I deleted every plugin except buddypress and used 2017 theme—get same results “Message was not sent” Please try again.

    Thanks
    Mike

    #302267
    Varun Dubey
    Participant

    @dwl003 no need to copy buddypress.css or min file inside the child theme.
    You should be able to override the tab specific CSS with !important tags and writing codes inside appearance >> customizer >> additional CSS
    http://prntscr.com/m8dj7t

    #302265
    mrwassen
    Participant

    OK, no replies as of yet but some progress to report:

    I abandoned the idea of making minor style customizations in my WS child theme’s style.css because of the inconsistent results I was getting (see my previous post). Instead, after more hours scouring of the internet, I found a different approach which is to setup folders under my child theme folders like so:

    …/wp-content/themes/mytheme/buddypress/css

    I then created a new file named buddypress.css in the new /css folder, put in a couple of css entries and voila! – it didn’t work. Determined to get this working, I then spent a few more hours of scoouring and through trial and error and finally came up with the following which does work for me:

    1) setup the above mentioned folder structure under the child WP theme
    2) copy buddypress.css from the core buddy press css folder under the chosen template (e.g. nouveau) to the new css folder
    3) rename the new buddypress.css to “buddypress.min.css” (even though it is not “minified”)
    4) changes made to the new buddypress.min.css now take effect (hoorah!)

    Although this approach seems to work, it does raise several questions:

    A) since the custom version of the css file is not “minified”, does this not defeat the purpose of minifying css files in the first place (i.e. presumably performance improvements)?

    B) I would have hoped that the custom css file would only need to contain deviations from the theme’s css – however this does not seem to be the case. It appears that the entire file needs to be copied. The concern here is that when buddypress is upgraded, there may be css changes in the upgrade that are now “masked” by the custom css file which contains the older version of the styling (in cases where no modifications were made) – this seems a bit “messy” to me

    C) I guess my main question really is whether the above approach which I finally settled on is valid and is the best available approach.

    Sorry for the lengthy post, but I am seeking clarity on this so that I end up with a good long term solution.

    Dennis

    Varun Dubey
    Participant

    @flowta with default 2017 theme you have horizontal menu http://prntscr.com/m7mamo and you can also try with the vertical menu as well. As per theme specific support most available theme in the market have legacy template files, that’s why you get a suggestion to switch to legacy first.


    @ssmalli3
    you can also check one more Reign Demo

Viewing 25 results - 2,226 through 2,250 (of 31,071 total)
Skip to toolbar