Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,801 through 10,825 (of 69,119 total)
  • Author
    Search Results
  • #251158
    Manuel5cc
    Participant

    There is no bp-custom file, and I have the last version of buddypress. Any other ideas?

    #251148
    Manuel5cc
    Participant

    Functions.php contains a lot of code that the theme needs to work. It includes explicit compatibility with buddypress since the theme is served with it and is intended to work together. I am talking about Powermag btw http://themeforest.net/item/powermag-the-most-muscular-magazinereviews-theme/4740939

    The functions.php of Twenty Fifteen is empty

    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

    Can someone maybe tell me which files in Buddypress the login redirect functions would reside in so I could replace those via ftp and see if that works?

    Any help would be greatly appreciated.

    #251132
    mariza21
    Participant

    I did network activate BuddyPress.

    ngoegan
    Participant

    I tried logging out and it still redirects me. I tried changing the Buddypress page settings directory Register page to a different non-buddypress page just to see if it was maybe a corrupted page, but that isn’t it either. It still redirects to the login page.

    I also checked to see what happens if I go to
    http://www.charlottemasoneducation.org/wp-admin/new-user.php

    It says…
    “This is somewhat embarrassing, isn’t it?
    It seems we can’t find what you’re looking for. Perhaps searching can help.”

    #251128
    shanebp
    Moderator

    Have you read this section ‘Customize Email Template’ on this page:
    https://codex.buddypress.org/emails/

    #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

    #251125
    dsnic
    Participant

    Hi @imath thanks for jumping in. I spoke with the theme developers and they said that the theme sets the “BP_AVATAR_FULL_WIDTH” to 580 px. But even so, the Buddypress message is still wrong, because I’m uploading a bigger image and the message tells me that it’s a smaller image.

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

    #251118
    Manuel5cc
    Participant

    I have tried deactivating all the plugins (except buddypress) but there was no “bang”. Still not working.

    #251117
    Henry Wright
    Moderator

    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)

    This is likely to be the issue. Sometimes a rogue plugin will cause problems. Your best bet is to deactivate each plugin, one at a time, and check to see if the issue gets fixed. As soon as the reg page begins to work, bang, you have your culprit.

    #251112
    shanebp
    Moderator

    Try this in your function register_lesson_type()

    $args=array(
    	"label" => __("Namaste! Lessons", 'namaste'),
    	"labels" => array (
    	    "name"=>__("Lessons", 'namaste'), 
    	    "singular_name"=>__("Lesson", 'namaste'),
    	    "add_new_item"=>__("Add New Lesson", 'namaste'),
                'bp_activity_admin_filter' => __( 'Lessons', 'namaste' ),
                'bp_activity_front_filter' => __( 'Lessons', 'namaste' ),
                'bp_activity_new_post' => __( '%1$s created a new <a href="%2$s">Lesson</a>', 'namaste' ),
    	    'bp_activity_comments_admin_filter' => __( 'Comments about Lessons', 'namaste' ), 
    	    'bp_activity_comments_front_filter' => __( 'Lesson Comments', 'namaste' ), 
    	    'bp_activity_new_comment'  => __( '%1$s commented on the <a href="%2$s">Lesson</a>', 'namaste' ),
    	),
    	"public"        => true,
    	"show_ui"       => true,
    	"has_archive"   => true,
    	"rewrite"       => array("slug"=>$lesson_slug, "with_front"=>false),
    	"description"   => __("This will create a new lesson in your Namaste! LMS.",'namaste'),
    	"supports"      => array("title", 'editor', 'author', 'thumbnail', 'excerpt', 'comments', 'post-formats', 'buddypress-activity'),
            'bp_activity' => array(
                'action_id'             => 'new_lesson',
                'contexts'              => array( 'activity', 'member' ),
                'comment_action_id'     => 'new_lesson_comment', 
                'position'              => 70,
            ),			
    	"taxonomies"    => array("category"),
    	"show_in_nav_menus "    =>  'true',
    	'show_in_menu'  => 'namaste_options',
    	"register_meta_box_cb" => array(__CLASS__,"meta_boxes")
    );
    register_post_type( 'namaste_lesson', $args );
    #251105
    agnesmeil
    Participant

    I added it, but still nothing happens if I post a comment to a lesson.

    Could it still be a timing issue? I imagine namaste already made the post type. Maybe I should try deinstalling and installing namaste again with the buddypress changes made?

    #251104
    valuser
    Participant

    The two files in /wp-content/your-theme/buddypress/members – folder

    http://pastebin.com/PWS7AAps

    http://pastebin.com/b3j6NGwz

    (however – bespoke multi-network bits & pieces like “genre” not really relevant to the instant query)

    Cheers

    #251102
    fpsdf
    Participant

    @henrywright I thank you a lot. Sorry for being such a drag.
    Actually I tried the Unconfirmed plugin, but its panel shows “No unactivated members were found.”, while on the Buddypress members page (on frontend), I don’t see them showing up…

    Thank you very much!

    #251101
    valuser
    Participant

    Can only offer this.

    My alternative members directory is “local-” as in “local-members-loop.php”

    I also have a copy of members-loop.php in the /wp-content/your-theme/buddypress/members folder

    But that was only (at least i thought!) so that i added a line in the main directory directing users to the local directory

    mysite.com/local-members/ gets the alternative directory and mysite.com/local-members-loop.php/ produces a 404

    While i am running bp 2.5.1 and wp 4.4.2 and a lot of plugins these bp pages are in a child theme and have not been updated for a while and so may not reflect recent changes to the bp-legacy theme BUT they work!

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

    #251092
    valuser
    Participant

    Try this. It MAY work.

    In your theme folder add a folder named “buddypress”.

    In that folder place another folder named “members”

    Duplicate the file /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/members-loop.php

    Rename this new duplicate file to say “new-york-members-loop.php” and place it in /wp-content/your-theme/buddypress/members

    Obviously you will code conditions into this file so that it only turns up members from New-York.

    (conditions and name etc to your specs)

    The file should respond to the link http://yoursite.com/new-york-members/

    The mods you mention will surely refine this if not correct!!!

    #251091
    Jasper
    Participant

    Regarding the above. I started the website from scratch as I couldn’t find a way around this. And same thing has happened. I have no plugins installed apart from BuddyPress, MyCred & Backup Buddy… I have 79 users and BuddyPress is reporting something like 250. This is driving me nuts…

    Any help very much appreciated.

    #251024
    Sebastian
    Participant

    Nobody who use this feature for roles besides admin?
    Any other ideas how can I solve my request?

    I wouldn’t prefere to install another plugin for site wide notices, because I really like this option from buddypress combining popup/ widget and notices in the message inbox 🙂
    It’s only that admins can use it right now.

    #251019
    mcpalls
    Participant
    ngoegan
    Participant

    FYI – I did deactivate all other plugins except Buddypress to test it and it still redirects. It only stops when I deactivate Buddypress.

Viewing 25 results - 10,801 through 10,825 (of 69,119 total)
Skip to toolbar