Search Results for 'theme'
-
AuthorSearch Results
-
August 10, 2011 at 9:47 pm #118167
In reply to: Can’t get Buddypress to work!
enderandrew
MemberWhen using the Buddypress Template Pack, make sure you’re using that to insert the Buddypress CSS and JS in your theme as well, which is why it probably didn’t work for @abccreativity right away.
I’m not familiar with the Headway BuddyPress plugin. But first things first, are you install Buddypress 1.2.9 or 1.5-beta-2?
August 10, 2011 at 9:03 pm #118163In reply to: Can’t get Buddypress to work!
bubblegumdesigns
MemberI am having similar issues trying to get my BuddyPress install to work with my Headway BuddyPress Addon. I set up the BuddyPress plugin. -no problems- I then downloaded and set up the recommended BuddyPress Template Pack plugin. -site still working- However when I activate the Headway BuddyPress Add-On plugin, I receive the following error:
Fatal error: Cannot redeclare bp_dtheme_ajax_querystring() (previously declared in /home/mbctv/public_html/test4_2/wp-content/plugins/headway-buddypress-add-on/lib/buddypress-theme/_inc/ajax.php:2) in /home/mbctv/public_html/test4_2/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/ajax.php on line 81
Has anyone received this message? And can someone please help me?? Thanks!
Becky
August 10, 2011 at 8:05 pm #118157In reply to: [Resolved] Trying to modify the group loop
sdls
Memberthat totally helped me @boonebgorges thanks!.
I’m trying to do something quite similar to Von. My goal is to create a new page, just like the
buddypress forumns / groups / achievements setup where you have a table of contents with “view all” and “my ____”.Trying to integrate post content with this same setup…. sort of a “Browse all Posts” … “Browse My Posts”…. in the same format. This is both to take advantage of those nice little ajax togglers that modify the loop based on the ajax query…. but also to maintain visual consistency across the site.
Using page templates a new table of contents has been created for these posts “post/index.php” and “post/post-loop.php” using the exact same HTML and CSS as the BP template…. so it looks good… same format..
So…. you can toggle between “All Posts” and “My Posts”… but of course, the HTML and
id’s are hooked into the original ajax loop mods for forumn/index.php, so when you click on it it loads the original loop for “All Forumns” and “My Forumns”.So first off…. trying to understand the Ajax call FROM the page… and I need to create a NEW one that triggers “All Posts” and “My Posts” correctly when the links are clicked on… Looking through bp_dtheme_ajax_querystring() in bp-themes/bp-default/_inc/ajax.php… wow this looks complicated.
creating another action?
add_action( ‘wp_ajax_posts_filter’, ‘bp_dtheme_object_template_loader’ );ANy help would be greatly appreciated!
August 10, 2011 at 4:35 pm #118143In reply to: How to add more tabs to the navigation bar
@mercime
ParticipantCreate a BP child theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Copy over header.php from bp-default theme to your new child theme folder
Open up header.php and make changes there, save and upload child theme folder to server and activate.
August 10, 2011 at 8:09 am #118124Paul Wong-Gibbs
KeymasterThat does exist in BP 1.5.
Did you somehow switch the theme to BP-Default *before* activating the plugin? Or, after activating the plugin, did you complete the BuddyPress set up wizard? (it should have displayed a note at the top of the screen after activating the plugin, with a link)
August 10, 2011 at 7:16 am #118119In reply to: how to remove a page from buddypress nav menu
porkchops1987
MemberThanks for your reply i started with a new theme and was able to just comment them out. I have now coded in one of the pages where i want it (in front of members) and i have used a plugin to remove the WordPress created page (of same name). However now when i select it it does not indicate on the menu as being the currently selected page.
( bp_is_page( BP_PROJECTS_SLUG ) ) : ?> //i think this statement is wrong because —->
THIS DIDNT WORK PROPERLY I HAD TO CODE IN LINK MANUALLY
<li class=”selected”>
<a href="//” title=””>MANUALLY
<li class=”selected”>
<a href="/projects/” title=””>( bp_is_page( ‘projects’ ) ) : ?>
( bp_is_active( ‘projects’ ) ) : ?>
i tried all these conditions but it still doesnt work.
i have also used this code in my functions.php (its from another forum post, maybe i havent used it right?) —->
<?php
/*Define slugs*/
define(‘BP_PROJECTS_SLUG’, ‘projects’); /* this will show up as http://yourdomain.com/projects *//*Add slug as a root component*/
function page_setup_root_component()
{
bp_core_add_root_component( BP_PROJECTS_SLUG );
}
add_action( ‘plugins_loaded’, ‘page_setup_root_component’, 2 );/*Show defined slug*/
function bp_show_page() {
global $bp, $current_blog;if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
bp_core_load_template( ‘projects’, true ); /*replace example with the name that of the template you upload*/
}
}
add_action( ‘wp’, ‘bp_show_page’, 2 );/*For extra functionality you can add a title for that page*/
function page_titles( $title, $b ) {
global $bp;if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
$title = __( ‘Projects’, ‘buddypress’ ); /*change Example with what you want the title of your page to be*/
}
return $title;
}
add_filter( ‘bp_page_title’, ‘page_titles’, 10, 2 );?>
August 10, 2011 at 2:51 am #118106In reply to: BuddyPress 1.5 updated themes list
@mercime
Participant@karmatosed adding my thanks for getting this going
Hopefully, we’ll be adding more child themes in repo.August 10, 2011 at 2:45 am #118104In reply to: how to remove a page from buddypress nav menu
@mercime
Participant@porkchops1987 It can be as easy as opening up your theme’s header.php and delete the other links you don’t need. What theme are you using?
August 10, 2011 at 2:42 am #118103In reply to: Change single tab colour
@mercime
Participant@naijaping you’d have to add classes to the links you wanted to highlight to change the link color of each link. Or, you might want to change navigation links to use wp_nav_menu where you could easily target the links to implement your customizations. Here’s an easy tutorial on adding wp_nav_menu to your theme http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus
August 10, 2011 at 2:31 am #118102In reply to: Activity follow up pages not showing
eliZZZa
MemberStill lots of questions around the combination of WP, BP, BBP plugin after I changed to BuddyPress Widget Theme 1.2.7
I don’t get the interaction between the 3 parts, especially the role of bbpress
a) /wp-content/plugins contains
/bbpress
/buddypress
b) /wp-content/plugins/buddypress/bp-forums contains a complete folder
/bbpressb) Is obviously part of the BuddyPress plugin folder. So is it obsolete to install the BBP plugin?
Ran a bbpress installation through BuddyPress settings in the WP admin panel. Everything referred to as “Forums” shows Group Forums only in the frontend.
Don’t find a way to show a forums directory with the (BBP) forums I setup in WP-Admin.
When previewing forums from admin panel/forums list, I get single forum pages with header but without topics.I am confused >;o// hope, I didn’t confuse YOU too much…
August 10, 2011 at 2:21 am #118101In reply to: How to add more tabs to the navigation bar
@mercime
ParticipantYou’d have to open up header.php of your theme and find the navigation links then probably hardcode the links to the page/s of your plugin. Hard to tell, no info on what theme you’re using or what method you use to call nav links in your theme.
August 9, 2011 at 8:20 pm #118084In reply to: BuddyPress 1.5 compatibility for plugins and themes
Tammie Lister
ModeratorCool updated it and thanks to the list from @foxly have now updated a lot of plugins to their current status.
August 9, 2011 at 7:14 pm #118080In reply to: BuddyPress 1.5 compatibility for plugins and themes
Boone Gorges
KeymasterBuddyPress Group Email Subscription 2.9 has just been tagged, and is fully compatible with BP 1.5.
August 9, 2011 at 4:21 pm #118068modemlooper
Moderatorpaste the contents of bp-themes/bp-default/groups/single/group-header.php
You must not have removed the code.
August 9, 2011 at 3:07 pm #118061In reply to: BuddyPress 1.5 compatibility for plugins and themes
Paul Wong-Gibbs
Keymaster
No harm. Thanks again for your testing; 1.5 has had the best beta period (in terms of community involvement and bugs found/fixes) to date of any BuddyPress release, and your team’s contribution is icing on a yummy cupcake.August 9, 2011 at 2:12 pm #118060In reply to: BuddyPress 1.5 compatibility for plugins and themes
foxly
Participant68 plugins tested + 224 plugins in the work queue. Test team on fire!
http://code.google.com/p/buddypress-media/wiki/DOCS_BP_OnePointFive
@DJPaul
Sorry for the contact message yesterday. The tester didn’t know you were a core dev.^F^
August 9, 2011 at 1:36 pm #118059In reply to: Frisco Child Theme
David Carson
Participant@PJ Are you using the latest BP trunk? https://buddypress.trac.wordpress.org/browser/trunk
And are you using the latest theme from here – https://github.com/davidtcarson/frisco?
August 9, 2011 at 11:48 am #118052In reply to: Frisco Child Theme
PJ
Participant@intermike I downloaded and re-activated the theme but no luck.
August 9, 2011 at 6:46 am #118044In reply to: BuddyPress 1.5 updated themes list
Paul Wong-Gibbs
KeymasterThanks for getting on this, and for Mercime testing the repo themes
August 9, 2011 at 6:42 am #118043In reply to: The New BP Admin Bar
Paul Wong-Gibbs
KeymasterIt’s part of the new BuddyPress 1.5 default theme, which you can download via our news blog (“blog” in the main menu). Be aware the software is in beta testing at the moment.
August 9, 2011 at 4:12 am #118033In reply to: BuddyPress 1.5 compatibility for plugins and themes
foxly
ParticipantWe’ve modified our BuddyPress test install with your patch and deployed it to our testers. There could be up to a 24 hour delay before they cut over to it though.
Thanks!
^F^
August 9, 2011 at 2:55 am #118031In reply to: BuddyPress Template Pack
enderandrew
MemberThe Buddypress Template Pack can insert the Buddypress CSS and JS in your theme. That’s likely the step you are missing.
August 9, 2011 at 2:48 am #118030In reply to: Regular wp theme to a buddypress theme?
Tony Locke
Participantwell, I don’t know what part of the file to change. I loaded the compatibility plugin templates, loaded the BP Sidebar plugin, even got the theme tag-ged buddypress to get rid of the message.
when I open up the widgets I see the Buddypress sidebar widgetized areas, but no matter what I place in there I can’t get them to show.
I guess I need to learn how to “make note of the HTML template structure of the file, specifically the
tags that surround the content and sidebar.”
will someone hold my hand through that process please?August 9, 2011 at 2:45 am #118029In reply to: JobRoller + BuddyPress errors
Tony Locke
Participantwell, I don’t know what part of the file to change. I loaded the compatibility plugin templates, loaded the BP Sidebar plugin, even got the theme tag-ged buddypress to get rid of the message.
when I open up the widgets I see the Buddypress sidebar widgetized areas, but no matter what I place in there I can’t get them to show.
I guess I need to learn how to “make note of the HTML template structure of the file, specifically the
tags that surround the content and sidebar.”
will someone hold my hand through that process please?August 9, 2011 at 2:43 am #118028In reply to: BuddyPress Template Pack
Tony Locke
Participantwell, I don’t know what part of the file to change. I loaded the compatibility plugin templates, loaded the BP Sidebar plugin, even got the theme tag-ged buddypress to get rid of the message.
when I open up the widgets I see the Buddypress sidebar widgetized areas, but no matter what I place in there I can’t get them to show.
I guess I need to learn how to “make note of the HTML template structure of the file, specifically the
tags that surround the content and sidebar.”will someone hold my hand through that process please?
-
AuthorSearch Results