Search Results for 'wordpress'
-
AuthorSearch Results
-
March 17, 2016 at 10:07 am #251371
Paul Wong-Gibbs
KeymasterI think this is the same as https://buddypress.trac.wordpress.org/ticket/6954
March 17, 2016 at 10:05 am #251370In reply to: Image file corrupts in buddydrive
Paul Wong-Gibbs
KeymasterFor BuddyDrive support, post on the WordPress.org forums — thank you.
March 16, 2016 at 10:09 pm #251352pattz2016
Participanthi,
I have created a child theme , named it Frontier-child and pasted the code as below. But still the WP LOGO is there.<?php
//
// Recommended way to include parent theme styles.
// (Please see https://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
//
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}
//
// Your code goes below
//function remove_wp_logo( $wp_admin_bar ) {
if ( !current_user_can( ‘administrator’ ) && !is_super_admin() ) {
$wp_admin_bar->remove_node( ‘wp-logo’ );
}
}
add_action( ‘admin_bar_menu’, ‘remove_wp_logo’, 999 );March 16, 2016 at 7:43 pm #251345Paul Wong-Gibbs
KeymasterSee https://buddypress.trac.wordpress.org/ticket/6961
I’ve added Secure cookie support, but not HttpOnly because some (maybe all) are accessed with Javascript; I haven’t time to audit all the cookies in that level of detail at the moment, so maybe we can do that in the future if someone helps investigate.
March 16, 2016 at 1:57 pm #251325In reply to: BuddyPress 2.5.1 – Maintenance release
dvpl
ParticipantHi,
I want to send html email, but it always sending Plain text email content.
Using Thunderbird email client.Template showing in Mails->customize, setting not reflecting in email.
Wordpress : Version 4.4.1
Buddypress : Version 2.5.1Please help what is correct steps to get html emails working.
March 15, 2016 at 11:03 pm #251308In reply to: what widget ?
Paul Wong-Gibbs
KeymasterIt’s hardcoded. If you know how to customise a theme and write PHP, you can see the implemetnation: https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php#L355
bbPress does have shortcodes, I’d suggest doing that instead. I don’t know what the shortcode is, I’d suggest searching on bbpress.org.
March 15, 2016 at 10:56 pm #251305In reply to: BP Pages Not Displaying
Paul Wong-Gibbs
KeymasterDo WordPress post permalinks work? Have you tested them to be sure?
March 15, 2016 at 7:49 pm #251300@mcuk
ParticipantThe code doesn’t remove the bar, it just removes the WordPress logo in the top left.
The code is put in your functions.php file. It is a file you create (if you haven’t already done so) and put in your child theme folder.
March 15, 2016 at 7:17 pm #251296pattz2016
Participantthanks for your response, I do not want to remove WP adim bar, because that is where the notifications appear. I only want to remove the wp-logo. the drop down wordpress menu at the side of the top bar.
Not the bar itself
March 15, 2016 at 6:52 pm #251294@mcuk
ParticipantIf you mean the WP bar at the top of the screen, then this might help. Add to functions.php
function remove_wp_logo( $wp_admin_bar ) { if ( !current_user_can( 'administrator' ) && !is_super_admin() ) { $wp_admin_bar->remove_node( 'wp-logo' ); } } add_action( 'admin_bar_menu', 'remove_wp_logo', 999 );This will remove the WordPress Logo (and therefore the dropdown menu that appears with the link to WordPress.org). If you just want to remove the WordPress.org link in that menu then replace
'wp-logo'with'wporg'in the function above.March 15, 2016 at 5:55 pm #251289In reply to: Missing Add Friend Button
@mcuk
ParticipantHaven’t encountered that problem myself so wouldn’t really know where to start. The code above does work fine with notifying the person you are trying to be friends with (I’ve just double checked on my project).
Might even be a conflict with something in your theme or another plugin you are using. You could also try disabling other plugins to check if that is an issue and switching themes to one of the WordPress default themes to see if it works as it should.
Only other suggestion I can give is to start a new forum thread and maybe someone else has encountered that issue.
March 15, 2016 at 5:28 pm #251286In reply to: Disable All RSS Feeds – update
Oscar Estepa
ParticipantNo particular reason, Buddypress 2.4.3 is using ‘bp_actions’ hook to add its actions instead of ‘wp’ and according to WordPress you need to use the exact same hook with the exact same priority in order to remove a previously inserted action, i.e., now BuddyPress is adding its functions as:
add_action('bp_actions', 'bp_activity_action_sitewide_feed');See wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php (L530).
Therefore, they need to be removed using the exact same syntax:
remove_action('bp_actions', 'bp_activity_action_sitewide_feed');March 15, 2016 at 1:14 pm #251254IdleWanderer
ParticipantI just realized that “bp_is_page()” might not work as the page I am referring to is a normal wordpress page. Is this so? If so, would “is_page()” be correct?
March 15, 2016 at 10:50 am #251245Henry Wright
ModeratorIf you use the Theme My Login plugin, you can customise the login template quite easily.
March 14, 2016 at 7:18 pm #251218In reply to: Buddypress issue
invisibleland
ParticipantI don’t totally understand this, but here’s the debrief on how it was fixed:
https://buddypress.trac.wordpress.org/ticket/6940#comment:6
Thanks!
March 14, 2016 at 8:27 am #251190In reply to: buddypress upload button gone
xxsemmiexx
ParticipantHi Henry,
It’s not about the theme, cause it was working fine till the last buddypress update.
but the theme that i am using is “Point” from the wordpress theme site.
http://PROUDLesbians.nlPlugins that i am using are:
Advanced Ads
Akismet
Birthdays Widget (for buddypress)
BP stickers
Code PHP in widget
Contact Form 7
Custom Login Page
Jetpack
Loco Translate
Loginizer
Quick Chat
WP Smush
WP-Optimize
YOAST Seo.March 14, 2016 at 2:07 am #251187In reply to: Avatar Cropping and Take Photo – Tab Not Showing
rbaccaro
ParticipantReported here
https://buddypress.trac.wordpress.org/ticket/6746March 13, 2016 at 7:46 pm #251180hellojesse
ParticipantAfter submitting new details on page index-action-admin:
http://local.wordpress.dev/groups/admin/edit-details/NOTICE: wp-content/plugins/buddypress/bp-groups/bp-groups-screens.php:869 - Trying to get property of non-object require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, bp_template_redirect, do_action('bp_template_redirect'), call_user_func_array, bp_screens, do_action('bp_screens'), call_user_func_array, groups_screen_group_admin_edit_detailsMarch 13, 2016 at 10:57 am #251164In reply to: Chaning DB prefix
Henry Wright
ModeratorHow are you changing your WordPress table prefix?
March 13, 2016 at 10:56 am #251162In reply to: Where’s the plugins directory page?
Henry Wright
ModeratorYou should be able to go to Plugins > Add new in your WordPress admin area.
March 12, 2016 at 10:16 am #251146Henry Wright
ModeratorI’d guess that’d be a bug because the count should display site-wide. You could open a ticket on Trac for this.
March 12, 2016 at 8:57 am #251143ngoegan
ParticipantAnd just to make sure I cover all my bases, here are my answers:
1. Which version of WordPress are you running?
4.4.22. Did you install WordPress as a directory or subdomain install?
Not sure, but I think as a directory.3. If a directory install, is it in root or in a subdirectory?
root I think4. Did you upgrade from a previous version of WordPress? If so, from which version?
No5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes.6. Which version of BP are you running?
2.5.17. Did you upgraded from a previous version of BP? If so, from which version?
Yes, the one before it.8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes, Akismet, BBpress, Buddypress Edit Activity, Buddypress Forum Editor, Buddypress Group Email Subscription, Buddypress Like, Dynamic Widgets (deactivated), Events Made Easy, Events Made Easy Frontend Submit, Hashbuddy, InfiniteWP CLient, rtMedia, Theme My Login, Wanguard, Wordfence Security, WP SMTPI did deactivate all of them except wordpress and the register page worked, I then activated Buddypress and the redirect issue began.
9. Are you using the standard WordPress theme or customized theme?
Twemty Twelve10. Have you modified the core files in any way?
I modified Footer.php on WordPress to edit copyright11. Do you have any custom functions in bp-custom.php?
I don’t know12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
2.5.813. Please provide a list of any errors in your server’s log files.
The error log looks blank. Maybe I’m looking at the wrong thing?14. Which company provides your hosting?
Hostgator15. Is your server running Windows, or if Linux; Apache, nginx or something else?
Basic Trouble Shooting:
I don’t know. Maybe Apache?March 12, 2016 at 8:43 am #251142ngoegan
ParticipantHmmm.. that posted, but not my 3 other posts. Maybe because there was code in it?
I found this codex page and under the section titled “Site URL Redirecting” it gives instructions on deleting a couple lines of code from the wp-login.php file.
I’m wondering if that is the issue. The lines of code don’t match those in my file exactly so I’m hesitant to try.
https://codex.wordpress.org/Login_Trouble
Still waiting to see if someone can help with this. Thank you.
March 12, 2016 at 1:45 am #251133valuser
ParticipantHave revisted this interesting query!
Consulted this similar query
and have come up with another possible solution
(so long as the main site has a different theme or child theme to the other sites.)in functions.php of sub-sites’ themes insert
add_action( 'template_redirect', 'redirect_to_specific_page' ); function redirect_to_specific_page() { if (is_page('Register') && ! is_user_logged_in() ) { wp_redirect( 'http://yourmainsite.dev/register/', 301 ); exit; } }would not work with slug is_page(‘register’}
March 11, 2016 at 9:45 pm #251127In reply to: How to display additional member directory.
shanebp
ModeratorPlease don’t call out people individually.
Create a Page – not a Post.
Create a template and assign it to that Page.
https://developer.wordpress.org/themes/template-files-section/page-template-files/page-templates/#creating-custom-page-templates-for-global-usePut your members-loop code in that page.
Also includeget_header()andget_footer()calls. -
AuthorSearch Results