Search Results for 'buddypress'
-
AuthorSearch Results
-
August 11, 2013 at 2:39 am #169685
In reply to: Can't change overall font in rtl default theme
cupid4
Participant@mercime Thanks so much, I will check if this fix is applied to my install as it should or not then post in the ticket if it is the same.
– I meant when buddypress developers moved it, not me. it used to be in themes folder in earlier versions and child themes worked well back then.
what I did now is taking a copy of bp-default, renaming it, and put in themes folder, now it’s working, I was in a hurry because I want to start my website before certain date.August 10, 2013 at 11:39 pm #169673In reply to: Dynamic URL profile links for WP Nav Menu
Ben Hansen
Participantnot sure might require a plugin but for what it’s worth i already have a trac ticket for adding dynamic links for login/logout/register and i have added those to the ticket:
August 10, 2013 at 8:47 pm #169669himlims
Participantupdated wordpress to latest release (v3.6)
buddypress is also current
disabled every plugin installed – restarted server (just to be sure)
enabled buddypress; seems all good at first, however; …/activation/ isn’t working.
The user receives activation mail with key (and link), you may click link or enter key manualy – result is the same; reload of page, no message, no record updated in sql db.
This gets real annoying now – enjoy the functionality of buddypress, but this is killign me
August 10, 2013 at 6:40 pm #169667In reply to: Call specific User profile fields to a page.
operapreneur
ParticipantI was successful at doing this. You can read about the results here on the forum.
I would suggest starting this kind of thread on the “How to/troubleshooting” topic, not this thread since it’s all about showing off the finished product.
August 10, 2013 at 8:23 am #169662In reply to: Can't change overall font in rtl default theme
@mercime
Participantthere are choices already selected even none of them is set as default, should I report this in buddypress trac
@cupid4 there was a trac ticket posted about same issue but was resolved last year https://buddypress.trac.wordpress.org/ticket/4362all the problems started since moving bp-default off the themes folder and putting it in buddyporess folder.
The bp-default theme folder should be left as is in the wp-content/plugins/buddypress/bp-themes/ folder and not moved to wp-content/themes/ folder
August 10, 2013 at 3:49 am #169661In reply to: Widgets Not Displaying on BuddyPress Pages
@mercime
Participant@producist try reuploading BuddyPress manually i.e., via FTP.
BP 1.8.1 issue “widgets are no longer displayed on BuddyPress pages”
Specifically, which widgets are not showing up? BuddyPress widgets or WordPress default widgets or another plugin’s widgets?
What theme are you using?August 9, 2013 at 7:00 pm #169647In reply to: non-mod/admin of a group can't see contents
Rahatlin
ParticipantTwo people confirmed that problem.
I have non-admin account on the site for daily use so i can see the problem for myself on that account.And i already said that i turned off all plugins and switched to twenty twelve theme to check if it wasn’t compatibility issue. But the problem was still there :/
I didn’t bother turning them back on one by one when i saw groups in same state when, nothing except buddypress was turned on.I always check that first.
August 9, 2013 at 6:15 pm #169643In reply to: How to override core template function
meg@info
ParticipantHi @Skeary,
There is no filter for bp_directory_groups_search_form(), You can change create a new custom function and replace the old call of bp_directory_groups_search_form by the new function.
function bp_custom_directory_groups_search_form() { $default_search_value = bp_get_search_default_text( 'groups' ); $search_value = !empty( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : $default_search_value; ?> <form action="" method="get" id="search-groups-form"> <label><input type="text" name="s" id="groups_search" placeholder="<?php echo esc_attr( $search_value ) ?>" /></label> <input type="submit" id="groups_search_submit" name="groups_search_submit" value="<?php _e( 'Go', 'buddypress' ) ?>" /> </form> <?php }The other solution is by javascript, you can change the text of the button by this code :
jQuery('#groups_search_submit).attr('value','Go');August 9, 2013 at 3:29 pm #169639In reply to: How to override core template function
aces
ParticipantAugust 9, 2013 at 2:24 pm #169635Hugo Ashmore
ParticipantPlease don’t advise people not to upgrade, this is bad advise, BP releases often have bug fixes and security updates people should endeavour to keep on the most current release. BP releases are tested as extensively as possible and not released until stable under most conditions. Quite what has happened with your install is hard to quantify without examining things in detail.
One thing that I would advice is not jumping from 1.6 to 1.8 missing out 1.7 due to the changes in 1.7, whether that was the issue in your case is unknown though. What BP can’t do however is patch an issue until it can be replicated and proven as a bug, but if more occurrences like this are reported then it may be looked at in more depth.
August 9, 2013 at 1:54 pm #169633Kookidooki
ParticipantIs there really nobody who can help me? π
I just made a fresh install with the latest version of WP and Buddypress and the above mentioned problems didn’t occur anymore. So it might be that upgrading Buddypress triggered these problems.
My advice to others: if you’re running a stable Buddypress version do not upgrade!!!
Unless BP find some kind of “patch” to prevent the issues.August 9, 2013 at 12:49 pm #169631Brice Capobianco
ParticipantHi,
I’m not sure if it can help you but the following may resolve your problem :function my_bp_nav_adder() { bp_core_new_nav_item( array( 'name' => __('New Tab Button', 'buddypress'), 'slug' => 'all-conversations', 'position' => 75, 'show_for_displayed_user' => true, 'screen_function' => 'all_conversations_link', 'item_css_id' => 'all-conversations' )); print_r($wp_filter); } function all_conversations_link () { //add title and content here - last is to call the members plugin.php template add_action( 'bp_template_title', 'my_groups_page_function_to_show_screen_title' ); add_action( 'bp_template_content', 'my_groups_page_function_to_show_screen_content' ); bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) ); } function my_groups_page_function_to_show_screen_title() { echo 'My new Page Title'; } function my_groups_page_function_to_show_screen_content() { echo 'My Tab content here'; } add_action( 'bp_setup_nav', 'my_bp_nav_adder' );source: http://codex.themedelta.com/how-to-create-a-new-tab-in-buddypress-member-page/
You have to change “members/single/plugins” by the path to your new template file without the .php extention.
If you need to check if the action already existe for different purpose (I already need to do something similar) you can use something like this:
if(has_action('name_of_action_to_check_for')) { // action exists so execute it do_action('name_of_action_to_check_for'); } else { // action has not been registered }Hope this help π
August 9, 2013 at 7:55 am #169624Kookidooki
ParticipantAdditional info: my server is running Linux and Apache.
August 9, 2013 at 4:05 am #169620In reply to: Can't change overall font in rtl default theme
cupid4
Participant@mercime thanks, the new code cleared the mess, but still no changes made to child theme are applied, I’m sure my edits are not wrong because it have been working before, all the problems started since moving bp-default off the themes folder and putting it in buddyporess folder. anyway I just copied the whole bp-default folder and changed theme name and started ding edits to it, will be harder than child themes to update, but it’s the only way I can get my website live for now, hope soon the problems with child themes are fixed.
btw, @mercime do you have any idea why registration page is saving all “select-down-list ” choices of last user who register and showing it always in register page? if you visited my website you will see that there are choices already selected even none of them is set as default, should I report this in buddypress trac?
August 9, 2013 at 2:14 am #169619In reply to: Cannot see Members or Activity after 1.8.1 upgrade
psound
ParticipantBoth Twenty Twelve and Buddypress Default theme had “Sorry, no members were found.” error.
August 8, 2013 at 11:54 pm #169613In reply to: BuddyPress 1.8.1 and Multisite
August 8, 2013 at 10:09 pm #169611In reply to: Making Youtube videos responsive
Ben Hansen
Participantoh hum the default theme maybe you should a open trac ticket on that one? i believe its still being supported even though theme compatibility is the preferred method. anyone know off hand if the BP default theme still comes packaged? haven’t really done a fresh buddypress install since 1.7.
August 8, 2013 at 10:04 pm #169610In reply to: Making Youtube videos responsive
notpoppy
Participant@ubernaut Yes I am using oEmbed. In the default Buddypress theme oEmbeds don’t seem to be responsive so I’m trying to find the best way of doing that. Am having a look at FitVids at the moment as suggested here:
https://buddypress.org/support/topic/fitvids-js-and-bp-ajax/
August 8, 2013 at 3:56 pm #169586In reply to: BuddyDroid β BuddyPress for Android
Jboisset
ParticipantHi, i also get the following error message : org.xmlrpc.android.XMLRPCExption: xmlpull.v1? XmlpullParserExeption unexpected type (position END_DOCUMENT null@1:1 in java.io. InputStreamReader@β¦
I tested direct access to the xmlrpc page. It works. The website is tiing.fr.
Thanks for your help.August 8, 2013 at 9:31 am #169573In reply to: Members directory for hidden groups
Hugo Ashmore
ParticipantCheck the codex docs for guides, this one is probably what you need to be working with, same loop as in groups/single/members.php:
https://codex.buddypress.org/developer/developer-docs/loops-reference/the-group-members-loop-bp_group_has_members/August 8, 2013 at 6:12 am #169562bp-help
Participant@jschodde
This plugin is not tagged BuddyPress so I think it would be more appropriate to post it on the authors support forum here:
https://wordpress.org/support/plugin/better-wp-security
Maybe ask the author to update it for use with BP and tag it appropriately afterwards.August 8, 2013 at 1:07 am #169554In reply to: Registrations don't work
@mercime
Participant@speedysnail6 deactivate BuddyPress and change to Twenty Twelve theme, then check if registration works. Where are you hosted?
August 8, 2013 at 1:04 am #169553@mercime
Participant@barronlau “Blog Details: Iβd like to add new siteβ shows up for multisite installations if you did not remove that option for a user to create a blog in your site.
Go to My Sites > Network Admin > Dashboard. Then go to Settings > Network Settings –> Registration Settings, then only choose User accounts may be registered.
To customize what’s going to show up on your registration https://codex.buddypress.org/user/buddypress-components-and-features/extended-profiles/
August 8, 2013 at 12:53 am #169551In reply to: Registration email not being sent
@mercime
Participant@wyldesites I just set up a new installation WP 3.6 and BP 1.8.1 and registration with activation email is working.
– Check server email configuration – if you deactivate BuddyPress, does the registration process work for you? Where are you hosted?
– Deactivate all plugins except BuddyPress and change to Twenty Twelve theme. If all’s well, then activate theme. If user can register, then could be one of the plugins. Activate plugins batch by batch while testing to check which is interfering with registration/activation.
August 7, 2013 at 11:06 pm #169547Marisa
ParticipantI have just solved this problem by replacing parts of the default bp-core-functions.php archive where it says “function bp_core_time_since”
I used parts of this file: https://svn.buddypress.org/tags/1.6-RC1/bp-core/bp-core-functions.php -
AuthorSearch Results