Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 18,126 through 18,150 (of 31,074 total)
  • Author
    Search Results
  • #118167
    enderandrew
    Member

    When 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?

    #118163

    I 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

    #118157
    sdls
    Member

    that 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!

    #118143
    @mercime
    Participant

    Create 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.

    Paul Wong-Gibbs
    Keymaster

    That 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)

    #118119

    Thanks 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 );

    ?>

    #118106
    @mercime
    Participant

    @karmatosed adding my thanks for getting this going :-) Hopefully, we’ll be adding more child themes in repo.

    #118104
    @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?

    #118103
    @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

    #118102
    eliZZZa
    Member

    Still 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
    /bbpress

    b) 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…

    #118101
    @mercime
    Participant

    You’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.

    #118084
    Tammie Lister
    Moderator

    Cool updated it and thanks to the list from @foxly have now updated a lot of plugins to their current status.

    #118080
    Boone Gorges
    Keymaster

    BuddyPress Group Email Subscription 2.9 has just been tagged, and is fully compatible with BP 1.5.

    modemlooper
    Moderator

    http://pastebin.com/

    paste the contents of bp-themes/bp-default/groups/single/group-header.php

    You must not have removed the code.

    #118061
    Paul Wong-Gibbs
    Keymaster

    :D 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.

    #118060
    foxly
    Participant

    68 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^

    #118059

    In 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?

    #118052

    In reply to: Frisco Child Theme

    PJ
    Participant

    @intermike I downloaded and re-activated the theme but no luck.

    #118044
    Paul Wong-Gibbs
    Keymaster

    Thanks for getting on this, and for Mercime testing the repo themes

    #118043

    In reply to: The New BP Admin Bar

    Paul Wong-Gibbs
    Keymaster

    It’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.

    #118033
    foxly
    Participant

    @johnjamesjacoby

    We’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^

    #118031
    enderandrew
    Member

    The Buddypress Template Pack can insert the Buddypress CSS and JS in your theme. That’s likely the step you are missing.

    #118030
    Tony Locke
    Participant

    well, 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?

    http://www.OpenVolunteers.com

    #118029
    Tony Locke
    Participant

    well, 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?

    http://www.OpenVolunteers.com

    #118028
    Tony Locke
    Participant

    well, 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?

    http://www.OpenVolunteers.com

Viewing 25 results - 18,126 through 18,150 (of 31,074 total)
Skip to toolbar