Skip to main content

Home/ buddypress/ Group items tagged buddypress

Rss Feed Group items tagged

Vernon Fowler

Template Hierarchy · BuddyPress Codex - 0 views

  • The base templates that BP looks for in order of priority are: plugin-buddypress.php buddypress.php community.php generic.php page.php single.php index.php
  • If you are on a single group page, BuddyPress will use the following template hierarchy:
  • If you are on a single member page, BuddyPress will use the following template hierarchy:
  • ...6 more annotations...
  • If you are on an activity permalink page, BuddyPress will use the following template hierarchy:
  • If you are on the activity directory page, BuddyPress will use the following template hierarchy:
  • If you are on the members directory page, BuddyPress will use the following template hierarchy:
  • If you are on the group creation page, BuddyPress will use the following template hierarchy:
  • If you are on the groups directory page, BuddyPress will use the following template hierarchy:
  • If you are on the registration page, BuddyPress will use the following template hierarchy:
Vernon Fowler

Best Practices for Preventing BuddyPress Spam User Registrations | Wptuts+ - 0 views

  • The first level of security is to change the footer text to remove mentions of WordPress and BuddyPress. Spammers target the words “proudly powered by WordPress and BuddyPress” in search engines to find sites they can compromise.
  • In BuddyPress, the default URL for the registration page is “http:/yoursitedomain.com/register”. This is why spambots include the “insite:register” when performing the search described in the above section. Make it harder for them to find your site by easily changing the default slug for BuddyPress in your wp-config.php file.
  • We use the honeypot technique to thwart spambots and it has worked pretty well from our experience. I didn’t invent the idea, but I built this implementation for BuddyPress and it works like a champ.
  • ...4 more annotations...
  • BP_REGISTER_SLUG
  • All you need to do is set the slug for the registration page that has been created. If you’re on BuddyPress 1.5+ that is.
  • It enables you to block IP addresses and even entire domains from accessing your site, a very useful thing to do against known bots trying to create fake BuddyPress user accounts.
  • Be wary of trying every single security plugin under the sun, as this slows down your site and adds to your maintenance workload by having more things to update and go through if something breaks. At first, stick to the highest rated ones that have proven themselves over time with a lot of users. One such plugin, which is highly recommended by many BuddyPress and WordPress users, is Bad Bahavior. This plugin will not only block a lot of spam, but will make your site invisible to many bots in the first place and thereby prevent fake registrations.
Vernon Fowler

BuddyPress Showcase: 12 Unique and Inspirational Sites - WPMU.org - 0 views

  •  
    Want to see what designers and developers are doing with BuddyPress these days? Here's another installation of our BuddyPress eye candy series, featuring a few of the latest communities with uniquely customized themes. Newcomers to BuddyPress always have questions about how flexible the platform is for theming. If you're wondering what's possible with BuddyPress, just check out a few of these sites for a bit of inspiration.
Vernon Fowler

BuddyPress.org → Docs → Theme Dev: Building a BuddyPress Child Theme - 0 views

  • This guide is for building themes for BuddyPress 1.2 and above.
  • The default BuddyPress theme is not located in the usual /wp-content/themes/ directory. It is stored in the BuddyPress plugin folder
  • Note the “Template:” entry, which tells WordPress that we want to use the BuddyPress default theme (bp-default) as the parent theme
  • ...6 more annotations...
  • your own theme is in /wp-content/themes/
  • and the tag “buddypress”
  • to inherit the CSS, in BP 1.5+, you don’t have to do anything!  Just start writing your new styles in style.css and skip to section 3
  • copy this file and paste it directly into your child theme’s folder (the same place as your style.css file)
  • if you want to override a template file that is in a sub folder, you must also recreate the sub folder in your child theme
  • There is one exception to the template override rule — functions.php.
Vernon Fowler

BuddyPress - 0 views

  •  
    We're BuddyPress fanatics here at WPMU.org - stay tuned for all the BuddyPress news, plugins, themes and tutorials needs. Essential reading for anyone running, or thinking of running, a BuddyPress site.
Vernon Fowler

