Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,901 through 6,925 (of 32,678 total)
  • Author
    Search Results
  • #251126
    kamarr
    Participant

    Thanks again.

    I’ve copied the files you provided to the files in the /wp-content/my-theme/buddypress/members – folder. To test it properly I’ve even named the target file local-members-loop.php. However, the page still produces a 404 page not found error.

    The site is running with WordPress 4.4.2 and Buddypress 2.5.2.

    The idea is sound, I wonder what the issue may be.

    @Valuser
    @henrywright
    @shanebp
    @danbp

    #251124

    In reply to: Update – Then Hacked

    shanebp
    Moderator

    Please do not double post.

    I’m not aware of any security issues in the latest release.

    Have you read this page?
    https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/#ive-been-hacked-what-do-i-do-now

    If you still feel the hack may have been related to BP, you’ll need to provide specifics.
    And you should do so via a ticket that you can create here with the same user / pw you use for these forums.
    Be very careful about what details you provide on a ticket – they are public.
    Be sure to include contact info.

    #251099
    Manuel5cc
    Participant

    1. Which version of WordPress are you running? 4.4.1

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

    3. If a directory install, is it in root or in a subdirectory? Root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? No

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

    6. Which version of BP are you running? 2.5.1

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

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes (list is long so I’ll detail if needed)

    9. Are you using the standard WordPress theme or customized theme? Pro theme

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

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

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not running

    13. Please provide a list of any errors in your server’s log files.

    14. Which company provides your hosting? Quijost

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux

    Register page does not work, it just reloads and erases password data. I have to note that I’ve tried it in Chrome and Firefox. In the first one it works properly, in the second one does not.

    I have tried to reproduce this with the Twenty Fifteen theme and it seems to happen in the same way.

    #251098
    kamarr
    Participant

    @Valuser

    Thank you for your response and suggestion! After following the steps and visiting the page, the website produces a 404 page not found error.

    I’ve tried creating the page with in wordpress as a new post just in case, and that produces a blank theme style page with no member directory.

    The approach seems logical. Copying the member-loop.php file, renaming it, and pasting it in wp-content/my-theme/buddypress/members is probably not far from the mark.

    I wonder what should be changed?

    #251005
    mcpalls
    Participant
    #251002
    Henry Wright
    Moderator

    Yes, you can use Boone’s plugin Unconfirmed to activate the users manually:
    https://wordpress.org/plugins/unconfirmed/

    #250996
    shanebp
    Moderator
    #250972
    Henry Wright
    Moderator

    So wp_mail_from works for all email notifications aside from private message email notifications? If that’s the case then this is likely a bug. You could open a ticket for this on Trac.

    mln83
    Participant

    WordPress 4.4.2
    BuddyPress 2.5.1
    BuddyBoss Theme 2.1.3

    For header issue please see:

    One request: It would be great if “font type” could be changed or a Logo Image could be inserted into “Header” area.

    Best regards,
    Michael

    #250965
    Henry Wright
    Moderator

    Unfortunately there isn’t a page which shows a list of working and broken plugins. However, you can use the WordPress review system and support forums to check what people are currently saying about a particular plugin. If it works, any bugs or issues should all be posted there.

    #250964
    nicolas.mahy
    Participant

    I installed BuddyPress, but there seems to be an issue. The pages I are empty:
    http://www.movefit.be/index.php/members/

    1. Which version of WordPress are you running?

    WordPress 4.2.7 gebruikt thema: Interface.

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

    subdomain install

    3. If a directory install, is it in root or in a subdirectory?

    4. Did you upgrade from a previous version of WordPress? If so, from which version?

    No

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

    Yes

    6. Which version of BP are you running?

    2.5.1

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

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    Disabled all the plugins, didn’t work either

    9. Are you using the standard WordPress theme or customized theme?

    Interface theme

    10. Have you modified the core files in any way?

    Yes

    11. Do you have any custom functions in bp-custom.php?

    No

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?

    No

    13. Please provide a list of any errors in your server’s log files.

    Don’t know where to find them.

    14. Which company provides your hosting?

    Neostrada.nl

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?

    Windows

    #250959
    jessicana
    Participant

    Hello

    I used a code in my child theme functions.php to change the code at registration and it worked, that code was:
    //Change username and email at registration
    // changing from name

    function rv_mail_from_name($name) {
        return 'Enter your Site Name Here';
    }
    // changing email
    function rv_mail_from($content_type) {
        return 'no-reply@Enter-your-domain-here.com';
    }
    
    add_filter('wp_mail_from','rv_mail_from');
    add_filter('wp_mail_from_name','rv_mail_from_name');

    Private messages notifications via email is still showing wordpress@domainname, to change this, I used:

    function custom_wp_mail_from( $email ) {
        $handle = 'no-reply';
        $find = 'http://';
        $replace = '';
        $link = get_bloginfo( 'url' );
        $domain = str_replace( $find, $replace, $link );
        return $handle . '@' . $domain ;
    }
    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );

    This still doesn’t work, I appreciate any help to change the notifications email through a child theme functions.php.

    Regards

    fpsdf
    Participant

    Hi! This may be way too basic, but I’m a bit lost. After installing and setting up BuddyPress, shouldn’t the existing WordPress users on my site be BuddyPress members right away?
    This website has dozens of users, but none of them are shown in “Members” page (besides me).
    Am I supposed to make some kind of migration?

    Thanks a lot!

    rosyteddy
    Participant

    Is there any updated version of this page: https://buddypress.org/extend/recommended-plugins/ so that we can see a list of plugins that works with buddypress.2.5.0 +

    The current list is not only not helpful but confusing also.
    For example: it recommends https://code.google.com/archive/p/buddypress-media/ as Media plugin but this does not seem to work with the latest BP
    Another example: it lists https://wordpress.org/extend/plugins/buddypress-mobile/
    When I spend some time to go to that page I find “Whoops! We couldn’t find that plugin. Maybe you were looking for one of these?”

    Whoops!! Can some one post a list of updated and recommended plugins. Particularly I am looking for
    – Photo with photo-tagging (rtmedia tagging does not work, tried in latest FF)
    – Event and Location, that lets you post the same from the status box
    – Like or Favorit, that lets you like from both the post page and the stream ( 2 way )

    Thanks!

    jonkjr
    Participant

    Hello everyone,

    I have been trying to create a WordPress website that has many different themes and plugins but I only want one BuddyPress login for all of them. I created a MultiSite to manage each separate theme and plugin in a single CMS. But I have been in the network settings trying to associate the register and activate pages but there is no save button?

    Am I going about this the right way? How do I get all users in each subdomain of the MultiSite to share it’s users since they are in the same database? Why is there no save button when I want to associate the register and activate pages?

    Any suggestions would be greatly appreciated. If you need anything from me let me know. Thank you very much

    #250940
    gerrybigbidder
    Participant

    Hi there,

    I need help 🙂

    My educational website overview – it’s an online tutor/student collaboration system. Students can register with many tutors, and tutors can have many students. However, this collaboration is limited to 1 to 1 (i.e. no classroom style), more grind style.

    I’m looking for a wordpress plugin for my website where I can do the communication part of this. It needs to be able to do the following;
    – If a student signs up with a tutor, a messaging system is created between the student and teacher (i.e. student and tutor can send messages to each other)
    – Files, pictures, etc. can be sent during this messaging
    – Once a message is sent an email is sent
    – All these messages are private
    – Once the students unregisters from the tutor, the communication stream is closed and deleted.

    Does anyone know of a wordpress plugin I can use for this? I cant seem to find one anywhere 🙁

    Any help or guidance will be very much appreciated.

    Thanks,
    GBB

    #250920
    mtraps
    Participant

    Hello, first time using buddy press… I have a fairly basic question. When a user registers for an account and logs in to your site is he/she using the wordpress backend? or does buddy press come with a page wheres users can create a new blog post, add the images etc. I know for sure I don’t want users to see the wordpress admin panel.

    #250917
    Paul Wong-Gibbs
    Keymaster

    That’s WordPress 4.4’s embed feature https://codex.wordpress.org/Version_4.4

    I think we added support for that to our activity stream in our last release.
    If you don’t want the feature at all, https://wordpress.org/plugins/disable-embeds/ should work.

    #250903
    johnywhy
    Participant

    Hi,

    so i created a custom function to achieve this. It works:

    function bp_Get_FieldgroupID($FieldgroupName){
         global $wpdb;
         // will want to dynamically find table name for future wordpress installs. 
         $query = "SELECT ID FROM wp_t9s5y8_bp_xprofile_groups WHERE name = '$FieldgroupName'";
         return $wpdb->get_var($query);
    }

    This page explains the basics of wordpress mysql queries:
    https://diigo.com/08f43m

    What i don’t know is how to dynamically find the table name– obviously no one else can use this function in their BP until it dynamically uses the correct table name. I welcome any help with that.

    thx!

    dgalfano
    Participant

    1. Which version of WordPress are you running? WordPress 4.4.2
    2. Did you install WordPress as a directory or subdomain install? Directory
    3. If a directory install, is it in root or in a subdirectory? Subdirectory
    4. Did you upgrade from a previous version of WordPress? If so, from which version? We always keep WordPress up to date, so of course it’s an upgrade. Not sure which version. Maybe 4.1.X?
    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
    6. Which version of BP are you running? BuddyPress 2.5
    7. Did you upgraded from a previous version of BP? If so, from which version? No
    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes, far too many. However, I did deactivate most to troubleshoot leaving only BuddyPress 2.5, BBpress 2.5.8 and Visual Composer 4.3.4
    9. Are you using the standard WordPress theme or customized theme? Customized theme (Bridge by Qode)
    10. Have you modified the core files in any way? No
    11. Do you have any custom functions in bp-custom.php? No
    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? bbPress 2.5.8
    13. Please provide a list of any errors in your server’s log files. Not available
    14. Which company provides your hosting? Blue Host
    15. Is your server running Windows, or if Linux; Apache, nginx or something else? VPS Server, Apache

    I stole this from another thread as it’s the exact same issue:

    I have a problem with getting the registration page to work – the registration page itself is displayed properly, however when I try to submit the registration form (“Complete Sign Up”), all it does is reload the page with fields already filled in (only password fields are blank) and nothing more happens.

    WordPress Registration works just fine when BuddyPress is disabled using the Bridge theme. Registration also works when BuddyPress is enabled and I switch to the 2014 theme. Even with all the plugins installed. Perhaps some script conflict within the main theme files?

    Here’s a link to the registration page: http://tinyurl.com/gwdmt6n

    kharliahdragon
    Participant

    Hi,

    I’ve been searching all over but can’t find anything close to helping me. I have BP Search and it is not including offline users in the search. My website.com/members page is also only showing active members.

    Is it something to do with the “members loop”? I’m relatively new to WordPress so I apologize if you get this question a lot.

    Cheers.

    #250864
    Paul Wong-Gibbs
    Keymaster

    Right. That’s WordPress 4.4’s embed feature https://codex.wordpress.org/Version_4.4

    I think we added support for that to our activity stream in our last relese.
    If you don’t want the feature at aall, https://wordpress.org/plugins/disable-embeds/ might work.

    #250861
    Henry Wright
    Moderator

    Is it a relatively simple process?

    Yes, BuddyPress is just a plugin so once you have WordPress set up you can install BuddyPress via a few clicks.

    Importing members from a spreadsheet will most likely need a plugin. Try searching the Plugin Directory to see what is available.

Viewing 25 results - 6,901 through 6,925 (of 32,678 total)
Skip to toolbar