Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,801 through 4,825 (of 22,651 total)
  • Author
    Search Results
  • #251286
    Oscar Estepa
    Participant

    No particular reason, Buddypress 2.4.3 is using ‘bp_actions’ hook to add its actions instead of ‘wp’ and according to WordPress you need to use the exact same hook with the exact same priority in order to remove a previously inserted action, i.e., now BuddyPress is adding its functions as:

    add_action('bp_actions', 'bp_activity_action_sitewide_feed');

    See wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php (L530).

    Therefore, they need to be removed using the exact same syntax:

    remove_action('bp_actions', 'bp_activity_action_sitewide_feed');

    IdleWanderer
    Participant

    I just realized that “bp_is_page()” might not work as the page I am referring to is a normal wordpress page. Is this so? If so, would “is_page()” be correct?

    #251245
    Henry Wright
    Moderator

    If you use the Theme My Login plugin, you can customise the login template quite easily.

    #251218

    In reply to: Buddypress issue

    invisibleland
    Participant

    I don’t totally understand this, but here’s the debrief on how it was fixed:

    https://buddypress.trac.wordpress.org/ticket/6940#comment:6

    Thanks!

    #251190
    xxsemmiexx
    Participant

    Hi Henry,

    It’s not about the theme, cause it was working fine till the last buddypress update.
    but the theme that i am using is “Point” from the wordpress theme site.
    http://PROUDLesbians.nl

    Plugins that i am using are:

    Advanced Ads
    Akismet
    Birthdays Widget (for buddypress)
    BP stickers
    Code PHP in widget
    Contact Form 7
    Custom Login Page
    Jetpack
    Loco Translate
    Loginizer
    Quick Chat
    WP Smush
    WP-Optimize
    YOAST Seo.

    #251187
    rbaccaro
    Participant
    hellojesse
    Participant

    After submitting new details on page index-action-admin: http://local.wordpress.dev/groups/admin/edit-details/

    NOTICE: wp-content/plugins/buddypress/bp-groups/bp-groups-screens.php:869 - Trying to get property of non-object
    require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, bp_template_redirect, do_action('bp_template_redirect'), call_user_func_array, bp_screens, do_action('bp_screens'), call_user_func_array, groups_screen_group_admin_edit_details
    #251164

    In reply to: Chaning DB prefix

    Henry Wright
    Moderator

    How are you changing your WordPress table prefix?

    #251162
    Henry Wright
    Moderator

    You should be able to go to Plugins > Add new in your WordPress admin area.

    Henry Wright
    Moderator

    I’d guess that’d be a bug because the count should display site-wide. You could open a ticket on Trac for this.

    ngoegan
    Participant

    And just to make sure I cover all my bases, here are my answers:

    1. Which version of WordPress are you running?
    4.4.2

    2. Did you install WordPress as a directory or subdomain install?
    Not sure, but I think as a directory.

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

    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?
    Yes, the one before it.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Yes, Akismet, BBpress, Buddypress Edit Activity, Buddypress Forum Editor, Buddypress Group Email Subscription, Buddypress Like, Dynamic Widgets (deactivated), Events Made Easy, Events Made Easy Frontend Submit, Hashbuddy, InfiniteWP CLient, rtMedia, Theme My Login, Wanguard, Wordfence Security, WP SMTP

    I did deactivate all of them except wordpress and the register page worked, I then activated Buddypress and the redirect issue began.

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

    10. Have you modified the core files in any way?
    I modified Footer.php on WordPress to edit copyright

    11. Do you have any custom functions in bp-custom.php?
    I don’t know

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

    13. Please provide a list of any errors in your server’s log files.
    The error log looks blank. Maybe I’m looking at the wrong thing?

    14. Which company provides your hosting?
    Hostgator

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Basic Trouble Shooting:
    I don’t know. Maybe Apache?

    ngoegan
    Participant

    Hmmm.. that posted, but not my 3 other posts. Maybe because there was code in it?

    I found this codex page and under the section titled “Site URL Redirecting” it gives instructions on deleting a couple lines of code from the wp-login.php file.

    I’m wondering if that is the issue. The lines of code don’t match those in my file exactly so I’m hesitant to try.

    https://codex.wordpress.org/Login_Trouble

    Still waiting to see if someone can help with this. Thank you.

    valuser
    Participant

    Have revisted this interesting query!

    Consulted this similar query

    and have come up with another possible solution
    (so long as the main site has a different theme or child theme to the other sites.)

    in functions.php of sub-sites’ themes insert

    add_action( 'template_redirect', 'redirect_to_specific_page' );
    
    function redirect_to_specific_page() {
    
    if (is_page('Register') && ! is_user_logged_in() ) {
    
    wp_redirect( 'http://yourmainsite.dev/register/', 301 ); 
      exit;
        }
    }

    would not work with slug is_page(‘register’}

    #251127
    shanebp
    Moderator

    Please don’t call out people individually.

    Create a Page – not a Post.

    Create a template and assign it to that Page.
    https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#creating-custom-page-templates-for-global-use

    Put your members-loop code in that page.
    Also include get_header() and get_footer() calls.

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

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

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

Viewing 25 results - 4,801 through 4,825 (of 22,651 total)
Skip to toolbar