BuddyPress.org → Docs → How to Set up Your Main Site Navigation Using the Bui... - 0 views

  •  
    The latest BuddyPress 1.5 default theme now includes the standard WordPress menus that you can easily set with drag-and-drop capabilities. You also have quite a bit more control over where your BuddyPress components are now displayed. Here are the basic steps to setting up your main site navigation after BuddyPress is installed. (*Please note that this only applies to BP 1.5+)
Vernon Fowler

gglnx/private-buddypress · GitHub - 0 views

  • Can I change the URL where non-loggedin users are being redirected? = Yes, currently you need to write a filter function in your functions.php. `function redirect_nonloggedin_users($current_uri, $redirect_to) { // Redirect users to the homepage // Caution! Exclude the homepage from 'Private BuddyPress' options // to avoid redirection loops! return get_option('siteurl') . '/?from=' . $redirect_to; } add_filter('pbp_redirect_login_page', 'redirect_nonloggedin_users', 10, 2);`
  •  
    Protect your BuddyPress Installation from strangers. Only registered users will be allowed to view the installation and all other users will be redirected to the login page. Users attempting to view blog content via RSS are also authenticated via HTTP Auth. You can exclude the registration, the homepage and blog pages (e.g. posts, archives and non-buddypress pages) from protection. In combination with the plugin 'Invitation Code Checker' your installation stays private but the registration is for users with a special password open.
Vernon Fowler

Migrating from old forums to bbPress 2.2+ · BuddyPress Codex - 0 views

  • Group Forums (Legacy)
    • Vernon Fowler
       
      Says something else but still works.
  •  
    "So you've been using BuddyPress' built-in group forums since BuddyPress 1.5, but would like to use the new bbPress plugin to power your forums instead. Gotcha.  You'll need to migrate your existing group forum content over to bbPress as well.  Don't worry!  This is what this article is all about. Let's get started!"
Vernon Fowler

John James Jacoby - 0 views

  •  
    BuddyPress just got repeatedly beaten with an AWSOME Stick(tm): BuddyPress Notifications http://t.co/McdZai7Pno
  •  
    BuddyPress just got repeatedly beaten with an AWSOME Stick(tm): BuddyPress Notifications http://t.co/McdZai7Pno
Vernon Fowler

BP Theme Authors: make sure your theme registers 'buddypress' support | BuddyPress Deve... - 0 views

  • Note that child themes of bp-default do not need to manually register ‘buddypress’ support; BP assumes it.
  •  
    Note that child themes of bp-default do not need to manually register 'buddypress' support; BP assumes it.
Vernon Fowler

Customizing Labels, Messages, and URLs · BuddyPress Codex - 0 views

  •  
    "Do you want to change various labels and messages in BuddyPress, but don't want to hack the core files to do so? This page explains how to use a language translation file to customize BuddyPress labels, messages, and URL slugs. "
Vernon Fowler

An online community for educators built with BuddyPress · BuddyPress.org - 0 views

  • Build a professional learning community platform to help educators engage in conversation, share innovative ideas, discover and curate useful resources, document successful practices, and apply them in their own classrooms and schools.
  • Support and sustain continuity between in-person meetings and professional development opportunities. Help new constituents get up to speed and become valuable, active partners in learning communities.
  • drafted policies for user-generated content
  • ...2 more annotations...
  • After having tried nearly every plugin option (and combination), I settled on WP Types & Views (now called WP-Toolset), which allowed me to rapidly prototype and improve data structures. Then, I used Gravity Forms to create front-end forms to prompt educators to organize and classify their recommended resources.
  • This work has only just begun, but WP-Toolset has provided all the features we’ve needed; indeed it can be compared favorably with the Blocks, Views, Panes, and Panels modules and functions for Drupal.
  •  
    Great post on how an online community for educators was built with BuddyPress: http://t.co/JDUbnhiG
Vernon Fowler

BuddyPress Global/Sitewide Unified search update for BuddyPress 1.5+ | Buddy Dev - 0 views

  • This post is all about making unifiead search work with BuddyPress 1.5+. It is a long post, so please  have a cup of coffee and let us get started. List of things we will cover below:- Installing Global Unified search Plugin Basic setup for the theme Showing search results for:- Members search Groups search Activity search Blog Posts search Blog search Group Forum search(BBPress 1.0 which you use for group forums) BBPress 2.0 based forums topic search
Vernon Fowler

