Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 2,276 through 2,300 (of 22,614 total)
  • Author
    Search Results
  • #302619
    Varun Dubey
    Participant

    @suehanen

    You can easily add them to the menu, check out following link

    BuddyPress Links in WordPress Menus

    Inside BuddyPress section, you will find the register menu item to add inside your primary menu.

    #302611

    In reply to: Redirect

    Venutius
    Moderator
    #302601
    mbamutuelle
    Participant

    Hello,

    Thanks for your help, it works when i copy profile.php (after editing it) in /home/wordpress/wp-content/themes/woffice/buddypress/members/single/

    Thanks

    #302568
    shanebp
    Moderator

    Have you tried turning on wp_debug and then examining the log?
    https://codex.wordpress.org/WP_DEBUG

    Have you looked at your browsers’ javascript console ?
    It shows _wpnonce errors. Probably related to your avatar upload code on the reg page.
    Have you tried turning off the avatar upload on the reg page?

    Have you tried turning off s2member ?

    Why do you have 2 reg pages ?
    http://gym.juliabuckleyfitness.com/wp-login.php?action=register

    #302567
    shanebp
    Moderator

    Perhaps it is your theme ?
    Try switching momentarily to a WP theme like 2017.

    Are you sure that you have not granted edit privileges to subscribers ?
    Use a plugin like this to find out:

    User Role Editor

    #302559
    shanebp
    Moderator

    Are there default settings in wordpress itself that controls caching?

    No.
    Make sure to check your mu-plugins folder – if you have one.
    Your hosting provider may put a cache plugin in there.

    #302549
    smaples23
    Participant

    Hi, thanks for the reply.
    Are there default settings in wordpress itself that controls caching? I have not found any active plugins that I have downloaded that have cache settings.
    I just did a full backup of my site to test the theme. 78k files later, its finally done. Now I feel more comfortable diving in it further

    #302546
    josh.grisdale
    Participant

    Hi,

    I’m not really a programmer and just hacked together some stuff I found…

    but,

    First of all I assume that xprofile_get_field_data only gets feilds in the Extended Profile tab of the user, so you would either need to add those fields to the Extended Profile, or you would need another wordpress function to get it from the regular profile likely

    $current_user->user_firstname (https://codex.wordpress.org/Function_Reference/wp_get_current_user)

    $newname = $current_user->user_firstname . $current_user->user_lastname;

    I would guess…

    #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

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

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

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

Viewing 25 results - 2,276 through 2,300 (of 22,614 total)
Skip to toolbar