Search Results for 'wordpress'
-
AuthorSearch Results
-
January 16, 2013 at 8:31 pm #150865
Mathieu Viet
ModeratorJanuary 16, 2013 at 5:19 pm #150842In reply to: How to add members to a group
shanebp
Moderator3. The group admin can invite friends to join their group.
To invite members that are not friends of the group admin, use this plugin:
January 16, 2013 at 1:59 am #150780In reply to: I want Buddypress to work within a template
gwenfaye
ParticipantI am using a theme called Valor from Themeforest.net (http://themeforest.net/item/valor-responsive-wordpress-theme/full_screen_preview/3741916).
I created a Menu item called “Dream Bank”. I want site visitors to be able to come to http://www.glassworksdream.com and click on the “Dream Bank” menu item. Then, I want them to be asked to register for the Buddypress section of the site.
When I installed and activated Buddypress, instead of that happening, the Valor template was deactivated, and Buddypress became my site template.
Gwen
January 15, 2013 at 11:13 pm #150773In reply to: Cannot Edit, Delete, Open or Sticky Forum Topics
kpolkson
ParticipantOK, here’s what I can offer in the way of isolating the problem.
I wanted to see if it was my server or any changes I made to the theme. It was not!
I went ahead and did a completely fresh restall of everything. When i got wordpress multisite with buddypress working again, I did not have a problem with editing the topics.
Then I brought in my custom theme files: Again nothing was off, everything worked as it should in editing topics.
It was only when I brought in my database of existing users and content did I get the 404!
So it is something wrong in the database.
What in buddypress would cause topics to 404 based on something off in the database?
January 15, 2013 at 10:25 pm #150767In reply to: Buddypress wont display local avatars
Figotech
ParticipantYes to the settings.
Permissions: Ok there may be something here. I can access the ftp of the live site host and I just noticed something.
I can give the uploads directory all permissions (write read execute: 777) however wordpress will create a dir for a new user avatar (uplaods/avatars/59 for ex) but it cant upload files inside it. Apparently any directory I create with the ftp user has a different owner than the directories created by wordpress itself and even though permissions are set to 777 wordpress is giving me a write permission error when trying to upload any new avatar.
January 15, 2013 at 9:43 pm #150745In reply to: Where to find clean copy of v1.5.5
aces
ParticipantJanuary 15, 2013 at 5:48 pm #150701In reply to: Getting 310 error. Too many redirects. URGENT!
amunalaima
Participant# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]# END WordPress
January 15, 2013 at 5:42 pm #150699Mitesh Patel
ParticipantSorry for delayed response. I thought the thread was dead. Nevertheless, thanks for your directions.
It seems I chose the wrong words to describe my problem. The problem was “after the compatibility process is over, the site doesn’t look 2012-ish, with bp-default styles in BP parts.” After the compatibility process is done successfully (which I did), the theme “works fine”, but doesn’t look fine. So in other words, how to make the BP part look like 2012.
Both the BP-compatibility-pack approach and your approach worked fine, except, the theme CSS is (understandably) the same (bp-default). I ended up modifying the bp.css to make it look like it belongs to 2012 theme. I also “hard-coded” (so to speak) the BP specific changes in my child theme itself (added the bp-template-pack.php part with some modifications to functions.php), and a few minore changes to BP templates, so that my child theme is BP-compatible out of the box (no need of plugin or external CSS). Will upload the child theme somewhere and post a link here as I get to it.
Thank you @mercime for your help.
January 15, 2013 at 4:58 pm #150695In reply to: Adding group blog posts to the activity stream?
Ben Hansen
Participantwell that’s not the way it works at all when network activated some aspects of buddypress provide network wide functionality but the front end display is only as i say on the primary blog/site for instance you can use buddypress to give your users the ability to create their own sub sites (in a more user friendly fashion then wordpress itself provides alone) and any activity on the various sub sites will be displayed in the network wide activity feed which again only displays on the primary blog by default.
January 15, 2013 at 4:31 pm #150693In 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.
-
AuthorSearch Results