Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,076 through 19,100 (of 69,108 total)
  • Author
    Search Results
  • #171711
    @mercime
    Participant

    ibuddy theme is a WordPress theme which supports BuddyPress. Therefore, you can use the usual WP template tags and functions to generate login code as well as recent blog posts. For more assistance, you can post at theme author’s support forums at https://wordpress.org/support/theme/ibuddy

    Henry
    Member

    That’s what I thought it was for. Thanks for verifying @mercime – I was half thinking such capability settings would be performed via the backend dashboard – but of course this is BuddyPress – for front end stuff! 🙂

    #171709

    In reply to: Email Activation

    @mercime
    Participant

    Can you receive an activation mail if you deactivate BuddyPress? Where are you hosted? Have you checked out possible solutions at https://codex.buddypress.org/troubleshooting/frequently-asked-questions/ ?

    #171707

    In reply to: Email Activation

    @mercime
    Participant

    closing this topic in favor of same at https://buddypress.org/support/topic/email-activation-2/

    #171692
    Hugo Ashmore
    Participant

    @debu89

    Did you not read this comment made by mercime

    There are a variety of reasons why registration won’t work for some installations with different/similar configurations. Help us help you by creating a new topic of your own and providing us more information about your installations – single WP/WPMS, theme used, plugins used, etc. or did you check if registration process is working in your WP install if BuddyPress is deactivated?

    Please start a new thread and be sure to provide the detail asked for otherwise it’s really not possible to help much at all.

    Closing this thread.

    #171687
    debu89
    Participant

    I am facing the same problem…Please anyone solve this problem….

    debu89
    Participant

    I am facing the same problem.Users can’t register .When they submit the registration page it reloads with the password field empty….Please check the issue….

    #171683
    totoff
    Participant

    hi,
    finally i found a plugin to manage it:
    https://wordpress.org/plugins/buddypress-auto-group-join/screenshots/

    thanks,

    #171677
    Eric J T
    Participant

    Sorry I didn’t include the code for that. Yes, it is in the wp functions.php file, but it is relevant to bp theme. Here is the full function that line 100 is found in. Line 100 is the third to last, which starts with “add action”.

    /**
     * Sets up theme defaults and registers support for various WordPress and BuddyPress features.
     *
     * Note that this function is hooked into the after_setup_theme hook, which runs
     * before the init hook. The init hook is too late for some features, such as indicating
     * support post thumbnails.
     *
     * To override bp_dtheme_setup() in a child theme, add your own bp_dtheme_setup to your child theme's
     * functions.php file.
     *
     * @global BuddyPress $bp The one true BuddyPress instance
     * @since BuddyPress (1.5)
     */
    function bp_dtheme_setup() {
    
    	// Load the AJAX functions for the theme
    	require( get_template_directory() . '/_inc/ajax.php' );
    
    	// This theme styles the visual editor with editor-style.css to match the theme style.
    	add_editor_style();
    
    	// This theme comes with all the BuddyPress goodies
    	add_theme_support( 'buddypress' );
    
    	// This theme uses post thumbnails
    	add_theme_support( 'post-thumbnails' );
    
    	// Add default posts and comments RSS feed links to head
    	add_theme_support( 'automatic-feed-links' );
    
    	if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
    		// Register buttons for the relevant component templates
    		// Friends button
    		if ( bp_is_active( 'friends' ) )
    			add_action( 'bp_member_header_actions',    'bp_add_friend_button',           5 );
    
    		// Activity button
    		if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() )
    			add_action( 'bp_member_header_actions',    'bp_send_public_message_button',  20 );
    
    		// Messages button
    		if ( bp_is_active( 'messages' ) )
    			add_action( 'bp_member_header_actions',    'bp_send_private_message_button', 20 );
    
    		// Group buttons
    		if ( bp_is_active( 'groups' ) ) {
    			add_action( 'bp_group_header_actions',     'bp_group_join_button',           5 );
    			add_action( 'bp_directory_groups_actions', 'bp_group_join_button' );
    		}
    
    		// Blog button
    		if ( bp_is_active( 'blogs' ) )
    			add_action( 'bp_directory_blogs_actions',  'bp_blogs_visit_blog_button' );
    	}
    }
    add_action( 'after_setup_theme', 'bp_dtheme_setup' );
    endif;
    
    if ( !function_exists( 'bp_dtheme_enqueue_scripts' ) ) :
    

    In the first install the failed bp had been installed and working for a few days. It suddenly gave errors when I edited a css color code on line 1211 in this file and uploaded it to the server by ftp. Yeah, I know you might say I made a mistake, but I know I did it correctly. And they you might say the file got corrupted in transfer, except that the second install on godaddy had no such changes or transfers and in short order – less than an hour of use with no other plugins or style changes – gave the same final error for line 100 when I changed my public name in the buddypress members listing, at which point neither the front nor back ends were accessible.

    Looking forward to your insights.

    Paul Wong-Gibbs
    Keymaster

    Closing as topic was 12 months old prior to your reply.

    #171673
    Paul Wong-Gibbs
    Keymaster

    This isn’t really a BuddyPress specific problem. You’ve activated a plugin or theme that doesn’t work, and it’s causing these errors.

    Reinstall WordPress, then BuddyPress. Use a default WordPress theme. Everything will be fine. Reactive plugins one-by-one until the error comes back. You’ve figured out what plugin(s) are misbehaving, so deactivate and delete them. Then try switching back to your theme, and seeing if it all still works.

    Hint: from your logs, the “BP Group Extras” plugin is causing problems, so get rid of that.

    #171672

    In reply to: Problem in buddypress

    Paul Wong-Gibbs
    Keymaster

    BP Courseware hasn’t been updated in almost a year, and I’m pretty sure that the plugin’s developer isn’t working on the WP plugin any more. The error’s probably caused by some forum changes that happened in BP at least a year ago.

    #171669
    catwomanbadkitty
    Participant

    The Mystery Man image is selected in Settings > Discussion.
    What is happening is that Buddypress is assigning a new user id # to new members but the folder for that user id # still exists so they are inheriting an old image avatar. When they go to upload their avatar for the first time the old deleted profile image appears instead of the Mystery Man image.
    I suppose a quick fix is to FTP into the wp-content/uploads/avatars folder and delete out any of the deleted user folders so that this doesn’t happen.

    I would think that Buddypress would delete these old avatar image folders when users or admin decide to delete a profile. When plugins are deleted the folders are deleted from the server so I am not sure why the avatar files should be any different.

    jchambo
    Participant

    Nevermind, I figured it out!

    I created a buddypress.php file AND a bbpress.php file and uploaded them to my theme directory.

    I created these files as copies from my page-template-full-width.php file.

    Thank you so much for the help!

    #171665
    freelifez
    Participant

    ok I managed to do this using the buddypress import members plugin http://www.youngtechleads.com/buddypress-members-import/ (17$) and adding the field “last_activity” with a value of i.e. “2013-09-21 22:06:14” (could be any date I’m sure)
    Good plugin for importing users in general!

    catwomanbadkitty
    Participant

    If you are not using the buddypress default theme this error is not an issue. To get it to go away you can drop a blank adminbar.css file into the location on the error log and the error will go away.
    Of course if you upgrade Buddypress you will have to do this again but it is a temporary fix to get the error off your radar.

    jchambo
    Participant

    Alright so I did what I described as above, and the full-width pages now work on all of my Buddypress pages, BESIDES my Forums page.

    Forums (NOT OK): http://shredlounge.com/forums/
    Groups (OK): http://shredlounge.com/groups/
    Members (OK): http://shredlounge.com/members/
    Activity (OK): http://shredlounge.com/activity

    Is there some .css I need to edit for this? Thanks again for all your help!

    jchambo
    Participant

    Does that buddypress.php file go in the same directory as the page-template-full-width.php file?

    Aka, wp-content/themes/detube/buddypress.php ?

    #171649
    HorrorUK
    Participant

    I’ve gone in and removed all other plugins and used the default theme, but I still have the same problem.

    I tried some of the solutions on the link below, but none of them worked:
    https://buddypress.org/support/topic/group-creation-error-are-you-sure-you-want-to-do-this

    modemlooper
    Moderator

    super simple. If your theme has a full width page template just copy it and rename it buddypress.php

    https://codex.buddypress.org/theme-development/theme-compatibility-1-7/template-hierarchy/

    totoff
    Participant

    hi,
    i’d like to try this plugin but i don’t know where to download it?

    thanks,

    Ben Hansen
    Participant

    Firstly, to answer your question, no. The two things are complimentary.

    I need little sites off the main site, not multisites.

    That sentence contradicts itself, if you want a network of wordpress sites based on a single installation, then multisite exactly is what you need to do that.

    If, however, you are looking to give members of your site posting authority on your single site and you want to restrict what categories they can use then you don’t need either BP or multisite. You need to change the default user role and probably use a plugin like Restrict Caterogies:

    wordpress.org/plugins/restrict-categories/

    bare in mind, i’m not sure how easy it is to undo the multisite switch that you have already thrown. Probably, others here know more then i do when it comes to reversing course on a multisite switch but it’s not something i would even try.

    #171632
    catwomanbadkitty
    Participant

    Thanks for the reply. I am on a VPS with Digital Ocean so I don’t have a control panel. I will put in a support ticket to see if they can help me find the log file using FTP or from the command line.
    Regarding clearing the cache, do I have to install a caching plugin for that or is it possible to clear cache from dashboard?
    I tried the registration process from the default Buddypress theme and it happened again. The new user is picking up one of the existing avatar upload folders and inheriting the image by default. The old image appears in the profile before I even get a chance to select a new profile image.
    The site is in maintenance mode but I will leave it open for now. Here is one of the new profiles that is inheriting a test image: http://www.uberon.net/goblinqueen/
    Thanks for your feedback!

    #171627
    thisisbbc
    Participant

    Here is more information about our installation.

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

    All In One SEO Pack
    Version 2.0.3.1 | By Michael Torbert

    Antispam Bee
    Version 2.5.9 | By Sergej Müller

    AntiVirus
    Version 1.3.4 | By Sergej Müller

    bbPress
    Version 2.4 | By The bbPress Community

    Better WordPress Minify
    Version 1.2.2 | By Khang Minh

    Broken Link Checker
    Version 1.8.3 | By Janis Elsts

    BuddyPress
    Version 1.8.1 | By The BuddyPress Community

    Contact Form 7
    Version 3.5.2 | By Takayuki Miyoshi

    Duplicate Post
    Version 2.4.1 | By Enrico Battocchi

    Google Analyticator
    Version 6.4.5 | By Video User Manuals Pty Ltd

    NGFB Open Graph+ Pro
    Version 6.8 | By Jean-Sebastien Morisset

    Revolution Slider
    Version 3.0.7 | By ThemePunch

    Social Login for wordpress
    Version 4.8 | By LoginRadius Team

    TinyMCE Advanced
    Version 3.5.8 | By Andrew Ozz

    W3 Total Cache
    Version 0.9.3 | By Frederick Townes

    Widget Importer & Exporter
    Version 1.0 | By Steven Gliebe

    WordPress Social Share Buttons
    Version 1.1.3 | By Lee Chestnutt

    WP-Memory-Usage
    Version 1.2.1 | By Alex Rabe

    WP Sliding Login | Register Panel
    Version 2.3 | By Kyle Powning @ The Factory

    WP Smush.it
    Version 1.6.5.3 | By WPMU DEV

    9. Are you using the standard BuddyPress themes or customized themes?

    I’m using another theme callet BulletPress from HB-Themes

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

    I haven’t modified any BP related files, but I do use a child theme with a custom functions.php

    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?

    Our theme came with bbPress, see above for version.

    14. Which company provides your hosting?

    PlanetHoster

    #171624
    @mercime
    Participant
Viewing 25 results - 19,076 through 19,100 (of 69,108 total)
Skip to toolbar