Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 17,601 through 17,625 (of 31,072 total)
  • Author
    Search Results
  • #121059
    r-a-y
    Keymaster
    #121051
    frenx4u
    Participant

    In another post of yours, you said that you have such a problem with the profile tab also.
    It seems that your theme is lacking some required buddypress components or some are not working.

    Solution:
    copy all the required components from the “plugins/buddypress/bp-themes/bp-default/” to your current theme.

    #121048
    frenx4u
    Participant

    if the problem is only with the profile settings tab, then copy the profile.php and profile folder from the location:
    “plugins/buddypress/bp-themes/bp-default/members/single/”
    to the following location:
    “themes/your-current-theme/members/single/”

    This will correct the problem

    #121030
    NicolaAvery
    Member

    Actually, have just fixed it using Platform theme – by downloading the BP template pack, following the instructions in there to move the 6 folders from bp-default into platform: https://buddypress.org/2011/09/boo-yah-buddypress-template-pack-1-2-is-bp-1-5-compatible/

    They have now appeared as pages, so more to test, but they are no longer blank and alive with words and images – thank you Buddypress!

    #121027
    NicolaAvery
    Member

    Hi, I had blank pages after upgrading – at the time I had custom community theme. I uninstalled buddypress via ftp and dropped all the database tables. (I also uninstalled and reinstalled wordpress too at one point). I tried all of these as well https://codex.buddypress.org/troubleshooting/blank-pages/ , thanks to mercime, but unfortunately still got the same errors.
    I tried bp default theme and was then able to see the dashboard but the front end pages were all blank. I have started using Elbee Elgee and was able to see dashboard and set up forums, groups ok on the front end (the only thing which doesn’t work so far – but I haven’t tested everything is create topic in forum).

    #121020
    Paul Wong-Gibbs
    Keymaster

    Edit your theme’s /forums/single/topic.php template: around line 146 (the one with “bp_get_the_topic_is_last_page”).

    #121016
    Paul Wong-Gibbs
    Keymaster

    @bakelady The issue is with your custom theme (https://wordpress.org/extend/themes/bp-columns), not BuddyPress itself. @modemlooper, are you still supporintg bp-columns?

    #121008

    In reply to: Frisco Child Theme

    KylieSocial
    Member

    Is it possible to add a customised logo? I’ve been playing around with some of the files but can’t seem to do this.

    #120997
    @mercime
    Participant

    plus
    /blogs/create.php
    /forums/single/forum.php
    /forums/single/topic.php

    #120994

    In reply to: Frisco Child Theme

    Dwenaus
    Participant

    Looks pretty cool!

    Walid
    Participant

    P.S. I want to use a child theme of twenty eleven with little customization I made, if that will make things any different.

    #120989
    Chi
    Member

    Ok Cheers!! I also had to add Step 1 and 2 to correct the alignment for those pages Delete account, Ok Cheers!! I also had to add Step 1 and 2 to correct the alignment for those pages Delete account, Notifications and general.

    /members/single/settings/delete-account.php
    /members/single/settings/notifications.php
    /members/single/settings/general.php

    and

    /registration/activate.php

    #120986
    @mercime
    Participant

    Oops, forgot about that one. For the bottom part of registration/registration.php, replace:
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    with
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    #120981
    isis
    Participant

    thanks, but as indicated earlier, i switched to the default theme (bp 1.5) and received the exact same error message :/

    doesn’t make sense at this point to have both the main site AND the buddypress section down so i put the custom theme back.

    #120976
    Connor
    Member

    Yes its possible you need to add some code to the bp-custom.php which should be in your plugins.

    I’m not sure the exact code for removing them two as they are in the sub menu try these links:

    http://themekraft.com/customize-profile-and-group-menus-in-buddypress/

    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/customizing-buddypress-profile-page-default-tab-and-item-nav-order/

    #120971
    brandonw91
    Member

    Thanks for the reply! I agree that a hack wouldn’t be a good idea. I guess you helped to clarify my question. I don’t want to have a second theme. I like the style and look of my site overall, but it seems to interfere with the way that buddypress looks and fuctions. It just isnt’ as easy to use and navigate as the basic buddypress theme. I don’t know how extensive the coding would be, so I may or may not be able to do it myself. We would definitely look into outsourcing the work if its something that would give us a good end result.

    By the way, I am using wordpress template pack. Would you be able to elaborate your suggestion about copying over the styling, etc. Thanks again!

    #120963
    Connor
    Member

    Hi, If its the problem I had then your website is not loading Global.JS you need to backup your functions.php file, (use your childthemes one if you have one) then edit it and add this code below near the bottom:

    if ( !function_exists( ‘bp_dtheme_enqueue_scripts’ ) ) :
    /**
    * Enqueue theme javascript safely
    *
    * @see https://codex.wordpress.org/Function_Reference/wp_enqueue_script
    * @since 1.5
    */
    function bp_dtheme_enqueue_scripts() {
    // Bump this when changes are made to bust cache
    $version = ’20110921?;

    // Enqueue the global JS – Ajax will not work without it
    wp_enqueue_script( ‘dtheme-ajax-js’, WP_PLUGIN_DIR . ‘/buddypress/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ), $version );

    // Add words that we need to use in JS to the end of the page so they can be translated and still used.
    $params = array(
    ‘my_favs’ => __( ‘My Favorites’, ‘buddypress’ ),
    ‘accepted’ => __( ‘Accepted’, ‘buddypress’ ),
    ‘rejected’ => __( ‘Rejected’, ‘buddypress’ ),
    ‘show_all_comments’ => __( ‘Show all comments for this thread’, ‘buddypress’ ),
    ‘show_all’ => __( ‘Show all’, ‘buddypress’ ),
    ‘comments’ => __( ‘comments’, ‘buddypress’ ),
    ‘close’ => __( ‘Close’, ‘buddypress’ ),
    ‘view’ => __( ‘View’, ‘buddypress’ )
    );

    wp_localize_script( ‘dtheme-ajax-js’, ‘BP_DTheme’, $params );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_scripts’ );
    endif;

    Connor
    Member

    Thank you so much.

    If anyone in the future gets this issue, my theme is Arras, the childtheme is called BrownBuddy and you have to edit the above code on the functions.php which is located in the BrownBuddy theme’s root.

    #120958
    demilio
    Participant

    Just found the solution.

    I added // in front of this line in the functions.php in bp-default:
    ‘wp_enqueue_script( ‘dtheme-ajax-js’, get_template_directory_uri() . ‘/_inc/global.js’, array( ‘jquery’ ) );’

    #120955

    Thank you Boone Gorges! THANK YOU THANK YOU THANK YOU….
    the code works perfectly in the theme’s function.php

    #120953
    Flora1234
    Member

    I want to emphaise that i want to RE-INSTALL WORDPRESS without losing my other plugins… it is possible through the dashboard.

    #120951
    Flora1234
    Member

    Since i upgraded with buddypress 1.5 i dont have the login screen any more and i can see the wiget boxes underneath. I am wondering if i should reinstall wordpress, but how can i do it through the dashboard.

    #120945
    zpg
    Member

    hosting server props:
    SM 1U SuperServer 5015MT Quadcore
    – Intel Pentium Quad Core E6600 FSB1066
    – 2 x Kingston 2GB DDR2 800 PC6400
    – 2x 500 GB Seagate SATA 2 (RAID-1)
    – 3Ware 9650SE-2 Raid Controller
    – 2x Intel 1000 Mbit Networkcard

    running Windows Server 2003 in combination with IIS 6.0

    Not using .htaccess

    permalinks are setup as : /%category%/%postname%/

    #120939
    @mercime
    Participant

    == using custom theme ==
    Change to bp-default theme

    #120924
    Connor
    Member

    I know I added this code here:

    if ( !function_exists( ‘bp_dtheme_enqueue_scripts’ ) ) :
    /**
    * Enqueue theme javascript safely
    *
    * @see https://codex.wordpress.org/Function_Reference/wp_enqueue_script
    * @since 1.5
    */
    function bp_dtheme_enqueue_scripts() {
    // Bump this when changes are made to bust cache
    $version = ‘20110921’;

    // Enqueue the global JS – Ajax will not work without it
    wp_enqueue_script( ‘dtheme-ajax-js’, WP_PLUGINS_DIR . ‘/buddypress/bp-themes/bp-default/_inc/global.js’, array( ‘jquery’ ), $version );

    // Add words that we need to use in JS to the end of the page so they can be translated and still used.
    $params = array(
    ‘my_favs’ => __( ‘My Favorites’, ‘buddypress’ ),
    ‘accepted’ => __( ‘Accepted’, ‘buddypress’ ),
    ‘rejected’ => __( ‘Rejected’, ‘buddypress’ ),
    ‘show_all_comments’ => __( ‘Show all comments for this thread’, ‘buddypress’ ),
    ‘show_all’ => __( ‘Show all’, ‘buddypress’ ),
    ‘comments’ => __( ‘comments’, ‘buddypress’ ),
    ‘close’ => __( ‘Close’, ‘buddypress’ ),
    ‘view’ => __( ‘View’, ‘buddypress’ )
    );

    wp_localize_script( ‘dtheme-ajax-js’, ‘BP_DTheme’, $params );
    }
    add_action( ‘wp_enqueue_scripts’, ‘bp_dtheme_enqueue_scripts’ );
    endif;

    I put this in the last section of functions.php

Viewing 25 results - 17,601 through 17,625 (of 31,072 total)
Skip to toolbar