Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 32,526 through 32,550 (of 94,540 total)
  • Author
    Search Results
  • #163385
    Hugo Ashmore
    Participant

    Glad it worked.
    One thing to bear in mind, if these changes are in the parent theme you may lose the changes if the theme gets updated so it might be wise to try creating a simple child theme with basic required files plus the two new BP ones to ensure your changes are preserved.

    Marking as resolved.

    #163384

    Hello, after installing the buddypress plugin on my wordpress site, I began to have a lot of CSS errors when I use the CSS validator. I also ran the validator on buddypress.org and it also has lots of errors. Is there a way to fix this? I am doing something wrong?
    Thank you!
    validator:
    http://jigsaw.w3.org/css-validator/

    my site:
    http://hola-china.net/genesis/

    #163382
    Zion Oyemade
    Participant

    Dear Hugo,
    You have been a blessing. I can never thank you enough. I followed you steps and with little adjustments. The members page is working.
    This is how he new buddypress.php page looks like now.

    <?php
    get_header(); 
    
        $no_feat_class = '';
        if( !options::logic( 'blog_post' , 'enb_featured' ) || !has_post_thumbnail( $post -> ID ) ){
            $no_feat_class = ' no_feat ';
        }
    
        $post_id = $post -> ID;
                        
          
        /*---------------------*/
        $post_format = get_post_format( $post -> ID );
        if(!strlen($post_format)){ $post_format = 'standard';}
    ?>
    
    <section id="main">
    
        <div class="main-container">  
            <div class="row">
                <div class="twelve columns main-container-wrapper">      
                    <?php
                        while( have_posts () ){ 
                            the_post();
                          
                                get_template_part( 'content', 'page' ); 
                                  
                        } /*EOF while( have_posts () ) */
                    ?>
                    <?php
                        $resizer = new LBPageResizer('page');
                        $resizer -> render_frontend();
                    ?>
                </div>
            </div> 
        </div>
    </section>    
     
    <?php get_footer(); ?>

    Once again Hugo. thanks for the assistance God bless you.

    #163381
    Famous
    Participant

    1. Which version of WordPress are you running? latest

    2. Did you install WordPress as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? been upgrading to latest

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. wordpress works fine

    6. Which version of BP are you running? latest

    7. Did you upgraded from a previous version of BP? If so, from which version? been upgrading to latest

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? none

    9. Are you using the standard BuddyPress themes or customized themes? using 2012

    10. Have you modified the core files in any way? no

    11. Do you have any custom functions in bp-custom.php? no

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Version 2.3.1

    13. Please provide a list of any errors in your server’s log files. TypeError: jQuery.easing[jQuery.easing.def] is not a function
    /wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.js?ver=1.7.1
    Line 1455

    14. Which company provides your hosting? godaddy

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? lamp

    #163380

    In reply to: Notices don't work

    bp-help
    Participant

    @famous
    https://buddypress.org/support/topic/when-asking-for-support-2/
    Same applies here! You need to supply your info as it instructs in the above link on every support topic you open because it is isolated to your individual setup! Otherwise it is just a pure guess which usually doesn’t fix the issue.

    #163379
    bp-help
    Participant

    @famous
    https://buddypress.org/support/topic/when-asking-for-support-2/
    You need to supply your info as it instructs in the above link on every support topic you open because it is isolated to your individual setup! Otherwise it is just a pure guess which usually doesn’t fix the issue.

    Walid
    Participant

    Thanks so much for your help 🙂 also, I think about suggesting this as a feature in buddypress trac if that is available, it will be so much better adding all those kind of lists fields through admin panel. I will add the cities list for now, thank you again 🙂

    Walid
    Participant

    Thank you so much guys but I think it will still be time consuming to add each mark before and after every city name ( or is there a way to add them automatically too? )

    I think adding a feature like that to buddypress core would be fantastic, like an option to add a list of names instead of one by one.

    #163363
    cybohmoob
    Participant

    I’m wondering how I could change the profile link format from BuddyPress /member/user/ format back to the old wordpress /profile/?viewuser=2?

    I ask because I am using an older custom profile plugin that uses the old Linking system. It’s much more powerful than the BuddyPress profile system. It would be awesome if I could change it in BuddyPress so i can still keep the ALL the BuddyPress features but Harness the power of the plugins profile plugin.

    Can someone point me in the right direction? Which function to modify?

    #163358
    pimpanoob
    Participant

    Now this sounds like a stupid question…but i cant find the trash… lol
    Where is it?
    Thanks very much!

    #163357
    valuser
    Participant

    Some time ago a contributor kindly provided a walled garden function that disabled access to buddypress pages by non-logged in users. (i think it was @aces)

    `function sh_walled_garden()
    {
    global $bp;
    if( bp_is_register_page() || bp_is_activation_page())
    return;
    if( ! bp_is_blog_page() && ! is_user_logged_in() )
    bp_core_redirect( bp_get_signup_page() );
    }
    add_action( ‘wp_loaded’, ‘sh_walled_garden’ );’

    However with bp 1.71 and bbpress 2.3.1 pages like forum-topics, and say, forums/forum/group-forums/ are still accessible by non-logged in users.

    Any idea on how to extend the functionality of the walled garden function to block access these bbpress pages by non-logged in users ?

    #163356
    aces
    Participant

    When you delete a page it goes into trash but the permalink is preserved. To recover the name you need to delete the trash…

    #163355
    pimpanoob
    Participant

    Oh really?! Cool 🙂
    Thanks a lot! I do appreciate that!

    My problem however now is, that I had created a page called register – thought it was the wrong thing to do and deleted it again.
    I have just tried to create another, but this is no called register-2 at the end.I can edit that part of the permalink to register. But when I click on save it goes back to register-2.

    And I guess that this won’t work.

    Would be great if you could help me here as well.

    Thanks again,
    Fabian

    #163354
    kkradel
    Participant

    I’m seeing similar behavior, using Tetris theme.

    #163353
    kkradel
    Participant

    One has to be logged in, and have a notification message waiting for them, to be able to see it.

    I haven’t been able to see any scripting errors, but next time the orange box appears I will try and check that out.

    I’ve also noticed a similar thing happen here on the buddypress.org site, when I try to search the forms a huge red box extends down over the header and over the first search result.

    #163352
    Hugo Ashmore
    Participant

    Afraid this section is not really standard WP:

    $meta = meta::get_meta( $post -> ID, 'settings' );
     $meta_enb = options::logic( 'blog_post' , 'meta' );

    This is a repeat of the earlier suggestion just in case it wasn’t followed quite fully?

    To test things try copying that file, rename it buddypress.php, locate in your theme root

    remove those two lines above and replace with:
    <?php get_template_part( 'content', 'page' ); ?>

    Then from the twentytwelve theme copy content-page.php to your theme root and see if that renders.

    More than that it’s going to be hard to help with.

    #163350
    Hugo Ashmore
    Participant

    And that is exactly what it should be ‘Without function’ or put another way empty with only a title set. You then go to the BP settings and select that page to associate.

    #163348
    linkinp
    Participant

    Thank you for responding.
    What is confusing is that I have two local installations of WordPress and two local websites.
    In one of the installation’s WordPress Admin I can see Forums panel in Buddypress config, on the other one I cannot.

    Anyway the only reason I wanted to access Forums Panel was to be able to enable Site-wide Forums.

    With no Forums panel how do I do it ?

    on the Forums panel I had two options Forums for group and New! Site Wide Forums.

    #163346
    Donald McIntyre
    Participant

    Thx @karmatosed its the first time I install Buddypress for this theme no previous experience for this theme (I did it for the theme compatibility of 1.7).

    I don’t know about the site rendering, when I see the files using ftp I see:

    page.php and single.php, and other templates by the format page-xxxx.php

    Thank you, D.

    pimpanoob
    Participant

    Hi there,

    I use the latest buddypress version with wordpress templates of rockettheme.com

    Works well, except that wordpress tells me to associate “register wordpress page” with “register buddypress page” which can be done in admin–>settings–>buddypress–>pages. However there is no “register page”. If I create one (admin–>pages) it has got the name register but without function.

    Any help for me?

    Thanks a lot,
    Fabian

    sem101
    Participant

    Hi, I’m using WP 3.5.1 and BP 1.7.1. When member is NOT logged in, the toolbar shows fine. However, it looks like this…

    LEFT: WP Logo | Log In | Register
    RIGHT: Search Icon

    How can I get the RIGHT side of toolbar to show the “Anonymous” dropdown menu like on the Buddypress.org website?

    Thanks

    #163342
    Zion Oyemade
    Participant

    Dear Hugo,
    Thank you so much for your assisitance. I have not gotten a reply from the theme’s author. It really fustrating. I really will appreciate anyone’s help in this regard. below is my page.php content.

    <?php
    get_header(); 
    
        $no_feat_class = '';
        if( !options::logic( 'blog_post' , 'enb_featured' ) || !has_post_thumbnail( $post -> ID ) ){
            $no_feat_class = ' no_feat ';
        }
    
        $post_id = $post -> ID;
                        
          
        /*---------------------*/
        $post_format = get_post_format( $post -> ID );
        if(!strlen($post_format)){ $post_format = 'standard';}
    ?>
    
    <section id="main">
    
        <div class="main-container">  
            <div class="row">
                <div class="twelve columns main-container-wrapper">      
                    <?php
                        while( have_posts () ){ 
                            the_post();
                            $meta = meta::get_meta( $post -> ID, 'settings' );
                            $meta_enb = options::logic( 'blog_post' , 'meta' );             
                        } /*EOF while( have_posts () ) */
                    ?>
                    <?php
                        $resizer = new LBPageResizer('page');
                        $resizer -> render_frontend();
                    ?>
                </div>
            </div> 
        </div>
    </section>    
     
    <?php get_footer(); ?>
    
    #163341
    hallsy
    Participant

    ok here is a pastebin to my page.php code which is the same as my newly copied buddypress.php

    From line 33 it is my content-page.php code

    I hope this is what you mean @hnla if it isn’t i apologise as i am very much a total beginner..

    http://pastebin.com/a7d93eQA

    #163329
    hallsy
    Participant

    right i have copied the page.php and renamed it buddypress.php but i dont understand what you mean by:

    get_template_part call for content-page with the actual content in that file

    I can see that part but i dont know what to add

    <?php get_template_part( 'content', 'page' ); ?>

Viewing 25 results - 32,526 through 32,550 (of 94,540 total)
Skip to toolbar