Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,926 through 6,950 (of 22,649 total)
  • Author
    Search Results
  • #207755
    Ruby Sinreich
    Participant

    How can this be? I have been going about having my people put all this valuable data into the site assuming I could pull it into a spreadsheet at any time. Is there no plug-in to add this functionality?

    Users ought to be exportable along with everything else in WordPress.

    #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.

    #207749
    r-a-y
    Keymaster

    In BP 2.1, we have removed pagination counts for the activity component due to performance reasons by default:
    Changes to bp_has_activities() queries in BP 2.1

    If you want to add it back, change your custom activity-loop.php template from:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>

    to:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&count_total=count_query' ) ) : ?>

    Note: I haven’t tested this, but let me know if this works or not.

    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.

    #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

    #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.

    #207116
    1a-spielwiese
    Participant

    @dreammyw0w:

    I also need help with restyling my register-page…
    Can anyone tell me where to start?

    1st:

    Restyle you can it via a WordPress-Plugin like ‘Simple Custom CSS’ or the style.css within your child-theme-folder:

    https://codex.wordpress.org/Child_Themes

    Helpful is as well a plugin like Firebug for Firefox.

    2nd:

    For reshaping the content as well you have to deal with the wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php

    3rd:

    Regarding further questions it would be helpful, if you would describe precisely, what you want to change:

    Post a link to your blog and a jpg-file (modified screenshot), where is high-lighted, what you want to change.

    #207114
    1a-spielwiese
    Participant

    Yes, there should be a way, but I was not able to follow the instructions / to realise that way.

    The basic idea is:

    • Create two (or more) new WordPress user roles, e.g.: Users-UK and Users-USA.
    • Then you can assign one xProfile-field, ‘In which [federal] state do you live?’, exclusively to your users with the user role Users-USA; and another x-Profile, ‘In which county do you live?’, to your users with the user role Users-UK.

    The instructions for that solution you find there:

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

    (The user roles there are ‘bands’ and ‘fans’).

    And my report about my attempt to apply that instructions you find there:

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

    My user roles are (sport) ‘teams’ and ‘fans’.

    But unfortunately, I was not able to hinder, that ‘fans’ get displayed the questions (xProfile-fields) for ‘teams’ was well; and the ‘teams’ the questions for ‘fans’…

    Further problem:

    Even if there is a solution regarding later profile edits – even complicate seems to be, to make already the registration page “input senstive”, because during registration the new user isn’t yet registered (i.e.: has no user role yet).

    Cfr. there:

    http://forum.wpde.org/buddypress/133961-registrierungsseite-umgestalten-anleitung-und-fragen.html (section 4. – unfortunately in German).

    #206822
    barchiola
    Participant

    here’s a question, we already have a them and we’re also running an additional forum plugin. so right off the bat we have ClassiPress and SimplePress. It appears that what I’m following here is to make BuddyPress the site’s overall theme which isn’t the case. I just want to be able to edit the .css elelments that BuddyPress is calling on for forms and windows that are exclusive to buddypress on the site.
    I’ve fixed a couple of things so far, I’ve made the style.css file from a blank document following the directions more closely. I’ve also copied all of the contents of the default BP theme into my child theme folder.
    WordPress is recognizing the child theme in my Appearance>>Themes window of the WP Dashboard but it’s attempting to override the ClassiPress Child Theme that we have.
    Is any of this understandable? I feel like I”m getting close, any help would be appreciated to make this plugin work correctly for us.
    Thanks,
    Bart

    #206309
    danbp
    Participant

    @mugwumpman,

    you already reported around this in the past, but apparently you didn’t follow the answers. 😉

    https://buddypress.trac.wordpress.org/ticket/5182

    Open a new ticket if you cinsider there is something incorrect with cropping.

    #206301
    danbp
    Participant

    Glad you got it. Of course you can ! 😉
    http://www.wpbeginner.com/beginners-guide/how-to-disable-gravatars-in-wordpress/

    In matter of profile photo, i suggest you to use:
    https://wordpress.org/plugins/bp-avatar-suggestions/
    and anyway, your user have always the choice to upload their own picture.

    #206298
    Paul Wong-Gibbs
    Keymaster

    If you mean “comments” as in “comments on a blog post”, that’s obviously part of WordPress. That will definitely scale fine.

    If you meant “comments or replies on activity stream items, or status updates”, that’s BuddyPress. This should scale just fine, too.

    This assumes your server(s) configuration is optimal, and that you haven’t got any slow code running in other plugins/custom code, or in your theme. I/we can’t really help you with that here — running a performant server(s) for WordPress is outside the scope of providing BuddyPress supports.

    The only piece of hosting advice that I’d recommend for any WordPress-powered site, but especially larger sites, is to make sure you’re using an object cache, such as memcached.

    #206286
    shanebp
    Moderator

    It’s a matter of finding the exact syntax.
    This works in the function I provided.

            case 'Friends <span class="%s">%s</span>':
                return 'Connections <span class="%s">%s</span>';

    A gettext filter is a reasonable approach if there are one or two labels that need to be changed.
    But there are so many different places where ‘Friend’ or some variation is used that in your case you should definitely use a .mo file.
    Read:

    Customizing Labels, Messages, and URLs

    Often there is confusion re the Sources Keywords section of PoEdit, so after you read the above, take a look at http://www.cssigniter.com/ignite/wordpress-poedit-translation-secrets/
    especially the section titled ‘Keywords lists, WordPress functions, whaaaaaa?’.

    #206280
    danbp
    Participant
    #206253

    In reply to: BP sidebar are missing

    danbp
    Participant

    Feel free to ask on bp-fr.net if you prefer help in french.

    For now, on your contact page, you can see this message:
    This template supports the sidebar’s widgets. Add one or use Full Width layout.

    Ça veut dire qu’il faut ajouter des widgets ailleurs que sur la page d’accueil ou utiliser le template Pleine Largeur ! 😉

    dashboard > apparence > widgets or see the theme documentation. Can’t help more about this as you use a premium theme (support)

    #206249
    bp-help
    Participant

    @summersoul
    Have you considered hiring a pro? Try posting:

    BP Jobs Board


    or:
    http://jobs.wordpress.net/

    #205660
    shanebp
    Moderator
    #205553
    shanebp
    Moderator

    Yeah, implode is faster.

    But without meta array, the query probably won’t work anyway…
    Read:
    https://codex.wordpress.org/Class_Reference/WP_User_Query#Custom_Field_Parameters

Viewing 25 results - 6,926 through 6,950 (of 22,649 total)
Skip to toolbar