bp-custom.php | BuddyPress Codex - 0 views

  • bp-custom.php is often compared to your theme’s functions.php file. However, there are two primary differences between bp-custom.php and your theme’s functions.php.
  • bp-custom.php runs from the /wp-content/plugins/ folder and is therefore independent from your theme. This is useful for adding code snippets that are BuddyPress-specific. Also, this code will always load regardless of what theme you are using.
  • bp-custom.php runs early in the BuddyPress-loading process. This allows you to override various settings in BuddyPress.
Vernon Fowler

BuddyPress Followers | Forum | BP Followers v1.1 is out! | BuddyPress.org - 0 views

  •  
    BuddyPress Followers is now compatible with BP 1.5. Tell your buddy! :) http://t.co/vHiMMZf5
Vernon Fowler

BuddyPress Twitter | Home |BuddyPress.org - 0 views

  •  
    Let your #Buddypress members and groups add their twitter follow button to their profiles http://t.co/PtuXsyVh via @itsCharlKruger
Vernon Fowler

Linda Peng » Blog Archive » 10 Lessons I Learned from Designing an Online Com... - 0 views

  • I recommend giving people single sign-on options using Twitter, Linkedin, OpenID, Livejournal, etc. as well as Facebook.
  • The rest of your target market still needs to be convinced to care about your community enough to join.
  • Make your homepage interesting enough to visit twice.
  • ...8 more annotations...
  • There’s probably a reason Quora, Stackoverflow and most Ning networks all have news feeds on their front pages.
  • Clearly define your niche.
  • clearly define your site’s niche so that users will have an easier time understanding how your site adds value to their lives. For example, Quora is the social network where one gets their questions answered; Stackoverflow is a Q&A network for programmers; Linkedin is a specific network for jobhunting professionals. What specific need does your social network cater to?
  • Beware of outdated plugins and themes.
  • Look at the description closely and check to see if it’s been tested up to the WordPress version you’ve installed. If you’re unsure, search for the plugin forums (every WordPress plugin should have one) and see the latest praises or issues people are discussing on the threads.
  • If a new theme or plugin crashes your site, rename or delete it.
  • I recommend giving people single sign-on options using Twitter, Linkedin, OpenID, Livejournal, etc. as well as Facebook.
  • Your site needs an FAQ. No, really. It does. Although you personally might think that the activity feeds and groups and profile editing links are in the most obvious locations in the world, your users will not. They’re used to their own oft-frequented social networks (cough, Facebook), and  they’ll ask you why clicking on their avatar doesn’t automatically bring them to a “change your profile picture” page or if logging into your site using Facebook Connect will mean that everything they post will automatically get cross-posted to their Facebook wall. In addition, users want to know about your site features.
  •  
    I re-discovered my fascination with online community building around the time I subscribed to a shared hosting service, installed WordPress, discovered the Buddypress plugin, and stumbled upon open-source forums where people were amazingly helpfully about sharing troubleshooting tips and code.   This was last December. The discovery turned into an independent study I dubbed "Volunteerism in a Web 2.0 World," which turned into the development of a website and lots of meetings and several pages of an annotated bibliography - all of which I submitted to my Research in Practice Program (RIPP) advisor at the end of the semester.Over the course of my meetings with "stakeholders" (Duke students and administrators) to asses the value of the "website" (an online social network for Duke civic engagement), I learned a few things about designing an online community using WordPress and Buddypress.
Vernon Fowler

How to Create A Custom BuddyPress Members Directory - WPMU.org - 0 views

  •  
    "One of main reasons that BuddyPress communities fail is because members don't connect and interact with each other. One way to improve that is through design that keeps members interested."
Vernon Fowler

Ning vs Buddypress: Where are the differences? Should I switch? - JenSocial: Social Net... - 0 views

  • because Wordpress and Buddypress is all stored on a server that you have access to, then you have complete control over your member's information.
  • Did we mention that Wordpress and Buddypress are run on a GPL license as well? That's a fancy way of saying "it's free."
  • there are other parts of Ning that Buddypress doesn't have right out of the box, namely events, photo and video sharing.
  • ...1 more annotation...
  • you're in charge of handling hosting. And unless you have a cousin who works at a hosting website that'll hook you up, well, that's going to cost some money too.
1 - 20 of 207 Next › Last »
Showing 20 items per page