Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 16,301 through 16,325 (of 31,073 total)
  • Author
    Search Results
  • #128315

    No. I installed the same theme and plugins on another domain and it works there… I already manually reinstalled buddypress and bbpress. And I pressed the reinstall wordpress button on the dashboard updates…. This is beyond my knowledge.

    #128303
    nilssvz
    Member

    whoa.

    this is amazing.
    the design is just….the best.
    you even made an app?

    whoa.
    and also, do you take buddypress theme requests for money?

    #128300
    @mercime
    Participant

    Site url? What is your hosting plan at 3ix.com – shared/vps/cloud? WP/BP versions? What plugins were activated in your installation when you activated BP? What WP theme was activated when you installed BP?

    #128298
    @mercime
    Participant

    Sorry, I cannot read the language and can’t even tell where the categories are. What specific links are BuddyPress pages? If it’s an issue with categories, you should contact theme developer.

    #128297
    @mercime
    Participant

    That was sometime BP 1.2+ version, it’s not anywhere in BP 1.5 default theme. If I recall well, a tip appeared when you clicked on the question mark or something :-)

    @mercime
    Participant

    https://codex.buddypress.org/troubleshooting/navigation-links-return-404-errors/
    – WP/BP versions?
    – Are you on Windows or Linux server?
    – Have you changed to bp-default theme?
    – Have you deactivated plugins except BuddyPress to isolate issue/s?

    #128286
    twiceb
    Member

    btw, I am not using bp-default, having a theme (unspoken) for main blog, for other blog using a child theme of the main theme. for bp i am using bp-template-pack.
    i tries buddypress with all plugins deactivated, no go….

    #128272
    @mercime
    Participant

    – What’s in your .htaccess file?
    – Site URL?
    – Local notebook server – WAMP, MAMP, XAMPP?
    – live site server – Linux/Windows?
    – Changed to bp-default theme and deactivated all plugins except BuddyPress?

    #128271
    @mercime
    Participant

    Why not? :-) Not all posts at WP.org forums tagged buddypress have issues specific to BP. In many cases, WP.org moderators have referrred posters to our forums here. In some cases, I’ve referred posters here to multisite forums or third-party plugin and theme forums in WP.org when appropriate. And many plugin and theme devs have their own forums as well.

    If your post is unanswered after 24 hours, feel free to bump your topic. 99.9% of those who help out here are volunteers/developers living in different time zones.

    #128252
    nahejd
    Member

    if it doesn’t exist it would be more than useful to have a tool or at least “a way”allowing us to have members ready themes, I get members some will come from ning they all ask me how to set their banners and background colors I mean, no one will have a community with such stuff happening even though it’s a pleasure to install BP it’s *really* easy and intuitive, people will stick with paid services.

    #128248

    I didn’t create a child theme

    #128246
    Sharkeyes
    Member

    Ahh yeah that just ALMOST did it. I will have to revert back to the way it was to make it usable for now… but its so close. Ill try contacting them, I searched their forums but with no luck on a solution.

    Thanks for the help though!

    #128245
    @mercime
    Participant

    If you upgraded to iFeature Pro, then you should ask the theme dev about this matter as we have no access to the premium theme. Again, you can refer to post above for reference. Good luck.

    #128244
    @mercime
    Participant

    http://yoast.com/articles/wordpress-seo/#bread-crumbs

    If you created a child theme of bp-default, copy over two files from bp-default theme into your child theme folder:
    https://buddypress.trac.wordpress.org/browser/tags/1.5.3.1/bp-themes/bp-default/single.php (add after line 10)
    https://buddypress.trac.wordpress.org/browser/tags/1.5.3.1/bp-themes/bp-default/page.php (add after line 10)

    #128243
    Sharkeyes
    Member

    Wonderful I will try this right now. I actually ended up upgrading to iFeature Pro but Id imagine the process should be the same. I’ll give it a shot in a few minutes and let you know if I had any success.

    #128241
    @mercime
    Participant

    Maybe I misunderstood, but there’s an equivalent hook for member header `bp_before_member_header_meta` in groups header bp_before_group_header_meta so you don’t have to filter `bp_get_group_description`

    #128236
    @mercime
    Participant

    This means that you haven’t completed the compatibility process specifically Step 3.

    In your case, based on the free iFeature theme in WordPress theme repo, you will have to change 16 BP template files within the 6 BP folders transferred to your iFeature theme folder in your server during the compatibility process. Therefore the following instruction is for that free iFeature theme:

    Download the 6 BP folders from your theme’s folder to your computer hard drive.

    Starting with /activity/index.php, open up with text editor and at the very top of this file and the remaining 15 files, replace:
    `

    `

    with:
    `<?php
    global $options, $themeslug, $post; // call globals
    $page_section_order = get_post_meta($post->ID, ‘page_section_order’ , true);
    get_header();
    ?>

    get($themeslug.’_disable_breadcrumbs’) == “1”)) { chimps_breadcrumbs(); }?>
    ?php chimps_before_page_content(); ?>

    `

    At the very bottom of the all 16 files files replace:
    `

    `

    with the following (except for register.php):
    `

    `

    with the following for register.php
    `

    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 all files and upload to your theme’s folder in server, following the directory structure strictly.

    If this doesn’t work, you can request theme author to take a look at this post and show you the correct placements.

    #128235
    Sharkeyes
    Member

    I managed to figure out how to remove the sidebar from Buddypress all together (so that it doesnt display at the bottom of the pages) but still can’t seem to get it to display on the side. I believe I just need to modify Buddypress so that it’s content isn’t so wide. I’ll keep plugging away at it.

    username_
    Member

    after evaluating my options I felt that it had to do with something in the functions.php file. I deleted most everything in it and noticed the activity header now appeared. SO I went through and then spotted this function and filter. Not sure why it was there in the first place. But after removing these filters the activity-header got populated.

    `function remove_activity_meta( $content ) {
    return ”;
    }

    add_filter( ‘bp_activity_permalink’, ‘remove_activity_meta’ );

    add_filter( ‘bp_activity_delete_link’, ‘remove_activity_meta’ );
    add_filter( ‘bp_activity_time_since’, ‘remove_activity_meta’ );`

    username_
    Member

    1.2.6 I believe. It was working on that version. Yes I am inside the activity loop specifically the entry.php file. Also it works with the bp-deafult theme. I even copied everything from your entry.php file into mine and still no go. I have not found anything else yet but I am looking into it.

    #128223
    @mercime
    Participant

    `TEMPLATEPATH` and `STYLESHEETPATH` (for child themes) have been deprecated in favor of `template_directory_uri` (for files you want for parent theme) and `stylesheet_directory_uri `(for files you need in your child theme folder) respectively.

    e.g. you added localization for your child theme, so one of the lines you’ll be adding to your child theme’s functions.php in the past would have been
    `load_theme_textdomain( ‘mytextdomain’, STYLESHEETPATH . ‘/languages’ );`

    Now should be
    `load_theme_textdomain( ‘mytextdomain’, get_stylesheet_directory() . ‘/languages’ );`

    Paul Wong-Gibbs
    Keymaster

    It ought to be working. Since you refer to your activity header, I assume it’s being used inside an activity loop. What version of BP did you upgrade from?

    #128216
    baiaz
    Member

    Hmmm Now I have installet det buddypresse plugin at my nettwork admin at my multisite.
    Before I do anything else:
    I got this message:
    https://skitch.com/baiaz/g3hww/plugins-network-admin-wordpress
    What does it mean and what do I have to do next?

    I have made a site in my wordpress multisite where I want to have the buddypress installed.
    Should I go to my new site and sett the buddypress as the theme?

    #128215
    4ella
    Participant

    Does someone has some experience with roles ?

    #128214
    ben_allison
    Member

    Anyone?

    TEMPLATEPATH is the same.

Viewing 25 results - 16,301 through 16,325 (of 31,073 total)
Skip to toolbar