Search Results for 'buddypress'
-
AuthorSearch Results
-
September 29, 2011 at 6:56 pm #121483
In reply to: BuddyPress 1.5 user fullname save/show errors
juanmaguerrero
Participant@boonebgorges Is there any known fix for this or some page were we could search for a solution? thx!
September 29, 2011 at 6:50 pm #121481Boone Gorges
KeymasterI don’t know how to make this work on Windows. It’s not really a BuddyPress problem – I’m guessing that a normal WP installation won’t work either, if you turn on pretty permalinks. Have a look at https://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite
September 29, 2011 at 6:49 pm #121480uniclue
MemberIt says that i only need to change “pages.php” take a look here: http://pastebin.com/fUwwGwak
can you help?September 29, 2011 at 6:42 pm #121479modemlooper
ModeratorThe Header and footer and sidebar and content area are usually in every WordPress template. You need to edit the BuddyPress files added to your theme to match the structure of your theme.
Sometimes the content area is called container or wrapper or something else. You need to match the containing div around the content to the BP files.
In step 3 it shows you a diagram of div markup. If you have never edited code you may need to hire someone to do this. On complex themes it can be a challenge.
September 29, 2011 at 6:10 pm #121475@mercime
Participant== I assume that this means that I am having a plugin problem? ==
Yes it does.== now what do i need to do? ==
– Since you’ve been able to access your wp-admin, you can now rename wp-content/plugins-x to wp-content/plugins
– Activate BuddyPress
– Use bp-default theme in the meantime
– Do not activate maintenance mode plugin yet – it sometimes messes up with BP plugins
– Activate BP plugins one by one and see which one is messing up with your login. There’s a list of plugins compatible with BP 1.5 – https://codex.buddypress.org/releases/1-5-plugin-compatibility/September 29, 2011 at 5:46 pm #121474drmikelbrown
Membervia ftp i did what you stated and now i can get into the backend and see the site.
The theme is the default is wordpress’ Twenty Eleven 1.2. I assume that this means that I am having a plugin problem? my site is idreamconnection.com
now what do i need to do?
thx
September 29, 2011 at 5:45 pm #121473zpg
MemberSomeone took a look at my website and suggested that it could be a rights problem.
How can I get this right?September 29, 2011 at 4:05 pm #121464In reply to: How to set the loop for author posts.
landshark
Participant@enderpal444 you mentioned there is a plugin for this I assume to get it in a users profile?
September 29, 2011 at 4:04 pm #121463In reply to: Component vs. Plugin
Boone Gorges
KeymasterAnd, for what it’s worth, the idea of a “component” is not one with clear demarcations. Both you and @modemlooper suggest some useful criteria:
– if your plugin creates new data objects, it’s probably a component
– if your plugin needs to have a top-level directory, it’s probably a component (and, in this case, a special kind of component called a “root” component.In BP 1.5, the idea of a “component” has a little bit more technical fleshing-out due to the BP_Component base class. A quick look at that class and its more important methods (setup_globals(), setup_nav()) will give you sense of when it’s useful to think of a plugin as a component. But again, there are no hard-and-fast rules.
In general, when in doubt, I would suggest using the BP_Component class. Sometimes your component won’t need some parts of the component infrastructure – sounds to me like your “up vote” plugin doesn’t need dedicated navigation items, for instance – but in that case, you can just leave those methods out. Using the BP_Component class just makes your life a bit easier by hooking you into the BP load order in the appropriate places.
September 29, 2011 at 3:58 pm #121462In reply to: My buddypress activity on facebook.
modemlooper
ModeratorTry the buddystream plugin
September 29, 2011 at 2:36 pm #121460christophermp
MemberHey echoman,
I just stumbled across your questions through Google and thought I’d offer you a little help. Do you see in your Fatal error where it says “is_site_admin()”? That’s where your problem is. You will need to open the bp-album-core.php file, scroll down to line 305 where it says “is_site_admin()”, and replace the word “site” with the word “super”.
is_super-admin()
September 29, 2011 at 6:20 am #121452Paul Wong-Gibbs
KeymasterClosing this topic.
September 29, 2011 at 6:18 am #121451In reply to: Activity Stream feed missing after upgrade
Paul Wong-Gibbs
KeymasterI can’t see how setting the front page back to showing blog posts should be broken by 1.5. All this works fine for me on my test installs (admittedly a new install, not an upgrade).
@tmcneill71 You can grab older versions from https://wordpress.org/extend/plugins/buddypress/download/
@mikepratt, Tim: What other plugins are you running. What theme. Multisite – if so, subdomain or subdirectory? Prior to upgrading, what did you have your home page set as, or was it just showing blog posts?
September 29, 2011 at 6:06 am #121450@mercime
Participant@walid3 I will be posting info re Twenty Eleven theme with BP Template Pack by this Sunday/Monday.
September 29, 2011 at 5:52 am #121449In reply to: [Resolved] Make all members active
r-a-y
KeymasterThis post explains everything:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/activating-existing-users/#post-40221You’ll need to write a script that gives everyone a “last_activity” timestamp.
Some example code to get it working for one user:
`
// change $user_id to the ID you want to become active
update_user_meta( $user_id, ‘last_activity’, bp_core_current_time() );`September 29, 2011 at 5:45 am #121448In reply to: Activity Stream feed missing after upgrade
Mike Pratt
ParticipantOK. I am embarrassed by how long I have been away. Just upgraded my sandbox (no harm) to 1.5, @djpaul and I have the same issue. it’s a redirect thing. cannot get activity to show ever. Actions are recordding fine to the db but nothing. When I set to home, I get a redirect loop timeout. Thoughts?
September 29, 2011 at 5:38 am #121446In reply to: Buddy press stopped working on my site
r-a-y
KeymasterRule of thumb: disable all BuddyPress 3rd-party plugins and reactivate them one by one until you figure out the culprit.
September 29, 2011 at 5:36 am #121445In reply to: Posting New Forum Topic From Group Front Page
r-a-y
KeymasterYou probably want to make the forums page the default group tab. That way you can do what you want.
Andrew has posted some code for BP 1.5:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-group-tab-display-defaults/?topic_page=3&num=15#post-109704Give it a shot!
September 29, 2011 at 3:54 am #121442In reply to: Component vs. Plugin
modemlooper
Moderatorcc @boonebgorges what’s the timeline for compatibility with current BP?
September 29, 2011 at 2:39 am #121440Walid
Participant@djpaul @boonebgorges
any checking happened with that problem?
https://buddypress.trac.wordpress.org/ticket/3602September 29, 2011 at 2:33 am #121439Walid
Participant@mercime I saw that you have css experience so I thought maybe you can help with that
I don’t know though why buddypress template pack doesn’t fix the integration with twenty eleven as it’s the main theme of wordpress.September 29, 2011 at 2:15 am #121437In reply to: Buddypress 1.5 using too much resource??
echiomega
Participant@kshirtcliffe tested it out today and it seem to work but still kinda slow. Have to wait and see when more visitors come to the site.
September 29, 2011 at 1:50 am #121435In reply to: Unable to Post New Topics to Forum
nysom
Memberdo you have group forums installed? Yes
did you also install the new sitewide forums? Yes
single WP or WP multisite? — Single
is BP installed in main site or subsite (if MS)? Not Multisite
etc — Not sure what else I can give you but what I’ve posted and added in this reply.Also, in bbpress in the the ‘Forums’ settings, there’s some red text beside Archive Slugs – Forums base settings box: Possible BuddyPress conflict: Forums page
September 29, 2011 at 1:33 am #121431In reply to: Unable to Post New Topics to Forum
@mercime
ParticipantPlease answer some troubleshooting questions posted
September 29, 2011 at 1:19 am #121427@mercime
Participant@nysom please start a new topic, this thread was about forums in this site. I suggest you include more information in your new topic like:
– do you have group forums installed,
– did you also install the new sitewide forums,
– single WP or WP multisite
– is BP installed in main site or subsite (if MS),
– etc.EDIT – ok, you did start a new topic
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/unable-to-post-new-topics-to-forum/ -
AuthorSearch Results