Search Results for 'wordpress'
-
AuthorSearch Results
-
October 9, 2014 at 8:40 pm #207755
In reply to: [Resolved] Export users and xprofile data
Ruby Sinreich
ParticipantHow 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.
October 9, 2014 at 8:28 pm #207753In reply to: How to @ mention
m@rk
ParticipantHi 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.
October 9, 2014 at 7:26 pm #207752m@rk
ParticipantOctober 9, 2014 at 6:12 pm #207750r-a-y
KeymasterSo 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.
October 9, 2014 at 6:05 pm #207749In reply to: pagination count and links don't work.
r-a-y
KeymasterIn 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.1If 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.
October 9, 2014 at 5:05 pm #207727Tom
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?
October 9, 2014 at 4:04 pm #207716In reply to: Modifying buddypress.min.css
barchiola
Participantgot 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.
October 9, 2014 at 3:40 pm #207715October 9, 2014 at 2:09 pm #207705In reply to: Can Buddypress do this?
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/October 9, 2014 at 2:04 pm #207704In reply to: Changing "Friends" to "Connections" ?
ideasdesigninc
ParticipantThank 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,
– YvanOctober 9, 2014 at 8:12 am #207557In reply to: pagination count and links don't work.
danbp
Participantbuddypress 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 ! 😉
October 9, 2014 at 7:08 am #207553In reply to: Trying to understand Child Themes vs. Plugins
1a-spielwiese
Participant1st:
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
October 9, 2014 at 6:09 am #207552In reply to: pagination count and links don't work.
shpitzyl
ParticipantI’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.
October 8, 2014 at 9:44 pm #207116In reply to: Reshaping the registration page
1a-spielwiese
ParticipantI 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.csswithin 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.php3rd:
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.
October 8, 2014 at 9:00 pm #207114In reply to: Profile fields for locations within a country
1a-spielwiese
ParticipantYes, 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).
October 8, 2014 at 6:39 pm #206822In reply to: Modifying buddypress.min.css
barchiola
Participanthere’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,
BartOctober 8, 2014 at 2:53 pm #206309In reply to: Avatar resize not working
danbp
Participantyou 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.
October 8, 2014 at 2:31 pm #206301In reply to: Users Profile Image and Registration Form
danbp
ParticipantGlad 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.October 8, 2014 at 2:29 pm #206298In reply to: Can WP & BP handle 1000+comments per day?
Paul Wong-Gibbs
KeymasterIf 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.
October 8, 2014 at 1:04 pm #206286In reply to: Changing "Friends" to "Connections" ?
shanebp
ModeratorIt’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: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?’.October 8, 2014 at 12:49 pm #206280In reply to: Users Profile Image and Registration Form
danbp
ParticipantDo you use https://wordpress.org/plugins/doppelme-avatars/ ?
October 8, 2014 at 1:57 am #206253In reply to: BP sidebar are missing
danbp
ParticipantFeel 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)
October 7, 2014 at 11:36 pm #206249In reply to: Just installed Buddypress 2.1.1. No clue
bp-help
Participant@summersoul
Have you considered hiring a pro? Try posting:October 7, 2014 at 6:57 pm #205660shanebp
ModeratorOctober 7, 2014 at 5:38 pm #205553In reply to: Filter list of profiles on Member Page
shanebp
ModeratorYeah, 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 -
AuthorSearch Results