Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,051 through 16,075 (of 31,077 total)
  • Author
    Search Results
  • @mercime
    Participant

    Theme author of Suffusion theme has a created a plugin to make Suffusion compatible with BuddyPress, so you don’t need to install and activate BP Template Pack plugin
    https://wordpress.org/extend/plugins/suffusion-buddypress-pack/

    ngtszman
    Member

    I got the answer :
    https://wordpress.org/support/topic/my-theme-isnt-showing-up-1

    Dashboard –> setting –> general setting –> “http://panjury.com/cms” , instead of
    http://localhost/cms”

    #129465
    @mercime
    Participant

    @andreao No need to put codes. Change to bp-default theme and deactivate plugins except BuddyPress to troubleshoot. WP/BP versions? Single WP or WP Multisite? Linux or Windows hosting?

    #129449

    Thanks for your both late, and speedy reply. I figured I’d check back before I went to sleep, I didn’t think anyone would post so late. I was able to locate the appropriate .css files, for future reference (so no one else is confused), they are located in pluginsbp-template-pack right under my nose. I feel like a bit of an idiot now, however I managed to edit several margins that had been set to negative numbers, such as negative nineteen, which my style does not support it would seem.

    As for the Avatar cropping, I have had no luck with this. I scanned the page you linked me, changed my theme, and even disabled it entirely just to rule out that possibility all together to no avail. I did notice however, that this error message is now popping up: There was a problem cropping the avatar, please try uploading it again.

    When I attempt to crop any avatar’s for both groups and persons joining, the crop window does not appear over the picture. I can still select crop picture, only nothing happens. It grabs the corner of said image, and chooses that.

    #129448
    @mercime
    Participant

    Re: Cropping Avatars

    Change to bp-default theme and check if you can crop there. If you can, well and good. If not, check out some trouble-shooting tips https://codex.buddypress.org/getting-started/before-installing/#wp-configuration

    Re: Theme Compatibility

    First thing’s first. Before making any WP theme (downloaded outside of WP theme repository) compatible with BuddyPress, make sure that it is secure. Download the Theme Check Plugin and see if there are warnings or required generated when you run the theme check. WP Theme Repo for example only accepts themes which do not contain warnings and required items.

    I have just downloaded a copy of gamespeed per your link above and there are obfuscated code within 2 files I checked out so far – at the bottom of the theme’s functions.php file and all of footer.php file. Because of that, I can’t help you since I need all the HTML information in footer.php among other theme files for the BP Compatibility Process.

    @mercime
    Participant

    @snowlas You’re welcome and Congratulations. Glad you resolved layout to your satisfaction :-)

    #129441
    @mercime
    Participant

    B. Copy your theme’s sidebar2.php file and save as sidebar-buddypress.php

    Open up sidebar-buddypress.php and add the following at the top of the file, above all other code:
    `

    `

    And at the very bottom of the same file, below other code add this:
    `

    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();
    });
    });

    `

    Save file.

    Upload both header-buddypress.php and sidebar-buddypress.php to wp-content/themes/folder-of-your-templatemonster-theme/

    Twenty Ten Child theme with BP Template Pack styling modifications for reference – https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

    #129440
    @mercime
    Participant

    Solution for your theme is different from that of ray of light theme because your theme has a different HTML structure.

    A. Copy your theme’s header.php file and save as header-buddypress.php

    Open up header-buddypress.php and add the following to the bottom of the file below other code:
    `

    <div class="post" id="post-“>

    `

    Save file.

    #129437
    daveC87
    Member

    The custom Functions I added area as follows: (When I delete the bp-custom.php everything works fine again)

    // Setups up Type=Full avatar pics for BP-post author
    function bp_custompost_author_avatar() {
    global $post;

    if ( function_exists(‘bp_core_fetch_avatar’) ) {
    echo apply_filters( ‘bp_post_author_avatar’, bp_core_fetch_avatar( array( ‘item_id’ => $post->post_author, ‘type’ => ‘full’, ‘width’ => ’70’, ‘height’ => ’70’ ) ) );
    } else if ( function_exists(‘get_avatar’) ) {
    get_avatar();
    }
    }

    // Changes order for member profile menu items
    function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav = 20;
    $bp->bp_nav = 30;
    $bp->bp_nav = 40;
    $bp->bp_nav = 50;
    $bp->bp_nav = 60;
    $bp->bp_nav = 70;
    $bp->bp_nav = 80;

    $bp->bp_nav = false;
    $bp->bp_nav = false;

    }
    add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );*/

    // Setup the navigation
    // Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
    // and http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
    function my_setup_nav() {
    global $bp;

    bp_core_new_nav_item( array(
    ‘name’ => __( ‘my adventure list’, ‘buddypress’ ),
    ‘slug’ => ‘my-adventure-list’,
    ‘position’ => 10,
    ‘screen_function’ => ‘my_adventure_list_link’,
    ‘show_for_displayed_user’ => true,
    ‘default_subnav_slug’ => ‘my-adventure-list’,
    ‘item_css_id’ => ‘my-adventure-list’
    ) );
    }

    add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );

    function my_adventure_list_title() {
    echo ‘My Adventure List’;
    }

    function my_adventure_list_content() {
    ?>


    <?php
    }

    function my_adventure_list_link () {
    add_action( ‘bp_template_title’, ‘my_adventure_list_title’ );
    add_action( ‘bp_template_content’, ‘my_adventure_list_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/my-adventure-list’ ) );
    }

    ?>

    snowlas
    Participant

    I figured it all out. I used Firebug to grab the custom background CSS and placed it into my main style sheet.

    Then for the getting rid of the side bar, I needed to adapt the code to match what in the full width template file compared to the page file. Then I had to make the same adjustment for the bottom in the sidebar file as well.

    Thank you for all the help! I really needed it!

    #129429
    @mercime
    Participant

    Something is wrong. Let’s start with:

    – WP/BP versions?

    – Single WP or WP Multisite?

    – Did you go through the installation wizard after you activated BuddyPress? https://codex.buddypress.org/getting-started/setting-up-a-new-installation/buddypress-1-5-installation-wizard/

    – Did you install/activate BP Template Pack plugin and go through Appearance > BP Compatibility process to make your theme compatible with BuddyPress? https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    – URI to the page you were referring to where it just showed list of titles.

    @mercime
    Participant

    B. Copy the theme’s sidebar.php and save as sidebar-buddypress.php

    Open up sidebar-buddypress.php and at the very top of the file, above other code, add this:
    `
    `

    At the very bottom of the same file, below other code, add this:
    `

    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();
    });
    });

    `

    Save file.

    Upload header-buddypress.php and sidebar-buddypress.php to your server wp-content/themes/wp-creativix/

    @mercime
    Participant

    @ki450751 I see you’ve installed BP Template Pack and have gone through the BP Compatibility process. Click on the Finish button and let’s proceed to the nitty gritty.

    For the WP Creativix theme as seen here https://wordpress.org/extend/themes/wp-creativix

    A. Copy the theme’s header.php and save as header-buddypress.php

    Open up header-buddypress.php, at the very bottom of the file below other code, add this:
    `

    `

    Save file.

    #129418
    @ChrisClayton
    Participant

    Membership – have you seen S2members? https://buddypress.org/community/groups/s2member/

    The name, city ect, you can get that by default in buddypress via your wp-admin – go to buddypress/profile fields.

    The profile stuff you can achieve by modifying the members/single/* files in your theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

    Search – https://buddypress.org/community/groups/bp-better-directories/home/

    To answer your last question – Pretty much. :) The only plugin i couldn’t find was the one that forces buddypress to do my laundry… :P

    #129406
    kailas108
    Member

    I posted the same issue with TheCartPress and they said the issue has to do with how the plugins initialize. I asked them to connect w/BP developers to look into it. I got the same error again today in my Activity stream when I replied to a post during testing.

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/shreemaa/public_html/httpdocs/wordpress/wp-content/themes/shree-maa/activity/comment.php:15) in /home/shreemaa/public_html/httpdocs/wordpress/wp-content/plugins/thecartpress/TheCartPress.class.php on line 781

    #129404
    viktor89
    Member

    – Single wordpress install version 3.3.1
    – BuddyPress version 1.5.3.1
    – The theme is called Torn 1.7.6 by Louis Zuno
    – Of plugins I have:
    Akismet, bbpress, Bowe codes, BWP Google XML Sitemaps, Cubepoints, CubePoints Buddypress Integration, GD bbpress attachments, Maintainence Mode, Sociable, Social login, User role editor, wp e-commerce
    – I tried deactivating all the plugins and changing to the default buddypress theme, but that had no effect

    #129401

    The theme developer has been directed to this post. I thank you for your help and we shall see if this will fix the issues.

    #129400
    @mercime
    Participant

    Sorry, but that is beyond the scope of the assistance I already provided here. Know that most of us who assist here are volunteers. If you are not able to make the basic template changes, you need to find someone or hire someone to do this for you e.g. at http://jobs.wordpress.net and refer them to this post.

    #129398

    I am sorry, but I am having a hard time with finding the items to replace.

    What I am willing to do is give you an admin login for my test site and allow you to edit the template files as you see fit to fix this issue.

    So everyone does not get the test sites admin login details please send me a private message with the following desired details:

    Username (required)
    E-mail (required)
    First Name
    Last Name
    Website
    Password (twice, required)

    #129397
    @mercime
    Participant

    Save files. Upload the 6 BP folders with the revised template files to your server wp-content/themes/ray-of-light/

    If there are any issues, point your theme developer to this topic. I’m sure they can identify faster any missing or superfluous divs around in the post.

    #129396
    Marcella
    Participant

    Great tip dude, many thanks. Wasn’t sure what I was looking for in reply here, but this will do perfectly.

    Better than manually looking into the resources of a page lol.

    #129395
    @mercime
    Participant

    At the bottom of all template files replace:
    `

    `

    with the following for all template files except /registration/register.php:

    `

    `

    with the following for /registration/register.php file:
    `

    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();
    });
    });

    `

    #129394
    @mercime
    Participant

    Based on the HTML structure of the Ray of Light theme, you need to change 16 template files within the 6 BP Template folders transferred to your ray of light theme folder when you ran Appearance > BP Compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    Download those 6 BP folders to your computer hard drive.

    At the top of all the 16 template files per link I gave above, replace:
    `

    `

    with
    `

    `
    #129392
    Paul Wong-Gibbs
    Keymaster

    This is more of a general question rather than a BuddyPress or a WordPress question. I would not worry about 200k. Obviously, the quicker the better. Load some of your favourite sites into http://tools.pingdom.com/fpt/ and see what you find

    #129385

    Please let me know when you are done. Now to test the code, do I simply just copy your corrections of the code on pastbin to my wordpress theme editor?

Viewing 25 results - 16,051 through 16,075 (of 31,077 total)
Skip to toolbar