Search Results for 'wordpress'
-
AuthorSearch Results
-
February 25, 2011 at 9:43 am #106244
In reply to: WordPress 3.1
zkwc
ParticipantWP really irritates. I’m going to refrain from using foul language because everyone who commented was able to.
It’s broken lots of the plug-ins I was using. Welcome Pack – doesn’t work. BP Album + – doesn’t work, although I spoke with the plug-in developer and he is currently working on a fix. I don’t know who the Welcome Pack developer is so I don’t know if he is aware that it is broken. The BP Album + developer didn’t know that their plug-in wasn’t working. So maybe the other plug-in developers don’t know that their plug-ins don’t work either. Who knows?
Wouldn’t it be easier if all the plug-in developers, BuddyPress, and WordPress somehow got on the same page so that all updates could be easily streamlined so that we didn’t need to go through this every time? If the plug-in developers were able to test their plug-ins before the updates were integrated that could save EVERYONE lots of headaches. Is it possible for this simple streamlining of events to happen? Can’t there be a centralized place where things are actually tested first?
Not only did WP break certain plug-ins but they’ve also changed the way “users” and “sites” are listed in the dashboard. They are all alphabetical now. If anyone knows about spammers and how OFTEN we have to mark them as spam on the fly or delete them, they will know that an alphabetical listing is not efficient. This is an IDIOTIC change. Having users and sites listed as first joined or created and last joined or created was better as deleting spam took 1 minute. Now it takes an hour. You have to click through each page or copy and paste the spammers user name into search users in order to delete or edit or whatever.
And what’s up with “network admin” and who thought that was a good idea? What’s going on WordPress? I know this isn’t a Buddypress issue, but a cook is a better designer of a kitchen than an architect. Just sayin’. UGH.
February 25, 2011 at 5:55 am #106237In reply to: WordPress 3.1
ronia
ParticipantWhere can I find a list of files that has been changed (and those untouched) via a comparison between BP 1.2.8 and 1,2,7? I am sure it was somewhere but not finding that currently.
February 25, 2011 at 5:10 am #106235In reply to: WordPress 3.1
Dwenaus
Participantfollowing up on John David Smith’s comment. It seems that his bbpress folder went missing during the upgrade to WP 3.1 and then BP 1.2.8. Very strange. I uploaded the folder again to where it belongs and went through the manual install and it was fine.
February 25, 2011 at 3:22 am #106228In reply to: Installed BP, but I can’t create any forums?
aces
ParticipantIf I understand you correctly, you are trying to set up a forum from the wordpress admin.
Whearas you need to go to the ‘groups’ section on your site and add a new group from there – Then you can add a forum to the group in the same process….
February 25, 2011 at 12:02 am #106222In reply to: WordPress 3.1
stwc
ParticipantSee the comment from mercime three comments up.
February 25, 2011 at 12:00 am #106220In reply to: BP1.2.8 and the WP 3.1 Admin Bar
Avi M
ParticipantFound my Answer.
http://bpdevel.wordpress.com/2011/02/24/updating-your-buddypress-plugins-for-1-2-8/
The BuddyBar and the WP Admin Bar Additional logic has been added to the BuddyBar loader (bp_core_load_admin_bar()) to account for the introduction of a similar admin bar in WP 3.1. (There are plans to integrate the core version BuddyBar into the WP admin bar in the future, but for now you have to choose.) By default, the BuddyBar is shown. Site admins can disable the BuddyBar in favor of the WP admin bar by defining define( ‘BP_USE_WP_ADMIN_BAR’, true ); in wp-config.php. BP_DISABLE_ADMIN_BAR continues to disable *all* admin bars, and takes precedence over BP_USE_WP_ADMIN_BAR. If your plugin or your site has made modifications to the way that the BuddyBar loads, you might want to verify compatibility with BP 1.2.8.
February 24, 2011 at 11:57 pm #106218In reply to: WordPress 3.1
Avi M
ParticipantI upgraded to both BP 1.2.8 and WP 3.1
I Have completely lost my BuddyPress section of the dashboard unless I navigate to http://mysite/wp-admin/network/ and then (as others have reported) all the BP plugin links are missing. Other than that so far so good.
Our forums seem to be working fine.
February 24, 2011 at 11:34 pm #106209In reply to: WordPress 3.1
John David Smith
MemberI blithely upgraded WP to 3.1 and now find the following problems with forums:
New BP groups don’t have a “forum” link on their home page. BP groups created before the WP 3.1 upgrade have the “forum” link but it generates a “URL not found” message.
February 24, 2011 at 11:29 pm #106207In reply to: Problem disabling admin bar
mlreed328
MemberThat’s actually the WordPress Admin Bar and it resembles the Buddypress Admin Bar.
To disable it add this to functions.php:add_filter( 'show_admin_bar', '__return_false' );February 24, 2011 at 9:42 pm #106188In reply to: WordPress 3.1
HachiHazuki
MemberIt has broke my bbpress forums…. and even when I’ve made some changes to have bbpress ready to install, it throws me to dashboard when trying to install bbpres… ****!
// edited for language
– hnlaFebruary 24, 2011 at 8:55 pm #106177In reply to: Adding a Class to Activity stream posts
r-a-y
KeymasterEasy way is to modify `/activity/entry.php` in your child theme.
The other (and better) way — if you know your way around WordPress filters — is to hook into the “bp_get_activity_css_class” filter located in bp-activity-templatetags.php.
February 24, 2011 at 8:44 pm #106172fishfinder
MemberI have one solution here for you, although it’ll be up to you to deal with cross browser compatibility as far as the css goes. If the second sidebar is not going to be present on every page, you are going to have problems using this code. ….. be warned!!!
If you are doing this on a live site, make sure you have full backups of your template files. I set this up on an install that I’m playing around with. Its not a live site, it is a place for me to muck around with wordpress and buddypress.
This is just a starting point, but if you know your css you should be just fine
Step 1.
We’ll start with single.php here. this file is found in the bp-default theme folder
around line 57, find this code:
“
Copy that, and paste it a second time right below itself. Add a 2 to the part that says sidebar.php so your two lines now look like this:
“
“move those two lines to lines 2 and 3, right below
“Step 2.
Now copy and save sidebar.php as a second file called sidebar2.php. Put that file in the bp-default theme folder so that now you have sidebar.php and sidebar2.php both in there. Open sidebar2.php in a text editor and change the first div at the top from `
` to `` and save and put this back into the bp-default themes folder.Step 3.
Open up the style.css file in the fishbook template folder in an editor.
paste this into that css file:
`div#sidebar2 {
float: right;
width: 224px;
}`step 4.
now we need to shrink the content area in order to make things fit.
locate: div#content in the css file you have open from fishbook.
replace the css rules with this or something similar. note that this will change the content div dimensions on all parts of your site. you will need to rework the content div structure and names if you only want this happening on certain pages in your site.
`div#content {
position:relative;width: 55%;
float:left;}`
this is not cross browser compliant, so you will need to know your css and how to set this up for cross browser compatibility.
Thats a bit of a place to start off anyways. I wish I could be of more help, but I’m not that great with css. If i do manage to come up with a solution that has proper css, I’ll come back and post here.
You would need to place the same code (“) into whatever other files you want to see the second sidebar in. ie. page.php, archive.php, etc.
hope that will help you out in getting started anyways!
dave
February 24, 2011 at 8:28 pm #106166In reply to: WordPress 3.1
@mercime
Participant== a comprehensive online listing of all buddypress plugins and their compatibility issues – with WP 3.x and among each others ==
That would a great BP community project if members could/would submit their lists of compatible/incompatible BP plugins. Also would be great if someone could check code of current BP plugins if these were updated to meet this http://bpdevel.wordpress.com/2011/02/24/updating-your-buddypress-plugins-for-1-2-8/
it would be cool if at the very least, something like what Andy Peatling came up with before for previously released BP plugins when BP 1.2 rolled out.
WP.org Forums has some Troubleshooting Tips for those who have issues after upgrading to WP 3.1
https://wordpress.org/support/topic/troubleshooting-wordpress-31-master-listFebruary 24, 2011 at 8:27 pm #106165In reply to: WP3 vs WPMU? which one is better for BuddyPress?
r-a-y
KeymasterTo enable multisite on WordPress:
https://codex.wordpress.org/Create_A_NetworkTo install BuddyPress:
https://codex.buddypress.org/getting-started/setting-up-a-new-installation/Check out codex.buddypress.org for more articles.
February 24, 2011 at 6:36 pm #106154In reply to: buddypres doesn’t work
@mercime
ParticipantLooks like you’re on single WP. Are you on Linux or Windows server? Have you checked out this Codex info – https://codex.wordpress.org/Using_Permalinks?
Deactivate BuddyPress and resolve permalink structure first.
Open up your site’s .htaccess file and compare it to example in article above. If different, then save a copy of your .htaccess file to a safe place, and replace what’s in .htaccess file in your server with what’s posted in article above related to your server setup.
If that doesn’t resolve your issue, you can get more assistance at https://wordpress.org/support/forum/how-to-and-troubleshooting
February 24, 2011 at 5:52 pm #106151In reply to: Changing the code in the BuddyPress files
@mercime
ParticipantFebruary 24, 2011 at 2:00 pm #106138In reply to: WordPress 3.1
serverdog
MemberMy aproach seems to be a little too systematic – however I would like to ask if there is a comprehensive online listing of all buddypress plugins and their compatibility issues – with WP 3.x and among each others? This could be just one big table, however I could not find anything like this. I am not talking about the “works / work not” thing at the WP plugin site – it should be something more overviewable and it would be great to have an API so plugins could check for dependencies and compatibility issues. Is there anything like this?
February 24, 2011 at 12:55 pm #106134In reply to: WordPress 3.1
Dennis
MemberI made the upgrade for test and the menu didn’t show the plugins configs.
Also, the home just didn’t show anything, I think ir really better waiting for some days/weeks to make a safe upgrade
February 24, 2011 at 10:18 am #106128In reply to: cannot enable multisite after buddypress install
@mercime
ParticipantIf you have BP installed already, and you want to enable multisite https://codex.wordpress.org/Create_A_Network :
1. You need to deactivate all WP/BP plugins and change to default theme (twentyten) first.
2. Note, that if you have had single WP for some time, you can only go multisite in subdomain structure i.e. http://newsite1.example.com. Make sure that your server is set up for that.
https://codex.wordpress.org/Create_A_Network#Step_2:_Setting_Wildcard_Subdomains
3. You only add `define(‘WP_ALLOW_MULTISITE’, true);` to wp-config.php to get `Tools > Network` in your dashboard to start the process. If your server is up to the task, follow dashboard message to enable multisite in your install.
https://codex.wordpress.org/Create_A_Network#Step_3:_Allow_Multisite
= If you encounter multisite creation problems, resolve that first in WP forums https://wordpress.org/support/forum/multisite before re-activating BP/WP plugins.February 24, 2011 at 8:48 am #106124In reply to: WordPress 3.1
Paul Wong-Gibbs
KeymasterIf you can’t see the menu links, if you’re using multisite, you’ll need to be sure that you’re looking at the network dashboard.
February 24, 2011 at 6:08 am #106119In reply to: WordPress 3.1
ewebber
ParticipantIt’s so tempting to press that button (those update messages really nag at you), but I’m going to hold off until I have tested all my plugins and have a good window of time in case something goes wrong
February 24, 2011 at 5:33 am #106118In reply to: WordPress 3.1
stwc
ParticipantReporting same issue as Andrés Richero on my localhost with 3.1 and BP 1.28. Missing Buddypress dashboard menu items for BP plugins. Site works, but.
February 24, 2011 at 4:54 am #106116In reply to: WordPress 3.1
gregfielding
ParticipantThose links should come back when the plugin authors update their plugins to be compatible with 3.1
February 24, 2011 at 2:22 am #106109In reply to: Am I Breaking Something? Is There An Easier Way?
modemlooper
ModeratorIf a user is logged into WordPress in the same browser there is no way to have a user register another account. Try this on any site on the web an I guarantee you can not.
February 24, 2011 at 1:39 am #106105In reply to: WordPress 3.1
Andres Richero
MemberJust updated my site to 3.1 and 1.2.8. The only thing i can notice up to now is that i´ve lost the plugin config links that appeared under the buddypress menu tab. Any idea on how to fix this?
Thanks all. -
AuthorSearch Results