Search Results for 'buddypress'
-
AuthorSearch Results
-
December 23, 2010 at 8:12 am #101177
Sandi Brockway
Participantgot into the admin site, but in it i get this error when i click plugins
Fatal error: Class ‘BP_Group_Extension’ not found in /data/home/macronet/websites/crowncoach.info/docs/wp-content/plugins/buddypress-group-activity-stream-subscription/bp-activity-subscription-main.php on line 10
December 23, 2010 at 2:52 am #101172rockyteng
Participantthanks flips for your reply.
it helps!Rocky
December 23, 2010 at 2:09 am #101171imjscn
ParticipantThat’s wonderful, BG!
Please make sure you give us a UI to play with
December 22, 2010 at 6:56 pm #101153In reply to: New Member Activation Email not sent Redux
@mercime
Participant@thealchemist if your WP is multisite, you can use dsader’s plugin https://wordpress.org/extend/plugins/user-activation-keys/
December 22, 2010 at 5:57 pm #101145foxly
ParticipantFinish it and upload it to the task on the tracker then.
If the other member submits their translation, we will distribute both of them with the plugin.
Thanks!
^F^
December 22, 2010 at 5:49 pm #101143foxly
Participanthttps://www.pivotaltracker.com/story/show/7583287
Another team member has ownership of the Spanish translation task. However, they have not confirmed that they have started on it yet.
If they do not respond within 24 hours, I will let you start on it.
Thanks for helping out!
^F^
December 22, 2010 at 4:30 pm #101136In reply to: Getting Buddypress Functions in to Custom Theme
luvs
Member@hnla, no, I did not get it working? :0
BrownBuddy has the same problem as me, but brownbuddy is even worse when it comes to intigrated.
The steps I listed on the top of the thread got everything working except functions….
Such as…..
The dropdown bubble “%is a unique identifier for %…..”
And the friend request accept is broken, because functions are not listed.The code to get this working is listed in bp-default theme’s functions:
`/* Add words that we need to use in JS to the end of the page so they can be translated and still used. */
function bp_dtheme_js_terms() { ?>var bp_terms_my_favs = ”;
var bp_terms_accepted = ”;
var bp_terms_rejected = ”;
var bp_terms_show_all_comments = ”;
var bp_terms_show_all = ”;
var bp_terms_comments = ”;
var bp_terms_close = ”;
var bp_terms_mention_explain = ”;<?php
}`But Where do I put it so it gets working?
Putting it in Arras’s functions.php does the trick, but gets too many errors to even function on the site…
December 22, 2010 at 4:25 pm #101135In reply to: Getting Buddypress Functions in to Custom Theme
Hugo Ashmore
ParticipantGlad you got it all working. You sorted the issue with the functions file, which seemed the main thrust of the thread ?
December 22, 2010 at 3:58 pm #101133In reply to: Getting Buddypress Functions in to Custom Theme
luvs
MemberOh, and brownbuddy theme has a worse intigration than my theme!
December 22, 2010 at 5:43 am #101117In reply to: having trouble creating a child theme
@mercime
Participant=== I’m assuming i have to activate the child theme in the main wordpress dashboard, is this correct? ===
Yes. Activate the child theme in dashboard of WP site where BuddyPress is installed. So if your BP is in main/primary site, activate child theme in dashboard of main site.
December 22, 2010 at 4:53 am #101116In reply to: having trouble creating a child theme
Grackle Design
Memberthanks mercime, that was really helpful. but actually, after reading your post, all i did was swap out the URLs in my child theme’s stylesheet, so now i have,
/* Inherit the default theme styles */
@import url( ../../themes/bp-default/_inc/css/default.css );/* Inherit the default theme adminbar styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );that seems to have done the trick, as now if you visit the mockup2.html page, it looks just like the pre-mockup.
the next thing i’ll need to do is actually throw the switch by activating the theme in the wordpress admin, i think
with the above mockup page, all i did was copy the homepage source code and save it as a .html file so i could play around, and linked it to the child theme style.css by changing the link in the head. however to get this live on the site, I’m assuming i have to activate the child theme in the main wordpress dashboard, is this correct? (a little nervous).December 22, 2010 at 4:32 am #101115In reply to: Getting Buddypress Functions in to Custom Theme
luvs
Memberbump
Ok for future references, here is exactly what I did for my arras theme, And so far, it’s pretty good.
1. Installed Arras + Buddypress.
2. Installed Buddypress Template Pack
3. Called the Buddypress Stylesheets into my theme (/* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css ); Put that into Arras Custom.css
4. Deleted the CSS from template pack, did not need anymore (following step 3)Everything is dandy except functions. I am missing a step… but where?
December 22, 2010 at 4:17 am #101112In reply to: having trouble creating a child theme
@mercime
Participant=== do you think i am correct in my assumption that there is another style.css that i am supposed to be importing into the child theme, that i missed? or do you think there is another explanation for why the child theme style is ‘off’? ===
Your mockup style.css is importing from the bp-default theme in BP plugin folder http://electioncandidates.com/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/default.css
while the pre-mockup style.css is importing from the bp-default theme in themes folder http://electioncandidates.com/wp-content/themes/bp-default/_inc/css/default.css where the styling has already been revised/customized. Initial scan comparing the stylesheets already shows that min and max width is set to 996px in pre-mockup; while your mockup still has the BP default styling of min width of 960px and max width of 1250px just as an example of the difference.Copy over the styling of `default.css` and `adminbar.css` from the pre-mockup to your theme’s `/_inc/css/` folder and change the import call
from
/* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );
/* Inherit the default theme adminbar styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
to
/* Inherit the default theme styles */
@import url(_inc/css/default.css );
/* Inherit the default theme adminbar styles */
@import url(_inc/css/adminbar.css );
cross fingers
December 22, 2010 at 1:31 am #101108In reply to: Activity Stream Replies
@mercime
ParticipantAlso, change theme to bp-default theme and deactivate BP plugins except BuddyPress to see whether it’s cosmic buddy theme code or if there’s another reason that’s preventing you from posting updates to activity stream.
December 22, 2010 at 1:23 am #101107In reply to: BuddyPress Group Review Won’t Work with new WP
DaDonkaDonkas
MemberWorks, thanks for the plugin!
December 22, 2010 at 12:24 am #101104In reply to: not showing registration link on homepage
@mercime
Participant=== There is no Super Admin panel, not to mention no choice either in the drop down menu at the top of the buddypress toolbar, or in the wordpress dashboard called ‘options.’ ===
Super Admin and special Options panel only show up for WordPress multisite installations – so if you want those but more importantly, you want to allow your members to create blogs in your site then read this https://codex.wordpress.org/Create_A_Network
=== buddypress not posting the link for the codex anywhere on this site ====
Sure there is a link. Click on “Support” tab in main navigation then click on “Documentation” link that appears in line below main navigation.
December 22, 2010 at 12:22 am #101103In reply to: PLEASE- BP ALBUMS, CANNOT CROP IMAGES
Xevo
ParticipantYou mean the avatars in the BuddyPress core? Thats different then the plugins.
You should see if others have your problem and make a ticket if your the first on the trac.
December 21, 2010 at 11:28 pm #101099In reply to: not showing registration link on homepage
meganano
MemberAlso, what’s with buddypress not posting the link for the codex anywhere on this site! Or anywhere that’s noticeable. I had to download buddypress and dig out the readme file to find out that one exists!
December 21, 2010 at 11:14 pm #101098In reply to: not showing registration link on homepage
meganano
MemberI’m running the latest version of wordpress, 3.0.3 and a brand new installation of Buddypress. There is no Super Admin panel, not to mention no choice either in the drop down menu at the top of the buddypress toolbar, or in the wordpress dashboard called ‘options.’
so… how do we allow folks to register?
December 21, 2010 at 10:40 pm #101094In reply to: PLEASE- BP ALBUMS, CANNOT CROP IMAGES
December 21, 2010 at 10:28 pm #101092In reply to: 2 plugin ideas,
Xevo
Participant1. Yeah, sounds nice.
2. Nah, whats the point? Thats more specific, not something a lot of buddypress installs would need.December 21, 2010 at 9:57 pm #101091In reply to: what’s new and forum tab questions
hbalagh
Memberafter searching for something unrelated, i found the solution in this post https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/changing-group-tab-display-defaults/
December 21, 2010 at 9:57 pm #101090open flips
ParticipantI guess this topic is closed thanks to Dave, please see [Plugin: Buddypress-Ajax-Chat] Plugin not working : Fatal error for more information.
December 21, 2010 at 8:46 pm #101074In reply to: Buddypress / Multisite issue
@mercime
ParticipantWhite screen of death – https://codex.buddypress.org/troubleshooting/blank-pages/
=== I certainly can do that, but am hoping to be able to manually fix the broken code. ===
Consider the time you’ve already spent trying to fix what’s going on with your new install and compare that with 20 minutes or so backing up database and server files, then dropping DB tables and deleting htaccess, reuploading WP files, going through the installation process, then creating a network and checking that everything’s going well with your installation before installing BuddyPress. I can only say that unless you’re seriously considering debugging the Enable Multisite plugin and reporting it, go with fresh install. Of course, it’s all up to you. Good luck.December 21, 2010 at 8:05 pm #101070In reply to: Buddypress version of wordpress 'mystique' theme?
jakeduanejohnson
Memberjust found a link here. http://hostandwin.com/free-buddypress-themes.php
-
AuthorSearch Results