Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 20,201 through 20,225 (of 73,986 total)
  • Author
    Search Results
  • #207753

    In reply to: How to @ mention

    m@rk
    Participant

    Hi again,

    you may follow these summarized steps to enable suggestions for @-mentions in the groups component, furthermore for group forums:

    https://buddypress.trac.wordpress.org/ticket/5934#comment:description

    Assume all will make it to the next release.

    Best regards.

    #207752
    m@rk
    Participant
    r-a-y
    Keymaster

    So how do you get the themeing for buddypress if the wordpress theme does not support it?

    Since you’ve been using BP Template Pack, you need to remove it. Read this article:
    https://codex.buddypress.org/themes/theme-compatibility-1-7/bp-17-upgrading-template-packed-themes/

    You might need to restyle a few things in your CSS to make it gel with your theme though.

    Tom
    Participant

    @r-a-y Yes I did!
    This 2.1.1 Update was supose to fix this issue, but it has not. Im still stuck with a broken slider.

    When I disable the BuddyPress Template Pack, it works again, This seems like its no longer supported, So how do you get the themeing for buddypress if the wordpress theme does not support it?

    #207716
    barchiola
    Participant

    got the answer in another thread.

    we have a theme and buddypress is an add-on to that theme so there wasn’t a need to have buddypress as our theme or to create a buddypress child theme.

    what we needed to do was to make changes to the css elements that controlled the elements of buddypress that were active in our theme.

    it was pointed out to me to simply copy the css lines from buddypress.min.css (as displayed in View Element, a firefox feature) into the Style.CSS file in our existing child theme style.css file.

    after a few tries to get the syntax correct I’m now making changes to the buddypress elements that we have active with our existing wordpress theme.

    thanks for the help Hugo.

    #207715
    shanebp
    Moderator

    You should submit an enhancement ticket on trac.

    #207711
    barchiola
    Participant

    don’t know, i refresh after every css file update so not sure why it wouldn’t take but it’s good now and we’re making progress again!
    our buddypress pages are finally starting to look like the rest of the site.
    thank you very much
    bart

    #207709

    In reply to: How to @ mention

    m@rk
    Participant

    Hi Will,

    as far as I see the patches discussed above are included in v2.1.1 completely.

    Looks like you can enable suggestions for @-mentions in the groups component by just adding a condition bp_is_groups_component() in bp-activity/bp-activity-functions.php:62 – changing it to:

    ( bp_is_activity_component() || bp_is_groups_component() || bp_is_blog_page() && is_singular() && comments_open() || is_admin() );

    I’m also wondering why that isn’t default and suggest this as improvement: https://buddypress.org/support/topic/enabling-suggestions-for-mentions-in-groups-component/

    #207705
    bp-help
    Participant

    @masten7
    To post content a user will be required to be logged in out of the box. For the media part you can use one of the following plugins:
    https://wordpress.org/plugins/buddypress-media/
    or:
    https://wordpress.org/plugins/buddypress-activity-plus/
    To force the user to create a profile before interaction with the site you can use this plugin:
    https://wordpress.org/plugins/bp-force-profile/

    #207704
    ideasdesigninc
    Participant

    Thank you so much! Creating and uploading my own language files seemed to to the trick. However — it’s unclear as to whether or not the “Sources Keywords” stuff is even relevant in my situation. Wouldn’t the WordPress functions already exist in the BuddyPress language file that I’ve copied and modified? If I’ve done something wrong (by ignoring these Sources Keywords stuff) — how can I test/verify that?

    Thanks,
    – Yvan

    #207700
    1a-spielwiese
    Participant

    1st:

    we don’t want BuddyPress to be our theme

    What I have described there did not make ‘BuddyPress’ my theme – and if you adapt my description to your case, it will also not make ‘BuddyPress’ your theme.

    (Anyway BuddyPress is no theme, though it concists of the bp-theme-folder. But ignore this folder.)

    2nd:

    real theme which is ClassiPress.

    That implies: Everywhere were I have written ‘reddle’ within my decription, you have to write ‘ClassiPress’; and were I have written ‘reddle-child’, you have to write ‘ClassiPress-child’.

    #207697
    barchiola
    Participant

    I added the code to the bottom of the classipress child theme, saved it, refreshed my screen and nothing happened. maybe because i used cut-paste instead of typing it in.
    i’ll try again.
    when i inspect the elements buddypress is using the buddypress.min.css file and i’m tempted to edit that file for the heck of it just to see if it changes anything but so far i can’t get changes to show on the screen.
    thanks for all of the help, i really appreciate it.
    one more try
    bart

    #207696
    1a-spielwiese
    Participant

    so when you say I have to activate our child theme in the Admin panel, I’ve seen this and have tried the preview and it takes over our real theme which is ClassiPress.

    Parent and child theme work the following way:

    If there is a style definition for e.g. h1 in the parent theme as well as in the child theme, then the style definition of the child theme for h1 is used.

    Is there only a definition in the parent theme for h1, then the parent theme definition is used.

    And the same regarding BuddyPress:

    If you write nothing regarding #buddypress div.item-list-tabs ul li.selected a into your child theme, then the BuddyPress-definition is used; otherwise the definition, which you make in your child theme, is used.

    Or saying the same thing in a more abstract way: The child theme does not substitute the entire parent theme, rather it has primacy in the case of contradictory style-definitions for the same element.

    #207693
    1a-spielwiese
    Participant

    this goes back to my original question, we already have a theme and are running a child-theme of that.

    That’s fine. Then insert there your code:

    #buddypress div.item-list-tabs ul li.selected a,
    #buddypress div.item-list-tabs ul li.current a {
    background-color: #eee;
    color: #555;
    font-weight: bold;
    border-radius: 0px, 0px, 4px, 4px;
    }
    #207691
    barchiola
    Participant

    this goes back to my original question, we already have a theme and are running a child-theme of that. buddypress isn’t our theme, it’s an add-on to our theme.
    so when you say I have to activate our child theme in the Admin panel, I’ve seen this and have tried the preview and it takes over our real theme which is ClassiPress.
    Does that make sense? we don’t want BuddyPress to be our theme, it’s running as an Add-on and I’m trying to only make some minor color/layout changes.
    Thanks!
    Bart

    #207690
    shpitzyl
    Participant

    There is nothing wrong with my child-theme configuration. I’ve tested it on 2014 theme, without bp-custom.php, the code in functions.php and BP template files are not applying because it is in my child theme and I’m testing on 2014 theme. Also turned off all plugins and installed fresh version of buddypress without any core hacks.

    The issue still persists. Everything was fine before upgrading to 2.1.1.

    I was thinking about opening a bug report ticket but if you say that everything is working for you then the issue must be on my end. I just can’t figure it out (yet).

    #207685
    Kris35
    Participant

    I would have thought this was something that would be really popular for a Buddypress site because finding people in certain areas is what a lot of social networks need. Im going to have a look at some BP sites and see what they are doing. There must be something for this surely – although seems not as am sure you ahve searched for yourself. Maybe need to get someone to code it for me. Thanks again, you put a lot of effort into trying to help me.

    #207684
    1a-spielwiese
    Participant

    I had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears.

    Yes, a better solution I do not have for the moment.

    the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.

    Yes – if you do not trust in the old plugins, which @noizeburger recommands:

    https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/

    or trust in them, but find (like me) no way, to make them working as they should.

    #207683
    Julia_B
    Participant

    I’ve ironed out most of the kinks on my website now and most of the members have made the transition from the old Facebook group without too many problems – although, I won’t lie, there have been complaints from a fair few!

    The main thing a lot of them miss is ease of access/use on mobile phones. The biggest factor seems to be that they could access the Facebook group via the app rather than needing to use a browser and the instant notifications of mentions to their phones helped keep them feeling involved. I’m not a developer, so there’s only so much I can do, but is it possible to have buddypress site (with busy bbpress forums) running as a mobile app at the same time?

    Or is there some other solution I can offer? I’ve explained about email notifications, but members don’t feel like that’s the same.

    The other issue is that members are saying it’s difficult to follow threads because on Facebook the original post will appear at the top with replies below and it gets bumped up the page each time anyone replies. I know Buddypress activity posts work a bit like that, but most of the activity appearing on my homepage activity feed is from the forums. Any suggestions?

    Thanks guys. 🙂

    #207682
    Kris35
    Participant

    Hi @1a-spielwiese,

    Thanks for this. I had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears. Im not using any plugin at the moment – just the extended profiles in the components of Buddypress at the top of the list which includes checkboxes for activity streams, friend connections etc. I don’t want to use a plugin that hasn’t been updated in two years either.

    If I go to Users>Profile fields, this is where I was hoping to do this but the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.

    Am I missing something?

    Thanks a bunch,

    Kris

    #207557
    danbp
    Participant

    @shpitzyl,

    buddypress comes without theme. BP Default is the old theming method used before 1.7/1.9 and bp-legacy is the template system needed by BP to show his stuff. This part is more or less used (depending the project) to work together with almost any theme.

    2013 or 2014 are the themes coming by default with WordPress (it’s easier to write 2014 than Twenty Fourteen)…. These themes are known to work with BuddyPress, and that’s why you constantly see on this forum some advice to activate one of them for debugging.

    Hueman is a free responsive wordpress theme, with several internal settings which are, for the most of them, deactivated out of the box. If you never worked with such sort of theme, it can be a little complicated to get it to work right with BuddyPress.

    If you use a child-theme, read attentively the theme and BP documentation about child theming, you probably missed something. I use it on a test site and have no counting issues.

    If the issue still remain, you have to follow the usual debug cycle: deactivate all your plugins except BP and track the culprit.

    And if you use some custom code in functions.php or /plugins/bp-custom.php, remove them, so you can test your install without any external influence. Pure WP+BP code only while debugging ! 😉

    #207553
    1a-spielwiese
    Participant

    1st:

    is the child theme folder in the wp-content/themes/ folder

    The child-theme folder is, were you have placed it.

    The child-theme folder should be on the same level of your folder-structure as your parent-theme (“comprehensive theme”)-folder.

    E.g.:

    • I have a folder wp-content/themes/reddle – for my parent theme
    • and a folder wp-contentent/themees/reddle-child – for my child.theme

    2nd:

    Theme Name: BuddyPress_GSN

    Template: buddypress

    I don’t know, whether it should work your way as well, but I do not refer on the BuddyPress-theme, rather on my WordPress-parent-theme – so, in my case the style.css of my child-theme beginns with:

    /*
     Theme Name:   Reddle Child
     Template:     reddle
    */

    3rd:

    You have to connect child- and parent-theme – in my case it is (as next line of my style.css) on the one hand:

    @import url("../reddle/style.css");

    And on the other hand you need a functions.php within your child-theme-folder as well. In my case it starts with:

    <?php

    /**
     * Enqueue stylesheet
     */
    function reddle_child_theme_stylesheet() {
    	wp_enqueue_style( 'reddle-child-themestyle', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'reddle_child_theme_stylesheet' );

    4th:

    Finally you have to activate your child-theme. You do this within the admin panel of your WordPress-installation:

    http://1a-spielwiese.de/wp-admin/themes.php

    In the case, that you have installed WordPress MultiSite, you have to activate it on the network level as well:

    http://1a-spielwiese.de/wp-admin/network/themes.php

    Cfr.: https://buddypress.org/support/topic/buddypress-2-1-bp-language/page/2/#post-200308 (section 2nd).

    5th:

    I don’t know, whether it is state of the art – anyway it works for me:

    I insert as well my changes regarding my WordPress parent-theme as well as my changes regarding BuddyPress into my wp-content/themes/reddle-child/style.css.

    Further reading:

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

    #207552
    shpitzyl
    Participant

    I’m not sure what people here are referring to when talking about the 2014 theme.

    I’m using hueman theme. I tried to test it with the themes that come with wordpress by default and the issue remained. Also tested it with the theme that comes with buddypress (this is 2013 theme right?).

    I wonder if anyone else has that issue.

    #207551
    barchiola
    Participant

    i’ve made a few changes but still nothing
    /*
    Theme Name: BuddyPress_GSN
    Theme URI: http://www.giantscalenews.com/wp-content/themes/BuddyPress_Child_GSN/
    Description: GSN BuddyPress Child Theme
    Version: 2.1.1
    Author: Bart
    Author URI: http://www.giantscalenews.com
    Template: buddypress
    Tags: buddypress
    */
    #buddypress div.item-list-tabs ul li.selected a,
    #buddypress div.item-list-tabs ul li.current a {
    background-color: #eee;
    color: #555;
    font-weight: bold;
    border-radius: 0px, 0px, 4px, 4px;
    }

    #207548
    barchiola
    Participant

    is the child theme folder in the wp-content/themes/ folder as it’s described in the codex entry?
    is there anything else to do as far as pointing things in the right direction other than building the new style.css file in the child directory?

    i’m trying to modify the various boxes and windows for the buddypress features so to start I did this but when I save it and then reload the page nothing is happening. Thank you.

    /*
    Theme Name: BuddyPress_GSN
    Theme URI: http://www.giantscalenews.com/wp-content/themes/Buddypress_Child_GSN/
    Description: GSN BuddyPress Child Theme
    Version: 2.1.1
    Author: Bart
    Author URI: http://www.giantscalenews.com
    Template: buddypress
    Tags: buddypress
    */

    div.item-list-tabs ul li.current a,
    div.item-list-tabs ul li.selected a {
    background-color: #FFF;
    color: #000;
    font-weight: 700;
    border-radius: 0px 0px 3px 3px;
    }

Viewing 25 results - 20,201 through 20,225 (of 73,986 total)
Skip to toolbar