Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 15,576 through 15,600 (of 69,016 total)
  • Author
    Search Results
  • #197896
    1a-spielwiese
    Participant

    Thank you.

    1st:

    Besides the different “HTML structure for Reddle and Twenty” Thirdteen I made earlier two fundamental mistakes:

    a) I did not recognise, that the comment at the beginning of a child theme must be different, than the comment at the beginning of the parent theme.

    ‘The only required lines are the Theme Name, the Template.

    The Template is the directory name of the parent theme.’

    https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme

    So, within my earlier attempt, step 4th it should have been not:

    Theme Name: Reddle

    Rather:

    Theme Name: Reddle Child

    And it was missing there the line:

    Template: reddle

    Isn’t it?

    b) I did not recognise the instruction:

    Activate the child theme.

    2nd:

    However, now the content of the style.css within my reddle-child folder is:

    /*
     Theme Name:   reddle-child
     Template:     reddle
    */
    
    @import url("../reddle/style.css");
    
    /* =Theme customization starts here
    -------------------------------------------------------------- */
    
    @media screen and (min-width: 600px) {
           body.buddypress #primary {
                  width: 100%;
           }
    }

    Is it correct?

    Besides I activated the reddle-child theme, and deactiviated the reddle-theme. – Nevertheless it still not works.

    3rd:

    ‘Copy over the content of Twenty Twelve’s full-width.php file into the new buddypress.php file.’

    https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/twenty-twelve-theme/

    The ‘Reddle’-theme does not have any full-width.php

    Therefore I took directly the code, which is mentioned there.

    Therefore content of my buddypress.php within my reddle-child-folder is now:

    <?php
    /**
     * BuddyPress: Full-width Page Template, No Sidebar
     *
     * A full-width template for all BuddyPress pages.
     *
     * @ since Reddle 1.0 and BuddyPress 2.1
     */
    
    get_header(); ?>
     
        <div id="primary" class="site-content">
            <div id="content" class="full-width" role="main">
                <?php while ( have_posts() ) : the_post(); ?>
                    <?php get_template_part( 'content', 'page' ); ?>
                <?php endwhile; // end of the loop. ?>
            </div><!-- #content -->
        </div><!-- #primary -->
     
    <?php get_footer(); ?>

    4th:

    But nevertheless it does not work.

    #197882

    In reply to: Styling BuddyPress

    jessicana
    Participant

    I tried all of these codes to remove this but non worked!

    element.style {
        height: 50px;
    }
    #buddypress #whats-new-options {
        overflow: fixed;
    }
    #buddypress form#whats-new-form textarea {
        background: none repeat scroll 0 0 #fff;
        color: #555;
        font-family: inherit;
        font-size: 100%;
        height: 50px;
        padding: 6px;
        width: 100%;
    }
    #buddypress form#whats-new-form #whats-new-content {
        margin-left: 55px;
        margin-bottom: 50px;
        padding: 0 0 20px 20px;
    }
    

    What happens is that when the page loads I see [ post update ] in correct CSS but it becomes hidden under the text area because of the auto overflow; it disappears. When I click on the text area I see what I have provided in the above image! I can’t remove those two arrows beside [post update].

    Thanks!

    #197879
    @mercime
    Participant

    @1a-spielwiese The better guide to use in making a full-width page for the theme you’re using, https://wordpress.org/themes/reddle, is the one for Twenty Twelve at https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/twenty-twelve-theme/

    HTML structure for Reddle and Twenty Twelve are almost identical. However. for Step 4 of the Full-Width instructions, instead of using body.buddypress .site-content in media query, add the following to your child theme’s stylesheet:

    @media screen and (min-width: 600px) {
           body.buddypress #primary {
                  width: 100%;
           }
    }
    #197876
    @mercime
    Participant

    @yogeshojha11 I don’t see any redirection when you click on a Group link per my check. Nor do I see any forums installed at this point. Have you resolved this on your own then? If you do reactivate bbPress forums, change to one of WP default themes and deactivate all plugins except BuddyPress to ensure it’s not a theme/plugin conflict.

    Ben Hansen
    Participant

    i do not believe there is a limit to the number of wordpress or buddypress members imposed by any of the software anyways.

    #197859
    Cartographer
    Participant

    Hi there,

    Digging a bit I found this topic that describes my problem as well.

    Could you please inform me how to solve the issue with the time difference between bbpress and buddy press?

    Buddypress: 2.0.3
    Wordpress: 4.0
    BBPress: 2.5.4
    Theme: Twenty Fourteen

    Regards

    #197738

    Verifying your questions

    I can verify that Account Settings is checked on the BuddyPress Components tab of the BP settings page. Also I can verify that on the Buddypress Settings tab on the BP settings page that ‘Account Deletion’ is checked. I can provide screenshots if that is helpful.

    Here is my process of trying to delete:

    When I am logged into WP as a non-admin user, I see the user menu in the upper right. When rolling over it, I see the full menu and rolling over the settings menu item I see the submenu with the ‘Delete Account’ option. When I click that I go to a page https://[domain]/members/%5Bmember-name%5D/settings/delete-account/. This is the profile page with the Settings/Delete Account Tab already selected, some warning text about deleting an account being irrecoverable, a checkbox ‘I understand the consequences’ and the Delete Account button. When I check the box and click the button, it just returns me back to the delete page with an unchecked checkbox. No action seems to be taken and no warning appears.

    Thanks,
    Michael

    danbp
    Participant

    The problem was that you loaded a small little php error before buddypress…
    The error was in bp-custom.php. This file is called very early, before BP, and if it contains an error it could bring to disfunction or breaking the whole install (depending the code and the error).

    That is also a very good reason to always test custom code locally before using it on a production site. And locally you can also live debug be activating wp_debug in wp-config file.

    A little more about bp-custom.

    1a-spielwiese
    Participant

    It works now. But I have no idea, what could be the reason for now working and not working before.

    As far as I remember, I have only

    — changed the file attributes for the subfolders of the wp-content folder

    — installed “More about me”-plugin

    and

    — solved that problem: https://buddypress.org/support/topic/what-happened-to-these-buddypress-plugins/#post-197321

    #197336
    danbp
    Participant

    Feel free to contribute to BuddyPress Codex.
    Write your stuff and submit a new page content. If it is correcly explained and done, maybe a dev will agree to it and publish your contribution.

    About

    #197335
    danbp
    Participant

    dashboard > settings > buddypress

    Have you enabled Account Settings component and his page ?
    Have you allowed registered members to delete their own accounts ?

    Otherwise, open a new ticket and give any details to reproduce your issue.

    1a-spielwiese
    Participant

    PS.:

    I have no problem to access the BuddyPress Settings within the Dashboard (components, pages, settings).

    I can as well access to “Benutzer/Profilfelder” (users/profile fields), “activity” and “groups” within the Dashboard.

    #197333
    danbp
    Participant

    Under users> Profile fields> Add new field. This is only allowed to site admin, so i guess TOS is not intended to him.

    Adding a TOS link to register page would be more usefull, no ?

    This example snippet will do that (add to child-theme functions.php or bp-custom.php):

    function bpfr_tos_link() {
      echo ' <b><i class="icon-thumbs-up"></i> Terms and conditions</b>';
    	
    }
    add_action( 'bp_before_register_page', 'bpfr_tos_link' );

    Another solution here.

    #197332
    1a-spielwiese
    Participant

    Perfect!

    1st:

    “When it is written // hacks and mods will go here, you add hacks and mods at that place, and NOT above or below or outside of the <?php …. ?> tags !”

    It would be nice to mention there within the description of the code, that

    <?php

    marks the beginning

    and that

    ?>

    marks the end of the file.

    2nd:

    “great lack of understanding”

    It would be nice as well to place somewhere on the start page of http://buddypress.org a highlighted link to a section like “You want not only to use BuddyPress as it is, but also to change it’s appearance and code. HERE you find the most basic information regarding the structure and functiong of BuddyPress.”

    #197330
    danbp
    Participant
    danbp
    Participant

    No BuddyPress doesn’t have such a feature. You have to develop it yourself or to hire a dev.
    If you can give a working example of what you want to achieve, it would be easier to guide you.

    #197321
    1a-spielwiese
    Participant

    1st:

    Yes, I did not inserting at the beginning of the bp-custom.php:

    <?php
    // hacks and mods will go here
    ?>

    I would like to suggest to set there (and at all similar places) links from “bp-costum.php” to https://codex.buddypress.org/themes/bp-custom-php/

    2nd:

    But even after inserting the three above mentioned lines it does not work.

    3rd:

    With that code I had yesterday the same problem: It worked with inserting the code into the functions.php of my theme folder, but it works not with inserting it – as suggusted there – to bp-custom.php.

    4th:

    a) Currently the name of the file is:

    bp-custom.php

    b) It is placed within the folder wp-content/plugins (not inside the buddypress folder; rather on the same level as the buddypress folder).

    c) The entire content of the file is:

    
    <?php
    // hacks and mods will go here
    ?>
    
    function bbg_change_profile_tab_order() {
    global $bp;
    
    $bp->bp_nav['profile']['position'] = 10;
    $bp->bp_nav['activity']['position'] = 20;
    $bp->bp_nav['blogs']['position'] = 30;
    $bp->bp_nav['friends']['position'] = 40;
    $bp->bp_nav['messages']['position'] = 50;
    $bp->bp_nav['groups']['position'] = 60;
    $bp->bp_nav['settings']['position'] = 70;
    }
    add_action('bp_setup_nav', 'bbg_change_profile_tab_order', 999 );
    
    /**
     * Change BuddyPress default Members landing tab.
     */
    define('BP_DEFAULT_COMPONENT', 'profile' );

    d) I changed the wp-config.php and the functions.php back to their old versions. But it still does not work:

    The code of the bp-custom.php appears above the header of blog:

    http://1a-spielwiese.de/members/balletttaenzerinnenkrzbg36/

    and the “Activity”-Tab and it’s content is displayed at first.

    Iryna_B
    Participant

    Yes, I’ve seen the calculator, but that’s not exactly what I am looking for. I want a feature in Buddypress profile fields, that when a woman puts her child’s age or pregnancy week, she could see week by week development information on her profile page. Many baby web-sites have this feature, I was just wondering if BP has something similar.

    #197298

    In reply to: Profile page

    Henry Wright
    Moderator

    In that case check out the BP template hierarchy article:

    Template Hierarchy

    Zane
    Participant

    Which platform does mention notifications? I do see mentions in the activity log and buddypress does have a ton of notification functionality built in.

    Zane
    Participant

    Hey Dan,

    The number of emails is random.

    I disabled buddypress and the emails still sent so I am pretty sure the issue is on the bbpress side. I thought I would check here to see if there was a known issue.

    Here is a section of my email log. Random times and counts. No idea what is triggering these. Each message is a mention notification.

    September 17, 2014 @ 4:13 pm [View Content] (id:304)
    September 17, 2014 @ 4:13 pm [View Content] (id:303)
    September 17, 2014 @ 4:13 pm [View Content] (id:302)
    September 17, 2014 @ 4:13 pm [View Content] (id:301)
    September 17, 2014 @ 4:13 pm [View Content] (id:300)
    September 17, 2014 @ 4:13 pm [View Content] (id:299)
    September 17, 2014 @ 4:10 pm [View Content] (id:298)
    September 17, 2014 @ 4:09 pm [View Content] (id:297)
    September 17, 2014 @ 4:09 pm [View Content] (id:296)
    September 17, 2014 @ 4:09 pm [View Content] (id:295)
    September 17, 2014 @ 3:01 pm [View Content] (id:294)
    September 17, 2014 @ 2:49 pm [View Content] (id:293)
    September 17, 2014 @ 2:49 pm [View Content] (id:292)
    September 17, 2014 @ 2:49 pm [View Content] (id:291)
    September 17, 2014 @ 1:12 pm [View Content] (id:290)
    September 17, 2014 @ 1:12 pm [View Content] (id:289)
    September 17, 2014 @ 1:11 pm [View Content] (id:288)
    September 17, 2014 @ 1:03 pm [View Content] (id:287)
    September 17, 2014 @ 1:02 pm [View Content] (id:286)
    September 17, 2014 @ 12:56 pm [View Content] (id:285)
    September 17, 2014 @ 12:56 pm [View Content] (id:284)
    September 17, 2014 @ 12:56 pm [View Content] (id:283)
    September 17, 2014 @ 12:56 pm [View Content] (id:282)
    September 17, 2014 @ 12:56 pm [View Content] (id:281)
    September 17, 2014 @ 12:55 pm [View Content] (id:280)
    September 17, 2014 @ 12:55 pm [View Content] (id:279)
    September 17, 2014 @ 12:55 pm [View Content] (id:278)
    September 17, 2014 @ 12:54 pm [View Content] (id:277)
    September 17, 2014 @ 12:54 pm [View Content] (id:276)
    September 17, 2014 @ 11:00 am [View Content] (id:275)
    September 17, 2014 @ 11:00 am [View Content] (id:274)
    September 17, 2014 @ 11:00 am [View Content] (id:273)
    September 17, 2014 @ 11:00 am [View Content] (id:272)
    September 17, 2014 @ 11:00 am [View Content] (id:271)
    September 17, 2014 @ 11:00 am [View Content] (id:270)
    September 17, 2014 @ 11:00 am [View Content] (id:269)
    September 17, 2014 @ 11:00 am [View Content] (id:268)
    September 17, 2014 @ 11:00 am [View Content] (id:267)
    September 17, 2014 @ 10:58 am [View Content] (id:266)

    #197289
    danbp
    Participant

    1 & 2) xprofile component let you add all fields you need – styling is theme related and on your side css work.
    3) buddydrive
    4) field values are clickable, this let the user find similar values on others profile.
    5) buddypress default data

    #197288
    danbp
    Participant

    Did you something wrong with bp-custom.php ?

    #197287

    In reply to: Profile page

    Henry Wright
    Moderator

    Have you installed the theme?

    Frisco for BuddyPress

    #197283
    mcpeanut
    Participant

    @danbp @henrywright i think i have found a solution! took alot of hours searching for this, but i have found some code (function) that adds a new button to each activity allowing you to toggle the comments to collapse and expand throughout buddypress.

    I am going to spend some time testing this tonight and will share the fix later if i dont run into any problems with it, maybe this could be made into a plugin? , obviously the credit for this is not mine and belongs to the guy who figured this out, i have just found the code:) and altered it a little, i have it working now and all seems fine i will try it out on a few different themes first.

Viewing 25 results - 15,576 through 15,600 (of 69,016 total)
Skip to toolbar