Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,401 through 16,425 (of 31,071 total)
  • Author
    Search Results
  • #127716

    Like @mercime alluded to, it’s safe to assume the integration issues are in your theme.

    #127709
    @mercime
    Participant

    This is something you have to bring up with the theme developer who also created theme’s own BP compatible template files. Have you checked Suffusion forums? If you encountered this problem, in all probability others have reported it in those forums as well and could already have found some resolution.

    #127698
    HachiHazuki
    Member

    It is a new installation, without plugins, just the Score theme (http://themeforest.net/item/score-review-wordpress-buddypress-theme/703127) wich has been last updated few days ago and without bugs.

    Do we have a BP 1.6 Release Date?

    isbul
    Member

    I do not like lettering and is not needed. The theme is “BP Columns” not exceeding three column buddypress themes.

    #127695
    @mercime
    Participant

    == I remember when installing forums in BuddyPress was a breeze… ==
    The internal bbPress installation, Forums for Groups, is still a breeze. Group Forums are fully integrated with BP 1.5.2. While Sitewide Forums, bbPress 2.0.2, is compatible with BP 1.5.2, full integration will come in BP 1.6 possibly with script to migrate Group Forums to the Sitewide Foruns.

    As to the errors you are encountering, are these on a relatively new installation? If you change to bp-default theme and deactivate all plugins except BP and bbPress, are the errors still showing up? If so, you might want to report it in Trac. https://buddypress.trac.wordpress.org/

    #127694

    ok, thank you!!! But I don’t know how to modify bp-default to look like redline…..I was trying to follow the instructions for the Buddypress theme pack added to a WordPress theme……where can I find the instructions for modifying bp-default?

    @mercime
    Participant

    @isbul do you mean that you want to hide the date when the group was created? Are you using the bp-default theme or child theme of bp-default?

    Will
    Member

    @socialnetworklearner

    You’ll need to delete lines 1143 to 1618 from style.css.

    It starts with “ @media only screen and (min-width: 768px) and (max-width: 991px)”

    Paul Wong-Gibbs
    Keymaster

    BuddyPress doesn’t ship with a mobile theme?

    #127681
    Memfis
    Member

    Hey Chris thank you for the prompt response. So I found this code:

    if ( !is_admin() ) {
    // Register buttons for the relevant component templates
    // Friends button
    if ( bp_is_active( ‘friends’ ) )
    add_action( ‘bp_member_header_actions’, ‘bp_add_friend_button’ );

    // Activity button
    if ( bp_is_active( ‘activity’ ) )
    add_action( ‘bp_member_header_actions’, ‘bp_send_public_message_button’ );

    // Messages button
    if ( bp_is_active( ‘messages’ ) )
    add_action( ‘bp_member_header_actions’, ‘bp_send_private_message_button’ );

    // Group buttons
    if ( bp_is_active( ‘groups’ ) ) {
    add_action( ‘bp_group_header_actions’, ‘bp_group_join_button’ );
    add_action( ‘bp_group_header_actions’, ‘bp_group_new_topic_button’ );
    add_action( ‘bp_directory_groups_actions’, ‘bp_group_join_button’ );
    }

    // Blog button
    if ( bp_is_active( ‘blogs’ ) )
    add_action( ‘bp_directory_blogs_actions’, ‘bp_blogs_visit_blog_button’ );
    }
    }

    and added it to the bottom of my themes functions.php. I had to remove the code though because it crashed the website :

    #127680
    StarRider20
    Member

    Hi Modemlooper, sorry to hear you’ve had a hard time. Your Widget theme is brilliant. I found a bug practically the same day you wrote your announcement. I love your theme and I really want to use it. Can you let me know if you are going to fix that last bug, because I need to know what to do, whether to go ahead with that or find a new one. I’m really hoping to be able to use your Widget Theme, which I love.

    Linda

    #127678
    @ChrisClayton
    Participant

    @Memfis – I notice your using a custom theme (rather than a childtheme of bp-default)

    Have you registered the buttons in your functions.php file?
    Have a peek through the bp-default functions.php file for the code and copy it into yours.

    It’ll be something like
    `add_action( ‘bp_member_header_actions’, ‘bp_add_friend_button’ );`

    #127672

    Unless you are using the BP Default theme you are going to need to mod the plugin template(s) file to match your theme page structure (page.php or index.php). Like you may have done with the BP Template Pack Plugin, if that is what you are using.

    #127668

    No.

    You need to mod the temple so it has the same header, sidebar and footer as your theme (redline)

    ‘php
    /**
    * Template: Page.php
    *
    * @package RedLine
    * @subpackage Template
    */
    get_header();
    ?>

    [Buddypress Pack template code (remove header, sidebar & footer calls]

    php get_sidebar(); ?>
    php get_footer(); ?>`

    The template pack is good for theme developers but its not an easy fix. It will require lots of custom coding and css to look and work right. I think you would be much happier modding the default BP theme. It would only take a little css to get the look of the Redline WP theme.

    r-a-y
    Keymaster

    This is a template issue.

    Open up your /wp-content/themes/YOUR-THEME/groups/single/forum/topic.php template.

    Look for this line:
    ` `

    And delete it.

    Also delete the corresponding “ line.

    #127649
    brayjason
    Participant

    Okay, I have totally enabled forums for each of my groups I’m testing and I still cannot post a topic no matter what I try or do. I try deactivating all plug ins, using the default theme, uninstalling and reinstalling buddy press and the forums. I have no idea what’s going on :( my site is collegeofcatch.org

    #127642

    In reply to: Add Friend FATAL ERROR

    MikeTime360
    Member

    I am using Sufussion as the theme.

    #127637
    @mercime
    Participant

    It might be a case of a theme that needs to be updated. Change to bp-default theme, clear cache, and check if issue is corrected.

    #127579
    r-a-y
    Keymaster

    There’s two ways you can do this.

    1) Filter the avatar output

    Try adding the following to your theme’s functions.php.

    Disclaimer: Untested!

    `
    add_filter( ‘bp_core_avatar_title’, ‘__return_false’ );
    add_filter( ‘bp_core_avatar_alt’, ‘__return_false’ );
    `

    2) Use javascript
    You can also dynamically remove the title and alt text via javascript if desired.

    #127575
    r-a-y
    Keymaster

    Switch to the bp-default theme to see if you get the 404 error with PMs.

    #127562

    In reply to: Add Friend FATAL ERROR

    @mercime
    Participant

    What theme are you using? Try changing to bp-default theme and see if issue is corrected.

    #127556
    Brian Bowman
    Participant

    Are you able to sign-in to the backend of your site? As in, http://www.yoursitename/wp-login.php

    If you can get in, you should be able to activate your Buddypress theme. Hope that helps.

    #127538
    Tristan
    Participant

    I recently changed my theme, but was experiencing the same problem on my previous theme BP Columns 1.5.3. Below is what I’m currently running:

    Wordpress 3.3.1

    Theme:
    Frisco for BuddyPress 1.5.04

    Plugins:
    BuddyPress 1.5.2
    bbPress 2.0.2
    BP-NotificationWidget 1.4
    BP-Registration-Options 3.0.3
    BuddyPress Moderation 0.1.6
    Buddypress Sitewide activity widget 1.1.3.3
    Calendar 1.3.1
    Email Users 3.4.1
    File Gallery 1.7.3
    oEmbed for BuddyPress 0.52
    U BuddyPress Forum Attachment 1.2.1
    Visual Form Builder 1.9.1
    WP-FB-AutoConnect 2.2.0
    WP-Filebase 0.2.9.10
    WP-Polls 2.62
    WP Survey And Quiz Tool 2.8.3

    #127519
    Paul Wong-Gibbs
    Keymaster

    What theme, and other plugins, are you running?

    #127501
    @mercime
    Participant

    Do not make changes in bp-default.css as it would be overwritten when you upgrade BuddyPress.

    Build a chlid theme of bp-default theme instead – https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

Viewing 25 results - 16,401 through 16,425 (of 31,071 total)
Skip to toolbar