Search Results for 'wordpress'
-
AuthorSearch Results
-
January 15, 2013 at 4:31 pm #150693
In reply to: Problems with new member registration.
imnotme82324
Participant@rayela I downloaded and installed the Easy Invitation Codes plugin for BuddyPress here: https://wordpress.org/extend/plugins/baw-invitation-codes/developers/ (Under the “Other Versions” section) and to avoid the false update (which updates to the WordPress version) I changed the version number, found in the baw-invitation-codes/bp-eic.php, from version 1.0 to 1.0.4
It’s actually easier than you think to find that file and edit the version number. Simply go to Plugins > Installed Plugins, find “BP Easy Invitation Codes” in the plugin list and click “Edit”. It’ll take you right to the file you need. It looks like this:
/*
Plugin Name: BP Easy Invitation Codes
Plugin URI: http://mediatricks.com
Description: BP Visitors have to enter an invitation code to register on your site. The easy way!
Version: 1.0
Author: Mediatricks
Author URI: http://mediatricks.com
License: GPLv2
*/Just add a .4 to the end of the version number and remember to check the Developer section of the plugin for updates, instead of updating automatically. Hopefully they’ll separate the two plugins soon so that we can update automatically. I’ve mentioned it in the support forum.
Once you’re set up, all you have to do is create an invitation code, which can be whatever you want, and email it to your friends. Check out the screenshots section for the plugin: https://wordpress.org/extend/plugins/baw-invitation-codes/screenshots/ It’ll give you a better idea of how it works.
January 15, 2013 at 12:28 am #150670In reply to: User Roles on Multisite Network
Ben
ParticipantAre you running bbPress? I had the same issue, and narrowed it down to bbPress. I’ve filed a bug report here: https://bbpress.trac.wordpress.org/ticket/2161
Here’s a temporary solution that worked for me:
`function bp_fix_blog_role($blog_id, $user_id) {
add_user_to_blog($blog_id, $user_id, ‘administrator’ );
}
add_action( ‘wpmu_new_blog’, ‘bp_fix_blog_role’, 10, 2 );`Just drop this in `mu-plugins` if you want. You can change “administrator” to whatever role you prefer. This function runs immediately after the blog is created, so it will probably solve your problem.
Code source: https://wordpress.org/support/topic/how-do-i-change-the-default-administrator-role-to-author-for-new-users
January 15, 2013 at 12:20 am #150669In reply to: User Role Blog Creation Issues
Ben
ParticipantFor those of you interested I’ve found a temporary solution that works perfectly:
`// When a User Creates a New Blog, Force the Administrator Role (bbPress Bug Temp Fix)
function bp_fix_blog_role($blog_id, $user_id) {
add_user_to_blog($blog_id, $user_id, ‘administrator’ );
}
add_action( ‘wpmu_new_blog’, ‘bp_fix_blog_role’, 10, 2 );`Just drop this bad boy in your `mu-plugins` folder and you’re good to go. If you want a different default role for your users, just set “administrator” to whatever you want (editor, author, etc.). The beauty of this function is that it runs immediately after the blog is created, so it will fix any issues you have during blog creation.
January 14, 2013 at 11:55 pm #150667In reply to: User Role Blog Creation Issues
Ben
ParticipantThanks for your help @djpaul, I’ve filed the bug here: https://bbpress.trac.wordpress.org/ticket/2161
January 14, 2013 at 9:24 pm #150655In reply to: installation wizard failing
mvk15
ParticipantI’m running wordpress 3.3.2 and I’m not using a webhost script.
January 14, 2013 at 9:00 pm #150652Patryk
ParticipantI have two files bp.css and bp-admin.css, these files are responsible for BuddyPress style, I got them from my old template, I do not know how I have them enter into a new wordpress theme
January 14, 2013 at 5:27 pm #150637In reply to: User Role Blog Creation Issues
Paul Wong-Gibbs
KeymasterSuggest you file a bug report on https://bbpress.trac.wordpress.org
January 14, 2013 at 3:29 pm #150625In reply to: buddyPress Pro
@mercime
Participant@judym12 There’s only one kind of BuddyPress plugin and it is free even though it’s used by many professionals – https://wordpress.org/extend/plugins/buddypress/
Who’s trying to sell a PRO version of BuddyPress? URI? There are plugins built to be used with BuddyPress which are paid or premium or PRO versions, but those are not THE BuddyPress plugin.
January 14, 2013 at 6:03 am #150597Moulijin
ParticipantLOL wow! Thanks it worked 🙂
January 14, 2013 at 5:28 am #150596imnotme82324
ParticipantYou have made the pages, right? For BuddyPress to work, you need to create some new pages in WordPress, like “Members”, “Activity”, “Activate”, et cetera. Once you’ve created those pages, you go back to the BuddyPress section and the “Pages” tab and assign the pages you just created to the new sections.
If you’re still having problems, perhaps a walk-through of the BuddyPresss Installation and Setup will help: https://codex.buddypress.org/user/setting-up-a-new-installation/ It helped me when I first started 🙂
January 14, 2013 at 3:33 am #150595Moulijin
ParticipantI tried those and still doesn’t work
January 14, 2013 at 1:49 am #150593In reply to: Traducción Buddypress 1.6
danbpfr
ParticipantOla !
The best is probably here (thanks @djpaul)
https://github.com/paulgibbs/BuddyPress-Translations/tree/master/pomo
Older version avaible here:
https://translate.wordpress.org/projects/buddypress/dev/es/default
January 13, 2013 at 11:37 pm #150586imnotme82324
ParticipantCool! Back in the Dashboard, pick settings again and find “Permalinks” in the list. In the permalinks options, choose a link setting other than the default. I prefer the “Post-name” one, myself. After you save your changes you should be set.
January 13, 2013 at 11:10 pm #150583@mercime
ParticipantBuddyPress requires “pretty permalinks’. mod_rewrite should be enabled
January 13, 2013 at 10:18 pm #150578In reply to: User Role Blog Creation Issues
Ben
ParticipantTo name some of the more likely possibilities:
- Jetpack
- Bad Behavior
- FV Antispam
- bbPress
- BP Xtra Signup
- Invite Anyone
- Network Latest Posts
- New Blog Defaults
- Welcome Pack
- WordPress SEO
I noticed after posting this yesterday that the form on the registration page (which works) is hard coded into the form, whereas the one on the `/blogs/create/` page is generated by the `bp_show_blog_signup_form();` function. Is it possible that the different functions that are run upon submission (on signup vs. blog creation) are be different enough to make this error occur?
…Maybe I’m barking up the wrong tree…
Thanks for your time,
BenJanuary 13, 2013 at 9:58 pm #150576In reply to: Problems with new member registration.
imnotme82324
ParticipantI had problems with WangGuard as well. If you’re site is for a invites-only, you could always try using the “Easy Invitation Codes” plugin. There’s a nice BP-compatible version in the developer section: https://wordpress.org/extend/plugins/baw-invitation-codes/developers/ (The link just under “Other Versions”.) It works great and is simple to set up.
After installation, all you’d have to do is create a code and send it to the people you want to join. When they register, all they’d need to do is add the invite code, like “ARTROCKSSPAMSUCKS”, into an added field and you’re set.
There is one tiny glitch – but don’t panic! The altered plugin still connects to the regular WordPress plugin, so it will tell you that an upgrade is available after installation. It’s a lie! I did a cheat-fix to get rid of that notification by opening the bp-eic.php file and changing the version number from 1.0 to 1.0.4. And, while writing this message, I decided to try and alert the author of the conflict.
January 13, 2013 at 9:26 pm #150573imnotme82324
ParticipantIn your dashboard, go to settings and select “BuddyPress”. You’ll be brought to the BuddyPress options page. Select the tab titled “Pages”. From there it will help you create the needed pages and associate those pages with the BuddyPress components 😀
January 13, 2013 at 7:35 pm #150546In reply to: Bypass Login for Profiles to go Live
Paul Wong-Gibbs
KeymasterThere’s a record in the user meta table that would need to be set (‘bp_last_activity’). Try https://wordpress.org/extend/plugins/activate-users-in-buddypress/ and see if it’s working.
January 13, 2013 at 7:07 pm #150527Lynn Hill
ParticipantHi Dyer,
I’ve just deactivated the User Role plugin and the problem is still there, no toolbar for new users. This is the link to the plugin that I’m using. http://shinephp.com/user-role-editor-wordpress-plugin/
Default setting is for all new users to be set as a subscriber.
Many thanks
Lynn
January 13, 2013 at 10:04 am #150500In reply to: No Flood Control – Buddypress 1.6.2
P
ParticipantI reopened this ticket https://buddypress.trac.wordpress.org/ticket/3732 and DJPaul set the milestone to 1.7, and now I have no idea how to submit my patch (I am still not familiar with the process on buddypress.trax.org).
Anyway, I fixed up a patch and tested it on Buddypress 1.6.3. Maybe you can check out the changes and submit a patch on my behalf if you can. You can download files I modified at http://we.tl/HpU6emIJs4 and check things out.
January 13, 2013 at 6:06 am #150493In reply to: New filter request for bp_is_single_activity()
modemlooper
ModeratorThose classes are not moving. It’s a function that attaches to WordPress core css body classes.
January 13, 2013 at 5:44 am #150488In reply to: New filter request for bp_is_single_activity()
digitman2
Participant> That function can not have filter because it is true or mot based on one thing.
Yes, and with a filter, that one thing can be expanded. If someone wants to create their own page for displaying a single activity, they should have a filter here so they can perform their own checks if needed. There are many other boolean functions in wordpress as well as buddypress which have filters.
January 13, 2013 at 1:05 am #150470intimez
ParticipantI believe this plugin will help you with restrictions
January 12, 2013 at 10:53 pm #150458binti94
Participantwhere has this plugin gone? Can’t find it on wordpress plugins??
January 12, 2013 at 9:22 pm #150457In reply to: Disabling BuddyPress Registration Component
Ben Hansen
Participantyou may want to look into s2 member i think it can handle everything you are trying to achieve also i don’t think you should be so concerned about the buddypress activation process as opposed to the wordpress activation for security reasons i believe if anything the buddypress slightly more secure but for the most part i think they’re the exact same thing (other then the additional default email verification step for buddypress) in fact if someone registers for your site but fails to activate they will be a regular wordpress user and not listed with your other buddypress members.
-
AuthorSearch Results