Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,976 through 6,000 (of 31,072 total)
  • Author
    Search Results
  • #239397
    Steve
    Participant

    Wait. I think I got it to work. I originally put it in the bp-custom file but then switched it to my child theme function file. I think it is working. I will let you know.

    Thanks.

    Ali Chant
    Participant

    Fixed by moving define( ‘BP_ENABLE_MULTIBLOG’, true); from the theme to bp-settings.php
    In case anyone else has this problem.

    #239358
    @mercime
    Participant

    @loralai I looked at the source code and jQuery files are missing. Aside from which, there are two versions of the CSS from BuddyPress, the regular one and the minified one, and the same goes for the JS from BuddyPress, one minified and the other is not.

    Open up your theme’s header.php file and make sure that <?php wp_head(); ?> is placed immediately before the closing </head> in your theme. Remove the hard-coded BuddyPress stylesheets and JavaScript files (if you did hard code those in your theme).

    #239346
    @mercime
    Participant

    @loralai Could you please provide more information about your installation like:
    – WP/BP versions?
    – Where are you hosted?
    – If you change to the WP Default Theme and deactivate all plugins except BuddyPress, can you crop the image then?

    #239339
    rebekahmeuir
    Participant

    thank you @mercime I did try the 2015 theme after deactivating all plugins except BuddyPress, and same issue. Yes I can upload images and see thumbnails with 2015 theme and with my BuddyBoss theme. I still have the problem with profile images not working. I also have a new issue where private messages no longer work from inside BuddyPress. I am hosted with inmotion.

    @mercime
    Participant

    @minglonaire Depends on what theme you’re using? You can always apply the CSS used for the member’s directory list to that of the group member’s list by using browser’s developer tools in Firefox, Chrome, and in latest Internet Explorer.

    #239334
    @mercime
    Participant

    @rebekahmeuir Deactivate plugins except BuddyPress and change to the Twenty Fifteen theme. Then go to admin dashboard and navigate to Media > Add New. Can you upload images and see the thumbnails of the images you uploaded there?

    #239331
    Marcella
    Participant

    I’m also publishing a video series to the site right now about WordPress theme development.

    Hope get some people to signup and join in, share their own tips and tricks.

    Nantre

    #236924
    shanebp
    Moderator

    Got a chance to revisit this…

    Both versions are now components.

    BuddyPress Simple Events in the WP repo.

    BuddyPress Simple Events Pro now has options for an Attending button, list of attendees, and notifications. As well as image support and Group assignment options.

    Re themes: the templates have been tested with included WP themes. If there is an issue with a particular theme, the templates can be overloaded and adjusted as necessary. The layouts are bare-bones, iow. very basic layouts.

    Re comment syncing: unfortunately, comment syncing is broken in BP 2.2.1. See tickets 6306 and 6294

    #239163

    In reply to: Multisite Registration

    bigswp
    Participant

    I solved this with an additional child theme and the “New Blog Templates” plugin.

    #239162
    joesegal
    Participant

    Hello @henrywright thank you! So it wasn’t the plugins. Turns out Divi theme suddenly stopped working with Buddypress.

    I’m installing a new theme now to try.

    #239160
    kphawaii
    Participant

    Hi I changed my theme to back to zerogravity.

    But I think I’ve figured out what was going on. It seems from the settings panel
    Setting>BuddyPress>Pages when I click the view button for the register and activate
    pages I get redirected to my static front page.

    But when I am on another browser and not logged in to wordpress everything seems
    to work correctly.

    #239158
    Marcella
    Participant

    Yeah I think so, I’ve only ever created on theme using rems and the visual gains were pretty obvious.

    I don’t have much reason to use SVG on this theme right now, but maybe in the future in custom templates.

    #239152
    danbp
    Participant

    @mzaidk,

    it’s intended so. The button will only show up when you click inside the textbox.

    Also, it seems you use BP Default theme. Do you know that you can use any other themme since BP 1.7 ?

    Theme Compatibility & Template Files

    #239146
    Henry Wright
    Moderator

    Hi @kphawaii

    Which theme are you using? Plugins?

    #239145
    Henry Wright
    Moderator

    Hi @joesegal

    A couple of things spring to mind that could be the cause of the problem:

    1. The theme you’re using (Try TwentyFifteen)
    2. The plugins you have installed (Try deactivating all plugins after switching theme to see if the problem resolves)
    #239139
    Mathieu Viet
    Moderator

    Hi there,

    There’s a chance your theme hasn’t updated its templates. In order to have the activity dropdowns populated, please check your templates are up to date see https://codex.buddypress.org/themes/activity-dropdown-filters-in-templates/#use-bp_activity_show_filters-within-your-bp-default-child-theme

    danbp
    Participant

    @browserco,

    thank you for your help, but please, don’t give a 4 years old solution without testing it.
    At first, the snippet contains cote errors, and second, it doesn’t work with BP 2.x, as things has changed.

    You can easily modify your template loop by using bp_parse_args function.

    Here a working example (activity-update is commented – uncomment to see the difference)

    You simply have to list what to show. Anything not listed will be ignored, on all activity feeds.

    Add this to bp-custom.php or child theme functions.php

    function my_bp_activities_include_activity_types( $retval ) {
    // only allow the following activity types to be shown
        $retval['action'] = array(
         //   'activity_update',
            'activity_comment',
            'new_blog_post',
            'new_blog_comment',
            'friendship_created',
            'created_group',
        );
     
        return $retval;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_include_activity_types' );
    browserco
    Participant

    Hi Steve, the code above disallows commenting on specific activity types which is not what I wanted. To get rid of those pesky notifications on the activity stream you should use this code in your theme’s functions.php file:

    function filtering_activity_default( $qs ) {
    if ( empty( $qs ) && empty( $_POST ) ) {
    $qs = ‘action=activity_update';
    }
    
    return $qs;
    }
    add_filter( ‘bp_ajax_querystring’, ‘filtering_activity_default’, 999 );

    I got the code from this thread.

    I hope it works out for you!

    #239099
    agalassi0917
    Participant

    Thank you, I’ll see if Elegant Themes has any suggestions

    #239080

    In reply to: Sidebars

    r-a-y
    Keymaster

    You’ll probably want to follow this guide:

    Twenty Thirteen Theme

    The guide is for the twentythirteen theme, but it works as a general guideline with any theme. Replace the references to the twentythirteen theme with your theme and you should be good to go!

    #239079

    In reply to: Sidebars

    Hugo Ashmore
    Participant

    Check the Codex documentation, which will guide you on creating a custom buddypress.php page to mirror your themes page.php and in which you could then remove the sidebar from markup.

    #239077
    Henry Wright
    Moderator

    Mainly the header and footer links/text and the ‘tutorials’ dropdown. The bit where it says “Over a number of videos I will take you through the basics of setting up a solid WordPress theme with…” is big enough I think so perhaps make everything that size.

    Screenshot using FireFox:

    Screenshot

    #239067
    Henry Wright
    Moderator

    Hi @marcella1981

    I really like how you’re doing subtle hover effects throughout, it makes for a rich feeling when navigating around. I also like the flat design style you’ve chosen.

    One thing I struggled to read certain text because it was a bit small. Perhaps make the smallest text 10% bigger by default?

    Overall the theme is very unique looking, I’ve not seen a theme that looks like this. Great job so far!

    #239065
    danbp
    Participant
Viewing 25 results - 5,976 through 6,000 (of 31,072 total)
Skip to toolbar