Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,826 through 4,850 (of 22,687 total)
  • Author
    Search Results
  • Paul Wong-Gibbs
    Keymaster
    #251370
    Paul Wong-Gibbs
    Keymaster

    For BuddyDrive support, post on the WordPress.org forums — thank you.

    https://wordpress.org/support/plugin/buddydrive

    pattz2016
    Participant

    hi,
    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 );

    Paul Wong-Gibbs
    Keymaster

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

    #251325
    dvpl
    Participant

    Hi,

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

    Please help what is correct steps to get html emails working.

    #251308

    In reply to: what widget ?

    Paul Wong-Gibbs
    Keymaster

    It’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.

    #251305
    Paul Wong-Gibbs
    Keymaster

    Do WordPress post permalinks work? Have you tested them to be sure?

    @mcuk
    Participant

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

    https://codex.wordpress.org/Child_Themes

    pattz2016
    Participant

    thanks 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

    @mcuk
    Participant

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

    #251289
    @mcuk
    Participant

    Haven’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.

    #251286
    Oscar Estepa
    Participant

    No 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');

    IdleWanderer
    Participant

    I 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?

    #251245
    Henry Wright
    Moderator

    If you use the Theme My Login plugin, you can customise the login template quite easily.

    #251218

    In reply to: Buddypress issue

    invisibleland
    Participant

    I 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!

    #251190
    xxsemmiexx
    Participant

    Hi 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.nl

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

    #251187
    rbaccaro
    Participant
    hellojesse
    Participant

    After 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_details
    #251164

    In reply to: Chaning DB prefix

    Henry Wright
    Moderator

    How are you changing your WordPress table prefix?

    #251162
    Henry Wright
    Moderator

    You should be able to go to Plugins > Add new in your WordPress admin area.

    Henry Wright
    Moderator

    I’d guess that’d be a bug because the count should display site-wide. You could open a ticket on Trac for this.

    ngoegan
    Participant

    And just to make sure I cover all my bases, here are my answers:

    1. Which version of WordPress are you running?
    4.4.2

    2. 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 think

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    No

    5. 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.1

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

    I 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 Twelve

    10. Have you modified the core files in any way?
    I modified Footer.php on WordPress to edit copyright

    11. Do you have any custom functions in bp-custom.php?
    I don’t know

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    2.5.8

    13. 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?
    Hostgator

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Basic Trouble Shooting:
    I don’t know. Maybe Apache?

    ngoegan
    Participant

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

    valuser
    Participant

    Have 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’}

    #251127
    shanebp
    Moderator

    Please 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-use

    Put your members-loop code in that page.
    Also include get_header() and get_footer() calls.

Viewing 25 results - 4,826 through 4,850 (of 22,687 total)
Skip to toolbar