Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,901 through 5,925 (of 22,621 total)
  • Author
    Search Results
  • #238374

    In reply to: Let’s work together

    Henry Wright
    Moderator

    Hey @marcella1981

    Great to see you’re interested in developing BuddyPress themes. It might be worth also asking your question over at wordpress.org; I’m hoping there’ll be some WordPress theme authors who’ll want to turn their hand to themes for BuddyPress.

    #238373
    Henry Wright
    Moderator

    Hi @arturamirov

    See the Languages and Translations article to start with. There’s also the Translator Handbook.

    #238364
    BewitchingFiction
    Participant

    Hi @canwigirl,

    Unfortunately, that won’t work for me, mostly because the groups are already in use and have been for over a month. I don’t use the actual comments/blogging functionality of WordPress at all on my site at all and asking the users to repost a large number of the conversations so that they could continue would be unfeasible. Really I want to know why this particular functionality is included on the forum build if it doesn’t work in the majority (make that the largest majority) of templates (Firmasite is the only one I have found where the hidden groups actually appear but it has certain appearance issues that it doesn’t appear to be able to correct without a large amount of additional coding).

    #238357
    @mcuk
    Participant

    I’ve set up two users to test various things on site during development, one with Administrator and one with Subscriber roles. That’s what the wp dash is confirming under users.

    I also have another function to hide the wp admin bar at the top of the page which includes the is_super_admin(). When its active, the admin bar is removed for the subscriber but not the admin user as intended. So can only assume that there is a problem with my redirect function itself or perhaps its clashing with something else (though I have no other plugins atm).

    //Remove wordpress admin bar for all except admin 
    function bpmc_remove_admin_bar() {
    	if( !is_super_admin() ) 
    		add_filter( 'show_admin_bar', '__return_false' );
    }
    add_action('wp', 'bpmc_remove_admin_bar');
    #238353
    Henry Wright
    Moderator

    Just to note, is_admin() checks if the dashboard is being viewed, not the user’s capabilities.

    https://codex.wordpress.org/Function_Reference/is_admin

    #238348
    caniwigirl
    Participant

    Hi @bewitchingfiction,

    I tried it on some of the default WordPress themes and couldn’t get it to work… and it no-longer works on the previous theme used two years ago when I first configured BuddyPress on our site.

    My suggested work-around for you until someone is able to get it going again would be to create a password-protected or private page in WordPress for your mods to chat via the comments function. If you use a plugin that allows menu items to only be shown to mods, then no one will know the page even exists.

    I use Nav Menu Roles to manage the visibility of menu items on my site. Unfortunately, it’s not compatible with my theme’s menu… so every time I want to add or change a menu item’s visibility, I have to change to another theme to use it , then change back. Clumsy, but it works! https://wordpress.org/plugins/nav-menu-roles/screenshots/

    #238345
    shanebp
    Moderator

    You make a good point.
    It definitely should be exposed as a DEFINE, similar to define('BP_DEFAULT_COMPONENT', 'profile' );

    I suggest you create an enhancement ticket. Use the same user / pw that you use here.

    #238331
    darkwoof
    Participant

    I posted the same question and no one answered me. This seems to be a common issue with all WordPress/BuddyPress installs (I have a separate WordPress install and the same thing occurs), so it seems to be inherent in the responsive CSS code or something.

    This was my question:

    https://buddypress.org/support/topic/toolbar-empty-for-mobile-logged-out-users/

    These other threads also seems to be talking about the same, or a similar issue:

    https://buddypress.org/support/topic/buddy-bar-not-displaying/
    https://buddypress.org/support/topic/how-to-show-secondary-navigation-menu-to-logged-out-users/

    Doesn’t anyone have any advice, since it’s affecting so many of us?

    And no, it was not due to a conflicting plug-in or a theme. Tests were done when the site was just installed with the default themes. The links shows up correctly on desktop, and on my Nexus 7 2013 (1200×1920 resolution) ONLY when it is in landscape mode, but not when it is portrait (empty, black bar is show). And the same empty black bar is shown on my Galaxy Note 3 (1080×1920 resolution) in both portrait and landscape. So it doesn’t seem to be due to just the horizontal resolution – but perhaps the the full (horizontal x vertical) resolution or something.

    It’s pretty frustrating.

    #238299
    @mercime
    Participant

    @knutta you need to install bbPress then follow instructions at

    Installing Group and Sitewide Forums

    #238294
    shanebp
    Moderator

    What version of BP are you using?

    Have you seen this?

    #238291
    caniwigirl
    Participant

    I first installed BuddyPress on our site a couple years ago and all worked as expected. However, it was decided we wouldn’t pursue BuddyPress as part of our solution at the time. Earlier this year, we decided to re-instate it, which is when I noticed this new behavior…

    There have been a lot of updates in WordPress, BuddyPress and bbPress during this time, so I’m guessing something somewhere along the line, but may not have been addressed yet. I haven’t found any fixes online for it, which is why I have posted here.

    Just to clarify, HIDDEN FORUMS appear for Keymasters and Moderators, but not to members of them who haven’t been assigned to either of these roles. They can, however, access the forum if they have the URL for it. So, at the moment, I am having to make all members of hidden forums be moderators in order to keep my site navigation clean.

    Perhaps @bphelp could shed some light?

    #238289
    danbp
    Participant

    Sorry but your pasted code is wrong.
    See source.
    Read also the comments before you copy/paste.


    @henrywright
    can you help out please ?

    #238275
    paixaofileto
    Participant

    already removed the error. you can see that in the area of members appears the avatar and the homepage will not appear?

    Area of members:
    Appear

    Homepage:
    not appear

    #238269
    Henry Wright
    Moderator

    Hey @danbp,

    WordPress provides a function for that. Check out wp_filter_nohtml_kses(). It strips all HTML from the string you provide so there’s no need to use preg_replace().

    function hellowed_remove_html_private_messages( $message ) {
    
        $message = wp_filter_nohtml_kses( $message );
        return $message;
    }
    add_filter( 'messages_message_content_before_save', 'hellowed_remove_html_private_messages' );
    #238266
    paixaofileto
    Participant

    gave the following error:

    WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘: 1)’ at line 1]
    SELECT id, user_id, field_id, value, last_updated FROM wp_bp_xprofile_data WHERE field_id = 2 AND user_id IN (displayed: 1)

    Read on the internet that I must pass the id as parameter for bp_core_fetch_avatar:

    <?php
    $userid = bp_loggedin_user_id();
    echo bp_core_fetch_avatar( array( ‘item_id’ => $userid) );
    ?>

    But do not know where I have to put this code or how to implement in my code. Can you help me?

    #238251
    danbp
    Participant

    @fugu78,

    you are using joomla on the mainsite and WordPress on the subdomain.
    Question is: is WP sharing the same DB as joomla or have you a complete separate install (db & cms) for your WP/BP site ?
    Which type of WP install do you use ? Single or network ? (more about)
    Are mainsite users and wp site users the same people ?

    BuddyBoss has his own support forum. You probably have better to ask there directly.

    #238248
    fab_pj
    Participant

    Hi Dan,
    I tried all the above, and nothing seems to be working. Now, as you will understand for ‘BuddyPress Support’ Theme I find it odd to have such a big bug after having re-activated and everything. I am resistant at completely reinstalling unless it’s the last straw, but I am also quite demotivated as the theme just sent me this answer:

    “This is not a theme issue, as you have updated only the wordpress. Also updating wordpress will not delete any records in your DB. Please contact buddpress support team regarding the issue.”

    Hence, it’s not them or the theme, but it’s something within BuddyPress. I’d rather not have to change plugin options with 400+ users on my platform, as I really like the flexibility BuddyPress gives me. Hope you understand.

    Best,
    Fab

    #238206
    danbp
    Participant

    Hi @medianp,

    just tested the plugin on a local network install and it works.

    There is just a little count error (missing arg 2) in one of the file.
    To solve this, add $count at the end of line 107 in bp-community-stats.php
    $count = $wpdb->get_var( $wpdb->prepare( "SELECT count(a.id) FROM {$bp->activity->table_name} a WHERE type = 'activity_update' AND a.component = '{$bp->activity->id}'", $count ) );

    Plugin author warned: Total Posts and Comments not support in multisite/network mode

    Search the WP plugin repo to get the missing stats.

    #238199
    leanneoleary
    Participant

    Hi, I had seen that article but then couldn’t find the plugin within wordpress so was unsure of using it. I will give it a go though if that’s the only solution available, thanks.

    UPDATE
    ——-
    Just tried uploading it to wordpress but get errors and looking at the comments on the page of the plugin looks like it hasn’t worked since 2012/13. 🙁

    Henry Wright
    Moderator

    Hi @winnergirl

    Does BuddyPress require its own independent WP site?

    No. BuddyPress works just like any other plugin you might install on your WordPress website. You should just be able to click ‘activate’.

    zeesh49
    Participant

    @quaelibet and @danbp can you provide details of how you setup a vhost? I googled and have been able to setup a vhost but it only access the xampp page and not the wordpress page.

    My host file contains the following:
    127.0.0.1 buddypress.local
    ::1 buddypress.local

    My httpd-vhosts.conf file contains the following:
    <VirtualHost *:80>
    DocumentRoot c:/xampp/htdocs
    ServerName localhost
    </VirtualHost>
    <VirtualHost *:80>
    DocumentRoot c:/xampp/htdocs
    #DocumentRoot c:/vhosts/buddypress.local
    ServerName buddypress.local
    </VirtualHost>

    when i run the URL: http://buddypress.local, it resolves to http://buddypress.local/xampp/ page
    but when I run the URL http://buddypress.local/wp (my wordpress folder name is ‘WP’) it says page cannot be displayed. this is in internet explorer.

    kindly help.

    #238157
    leanneoleary
    Participant

    I am using Cinematix (http://themeforest.net/item/cinematix-buddypress-theme/4959387) and haven’t customised it in any way.

    I have found the default HINT for wordpress is the following:

    <?php _e(‘Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! ” ? $ % ^ & ).’); ?>

    I assume this is what is being used? If so I can just add this password hint but what file do I need to edit?

    Many thanks for your help.

    caniwigirl
    Participant

    I am running the current versions of everything as of today’s date… BuddyPress 2.2.3, bbPress 2.5.7 on WordPress 4.1.1

    The problem I am having is that, for the most part, I only want either Public or Hidden groups with their associated forums.

    The directory listing only displays the public groups and the forums only display the public forums.

    As a Site Admin and Keymaster, I can’t even see the hidden groups (although the count increases to show the additional number of hidden groups). In fact, none of the hidden groups show under the ‘My Groups’ tab for me or any user who is a member of a particular hidden group (although the count indicates that they area member of this non-visible group that they can’t get access to). I can see the forums, however.

    Essentially, the Hidden function appears to not be working for groups and forums as neither admins nor members of them can gain access without being provided with the URL.

    #238098
    danbp
    Participant

    Thnak you.
    Have you a test site or a local install where you can make some test ?

    https://buddypress.org/support/topic/when-asking-for-support-2/

    I tried to change role and other fields in new members, but nothing happened.

    On a single regular install, all BuddyPress members have the default role you assigned to new users in WP settings > general. There is nothing to change at this level when they don’t show up on member’s directory.

    If you need some fake BuddyPress users and content, i suggest you to use BuddyPress Default Data, which is great to control if anything is working correctly.

    Deactivate your theme and all other plugins except BP and use Twenty Fifteen while testing.
    Activate also wp_debug in wp-config, and see if you get somme php errors.

    #238095
    danbp
    Participant

    hum… difficult to say at t he moment, as you use 2 different site apparently.

    hxxp://www.anadercategori.org/ and hxxp://pallavoloromana.it/anadercategori/squadre/test7/

    Which site belongs your members to ? Where is buddyPress installed ?

    BuddyPress does not work on installations where you give WordPress its own directory.
    Read here: https://codex.buddypress.org/getting-started/

Viewing 25 results - 5,901 through 5,925 (of 22,621 total)
Skip to toolbar