Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 6,351 through 6,375 (of 32,562 total)
  • Author
    Search Results
  • #249758

    In reply to: Members disappear

    shanebp
    Moderator

    BP does not delete users automatically.
    Perhaps something in your theme, plugins or some custom code is changing things.
    Do the members appear in …wp-admin > Users ?
    If so, something is hiding them on the front end.
    If not, something is deleting your users – and it is not BP.

    #249752
    Mathieu Viet
    Moderator

    Oh sorry, you can use the bp-custom.php file to put these filters: https://codex.buddypress.org/themes/bp-custom-php/

    #249747
    Leg3ndAry
    Participant

    Wordpress Version: 4.3.1
    Theme: Enfold
    Plugins with media:

    Better bbPress Signature
    EWWW Image Optimizer
    W3 Total Cache

    There are more plugins but they are only for bbpress.
    I also installed the Buddypress Beta, but the bug is still there.

    And thank you already for your time 🙂

    #249746
    Mathieu Viet
    Moderator

    Hi,

    thanks everyone for reporting this issue. Could you give us details about your configs ?

    WordPress version?
    Theme activated?
    Plugins dealing with media activated?

    #249730
    sure45
    Participant

    I have download new buddypress 2.4.3 and unzip ,it , i found registaion and activate folder and php files is missing , so nothing found in register and activate.

    what to do,some one help me in instalation of buddypress
    i am using theme JBST

    #249724
    shanebp
    Moderator

    You’ll need an identifier re team members. A profile field could work.

    You don’t say where the Team Page appears.

    Unless you are explicitedly using the bp-default theme, always use files from
    \buddypress\bp-templates\bp-legacy\buddypress\
    in your child theme.

    If you have a conditional, you could edit members-loop.php
    Something like:

    
    <?php
    $is_team_page = true; // something that returns a boolean
    if ( $is_team_page ) 
       $include = '&include=1,2,3,4';
    else
       $include = '';
    ?>
    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . $include ) ) : ?>

    More info:
    https://codex.buddypress.org/developer/loops-reference/the-members-loop/

    #249697
    johnywhy
    Participant

    i found ‘multiselectbox’ in the following files:

    buddypress.pot
    buddypress.pot
    buddypress.pot
    buddypress.pot
    bp-members\admin\css\admin-rtl.css
    bp-members\admin\css\admin-rtl.min.css
    bp-members\admin\css\admin.css
    bp-members\admin\css\admin.min.css
    bp-themes\bp-default\functions.php
    bp-themes\bp-default\functions.php
    bp-themes\bp-default\functions.php
    bp-themes\bp-default\functions.php
    bp-themes\bp-default\members\single\profile\edit.php
    bp-themes\bp-default\registration\register.php
    bp-xprofile\bp-xprofile-classes.php
    bp-xprofile\bp-xprofile-functions.php
    bp-xprofile\bp-xprofile-template.php
    bp-xprofile\bp-xprofile-template.php
    bp-xprofile\admin\js\admin.js
    bp-xprofile\admin\js\admin.min.js
    bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
    bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
    bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
    bp-xprofile\classes\class-bp-xprofile-field-type-multiselectbox.php
    bp-xprofile\classes\class-bp-xprofile-field-type.php
    bp-xprofile\classes\class-bp-xprofile-field-type.php
    bp-xprofile\classes\class-bp-xprofile-field-type.php

    i welcome any suggestions on which of these i actually need to edit, at minimum, to create a new field-type.

    thx!

    #249694
    calvin
    Participant

    Just a suggestion.

    Have you tried removing register.php (please save a copy before removing) file from your theme (so that it will revert back to the original register.php in buddypress? Or replace the file with the original register.php file from buddypress in your child theme?

    (register.php can be found in your theme buddypress/members folder)

    If it shows the regi form than you will need to recheck and recode the register.php file.

    The best solution may still be to contact your theme developer to check on this issue since you can confirm it is a theme issue.

    #249689
    calvin
    Participant

    After adding the fields you want using xprofile, go to your regi page. If you are using google chrome, right click on the multiline box and inspect

    you should find out the the id of the visual/text box something similar this ‘wp-field_664-editor-tools’ (yours should be a bit different cos field number is different)

    you should also find out the id of the mce panel using the same method

    After that you should be able to add the custom css to your theme stylesheet.
    Example (hiding the item using css):
    #wp-field_664-editor-tools {display:none;}

    You may need to double check on the edit profile page. if it still appears there, you can use the same method to hide it.
    Hope this helps.

    #249683
    calvin
    Participant

    One way to do it is to hide it using custom css in your child theme/theme stylesheet.

    #249681
    jhvalet
    Participant

    Hi! I am having an issue with Buddypress. I noticed there were some repair issues listed in the “Tools” section so, I clicked repair on a few of them and ended up getting kicked out of the admin panel. I can upload BP with no problems but, as soon as I activate it I get kicked out. I spent a few hours troubleshooting with my hosting company and they have determined it is a problem with Buddypress. I have tried several different versions of BP and have the same problem. I have also changed the theme and used Twenty Twelve, Twenty Thirteen, etc. and have the same problem. I can access the front end of my site just not the admin panel. You can see on the front end that BP is installed. I currently have no plugins active because we wanted to make sure it was indeed BP. I am running WP version 4.4.1 and X Theme. As I said before it doesn’t matter what theme or version of BP I use I still have the same problem. Any help is greatly appreciated. Thanks!

    Jody

    shanebp
    Moderator

    To prevent activity items being created for new registers and friendships, add this to your theme/functions.php or bp-custom.php

    remove_action( 'bp_core_activated_user', 'bp_core_new_user_activity' );
    remove_action( 'bp_register_activity_actions', 'friends_register_activity_actions' );
    #249654
    Leo
    Participant

    I have found out the reason, it is because of the BuddyPress Like plugin.
    Maybe it is because of a custom theme or whatever, but when you like and unlike the same activity, all your activities are removed.

    Just to be aware if anyone also has this issue.

    Regards,
    Leo

    #249635
    dlongm01
    Participant

    Thanks modemlooper. I’m a bit of newbie and, now you point it out that’s a simple and good test.

    Really helpful and guess what: the link box styling works fine!!

    Back to the theme developers! (I’m using XTheme).

    Cheers

    #249625
    modemlooper
    Moderator

    Try testing by switching to a WP default theme such as twentySixteen. Just to rule out the theme.

    #249608

    In reply to: main menu padding

    calvin
    Participant

    I presume your theme may have settings on individual pages. Check whether your theme settings at members page is correct.

    #249607

    In reply to: main menu padding

    calvin
    Participant

    Gave a brief look comparing the two pages you provided. This is my input:

    The problem lies with your header for the members page
    which data-menu-type is null
    Your main page data-menu-type=’simply’

    you need to set it to data-menu-type=’simply’ then you should have no issue.
    on how to do that I think you need to study how to set it back to simply on members page, should be more of a theme issue rather than buddypress i think.

    #249602
    Slava Abakumov
    Moderator

    Try put this code into bp-custom.php or function.php of your theme:

    remove_filter( 'register_url', 'bp_get_signup_page' );

    UPD: this solution doesn’t work.

    This doesn’t work either:

    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );

    regvg
    Participant

    Have the same problem: new wp install 442 + buddypress 2.5.8, first on theme 2016, then theme quest, both all the links in profile but no “add friend” button,
    in bp settings all functions are enabled,
    sending private messages works fine,
    group owner invite people works, too

    changing theme didn’t help.
    Has anyone pls a suggestion?

    #249574
    CJBatson
    Participant

    Thanks for the reply!! Does that plugin work? I tried it and it didn’t work well with my theme. I was hoping there was a way to set it up within BuddyPress, using the BP notifications.

    I actually thought that the older plugin “subscribe to comments” worked better but is not maintained any more, and I also had some issues with my theme.

    What does BP use to put the checkbox down below this message?

    #249569
    Henry Wright
    Moderator

    My approach is usually start by installing WordPress and then install and activate the BuddyPress plugin. From there the next step is to choose a theme. Here you will have both free and paid options. You’ll find some good free themes here. Once you’re done with your website’s look and feel, begin to add functionality such as an ecommerce plugin like WooCommerce.

    #249560
    shanebp
    Moderator

    You can put it in your theme or child-theme functions.php or in bp-custom.php.

    #249533
    skunkgrunt
    Participant

    I agree that this should be a function in buddypress core. A standard checkbox to make a site private. If selected, a standard set of pages are automatically added as viewable by logged out/unregistered users (about us, privacy policy, terms of service, etc.), and able to be unchecked by the admin as necessary.

    You know what, while we’re at it, Theme My Login plugin functionality should be added to core as well. The ability to customize the login for branding, and customizing the registration page; eg. viewable/required fields, to make it more site specific should be included as well.

    #249525
    dennition
    Participant

    Hi,

    thanks for your tip. I deleted the theme and all required plugins (composer inclusive) and installed it again. Now i`m activating als plugins one by one with the wp_debug on. until know all is fine.

    buddyforms and buddyforms members still shows a lot of Notices with Undefined index. Can this be normal with some plugins? i think when i turn wp_debug on off the website works (and i don’t see the notices).

    #249485
    shanebp
    Moderator

    “Profile” is the parent tab.
    “View” is a subnav tab for the parent tab.
    If you are looking at your own profile, you should also see a subnav tab for ‘Edit’.

    Try switching momentarily to a WP theme like 2013 to see how it looks there.

Viewing 25 results - 6,351 through 6,375 (of 32,562 total)
Skip to toolbar