Search Results for 'wordpress'
-
AuthorSearch Results
-
September 19, 2014 at 3:44 pm #197963
In reply to: Charging members
Henry Wright
ModeratorHi @kris35
The best thing to do is search the WordPress Plugin Directory for membership plugins. See: https://wordpress.org/plugins/
September 19, 2014 at 3:15 pm #197961In reply to: My customs styles stopped work
Henry Wright
ModeratorI’ve opened a ticket to make the core developers aware of the issue.
September 19, 2014 at 2:58 pm #197956In reply to: Add an alt @user_name
Paul Wong-Gibbs
KeymasterThe short answer is that WordPress itself doesn’t consider the username to be sensitive data. Using strong passwords and using two-step authentication via a plugin are good recommendations.
September 19, 2014 at 2:52 pm #197953In reply to: buddypress 2.0.3 download needed, please help
Paul Wong-Gibbs
KeymasterHi!
Here you go: https://downloads.wordpress.org/plugin/buddypress.2.0.3.zip
It’d be interesting to know what theme you found a problem with in 2.1, so we can check it out.
September 19, 2014 at 2:37 pm #197950In reply to: Group Blog
1a-spielwiese
ParticipantFor my point of view you have to do nothing special. You can use WordPress SingleSite without any group-specific plugin.
You can register a lot of users for one singular blog; some can be administrators and some authors only; and there are some other user levels (user roles):
https://codex.wordpress.org/Roles_and_Capabilities#Capability_vs._Role_Table
via http://faq.wpde.org/welche-benutzerrolle-bietet-welche-rechte/
September 19, 2014 at 2:03 pm #197941In reply to: Group Blog
danbp
ParticipantSeptember 19, 2014 at 10:38 am #197927In reply to: [Resolved] How to turn off the activities
Henry Wright
ModeratorHi @rzelnik
The whole activity component can be disabled via the WordPress admin area.
September 19, 2014 at 10:00 am #197924In reply to: Add an alt @user_name
Henry Wright
ModeratorHey @chiefalchemist
You’re right to keep this sort of thing in mind when it comes to securing your site. Take a look at some of these plugins which provide two-step authentication:
https://codex.wordpress.org/Two_Step_Authentication#Plugins_for_Two-Step_Authentication
September 19, 2014 at 8:15 am #197914In reply to: Buddypress notifications
1a-spielwiese
ParticipantI do not understand precisely, what your problem is. – However, have you activated the ‘Notification’-component of BuddyPress within your WordPress-settings (Settings/BuddyPress/Components)?
September 19, 2014 at 6:05 am #197906In reply to: [Resolved] Full Width Layout with "Reddle"-themen
1a-spielwiese
ParticipantThank you very much.
It works with the code for the buddypress.php + inserting the other code:
.buddypress #main #primary { margin: 0; } .buddypress #main #content { margin: 0 9.46429%; }via Dashboard / ‘Simple Custom CSS’-plugin.
—
But there still must be a mistake within the style.css for my child theme folder. It’s content is right now:
/* Theme Name: Reddle Child Template: reddle */ @import url("../reddle/style.css"); /* =Theme customization starts here -------------------------------------------------------------- */ .buddypress #main #primary { margin: 0; } .buddypress #main #content { margin: 0 9.46429%; }But it does not work without using ‘Simple Custom CSS’…
September 18, 2014 at 10:00 pm #197896In reply to: [Resolved] Full Width Layout with "Reddle"-themen
1a-spielwiese
ParticipantThank 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: ReddleRather:
Theme Name: Reddle ChildAnd it was missing there the line:
Template: reddleIsn’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.’
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.
September 18, 2014 at 7:55 pm #197879In reply to: [Resolved] Full Width Layout with "Reddle"-themen
@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-contentin media query, add the following to your child theme’s stylesheet:@media screen and (min-width: 600px) { body.buddypress #primary { width: 100%; } }September 18, 2014 at 6:38 pm #197865Paul Wong-Gibbs
KeymasterCorrect, no hardcoded limit. WordPress will go as far as your servers will 🙂
September 18, 2014 at 6:18 pm #197863Ben Hansen
Participanti do not believe there is a limit to the number of wordpress or buddypress members imposed by any of the software anyways.
September 18, 2014 at 5:44 pm #197859Cartographer
ParticipantHi 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 FourteenRegards
September 18, 2014 at 1:36 pm #197733September 17, 2014 at 7:15 pm #197287In reply to: Profile page
Henry Wright
ModeratorHave you installed the theme?
September 17, 2014 at 6:56 pm #197286r-a-y
Keymaster@cwjordan – Thanks for the benchmarks. Are you using an object cache? If not, since you’re fetching profile data in a loop like this, I would temporarily disable object caching manually.
See:
http://kovshenin.com/2012/disable-object-cache-additioninvalidation-in-wordpress/Let me know if that helps.
September 17, 2014 at 4:08 pm #197256In reply to: New problem i havent seen before?
Henry Wright
ModeratorHey @mcpeanut!
Considering you’ve tested unsuccessfully on an unmodified Twenty Twelve – Thirteen – Fourteen, it might be worth making the core dev team aware of the problem by opening a Trac ticket:
danbp
ParticipantIf you created additionnally first and last name fields, it’s useless somehow, but i don’t think that it is related to your issue. Or only if you create those fields with an extra function related to the user table.
You have nothing to loose to remove them and give a try to your profile by using only the default name fields.
Username | Password | Email| ( wp part)
NAME (bp part)
The important thing to know is that the values of this 4 fields are stored in wp_users table.Any other profile field values are stored in _bp_xprofile_data table even if you create 20 first name or last name fields on the default showing BASE group.
What you can do is to give some guidance in the NAME field description, such as: enter here your first name and last name. Alas without any waranty that the user will follow your advice.
It’s exactly the same problem for the original wordpress “username” field. Some enter Bobby as username and John Doe into the name field (wow! correct !). Others do the opposite and others enter StupidCow in both fields. 😉
September 17, 2014 at 3:16 pm #197249In reply to: Plugin for Custom User Profile Page
danbp
ParticipantThis a question for the plugin author ! See also the support.
https://wordpress.org/support/topic/music-player-5September 17, 2014 at 2:31 pm #197246Henry Wright
ModeratorFurther to @bphelp’s suggestion, keep an eye on this ticket which aims to have this available in core by v2.2
johnhutchy2014
ParticipantHi
“The NAME field in BuddyPress is intended to receive first and last name and replace the two original fields (first name, last name) coming with WordPress.”Does this mean that If I remove the first name and last name fields from ‘profile fields’ then that should fix the issue?
Thanks
September 17, 2014 at 1:28 pm #197240In reply to: Plugin for Custom User Profile Page
September 17, 2014 at 11:53 am #197233In reply to: Profile picture to use wordpress avatar
Henry Wright
ModeratorHi @tightflks
You can use
get_avatar()instead of the BuddyPress functionbp_core_fetch_avatar(). See: https://codex.wordpress.org/Function_Reference/get_avatar -
AuthorSearch Results