Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 3,376 through 3,400 (of 22,650 total)
  • Author
    Search Results
  • #267821
    aleon4
    Participant

    Multisite running WordPress 4.7.3
    Subdirectory
    BuddyPress Version 2.8.2
    BuddyBoss Social Learner theme -Using child theme
    Did not modify core files

    The other website we’ve tested on is using the WPLMS theme. Comment moderating/notifications were working until we activated BuddyPress.

    #267813
    mika69400
    Participant

    Hello,

    Thank you for your help . I put the debug on, this is the only mistake I noticed today when I had activities that have disappeared :

    [31-Aug-2017 16:40:43 UTC] PHP Notice: is_404 was called incorrectly. Conditional query tags do not work before the query is run. Before then, they always return false. Please see Debugging in WordPress for more information. (This message was added in version 3.1.0.) in /var/www/clients/client1/web20/web/wp-includes/functions.php on line 4139

    Do you know if this can come from there? What to do ?

    Thank you …

    #267812
    ulferlingsson
    Participant

    Withdrawn, I realized now that the registration page is a WordPress feature, not buddypress

    #267798
    r-a-y
    Keymaster

    If you’re just relying on the basics like username, password and email address, you should be able to look at various WordPress user import plugins:
    https://wordpress.org/plugins/search/user+import/

    And then to modify one of them to fit your current database schema. If you’re able to export your data to CSV, then you could probably use one of the available plugins.

    However, for avatars, you would need to write a separate script to import them though.

    r-a-y
    Keymaster

    You shouldn’t rely on PHP conditionals for CSS targeting.

    Use your browser’s developer console and check the various body CSS classes and then target the ones you want to use in your CSS stylesheet.

    Why not use something like?

    body.forums .YOUR-SELECTOR {color:red !important;}

    If you must use PHP conditionals, use the ones that BuddyPress provides:
    https://buddypress.trac.wordpress.org/browser/tags/2.9.1/src/bp-core/bp-core-template.php#L2034

    View the list of functions in that file for all the ones you can use.

    #267785

    In reply to: remove buddymobile

    Henry Wright
    Moderator

    Try asking this question on the plugin’s support page:

    BuddyMobile

    #267765
    r-a-y
    Keymaster

    Do you see any debug error messages when you enable WP_DEBUG?
    https://codex.wordpress.org/Debugging_in_WordPress

    In wp-config.php, set WP_DEBUG to true, WP_DEBUG_DISPLAY to false to prevent error messages showing on your site, and WP_DEBUG_LOG to true so error messages are logged to wp-content/debug.log.

    Next, when the activities disappear, check the log and see what it says.

    Also, always strip down your install to see if there is a problem with plugins or your theme. For instance, your caching and DB plugins could affect this. Try disabling some plugins to see if the problem persists.

    #267741
    Henry Wright
    Moderator

    Hi @ulferlingsson

    This is very likely to be theme-related. I notice you’re using the Niche theme. Try contacting the theme author to let them know there’s an issue.

    #267692
    press786
    Participant

    I am still facing this issue, even after giving all the permission & uploading an image with a small name.
    Using
    Buddypress 2.8.2
    wordpress 4.7.5
    Please provide a resolution to this, I want to have an upload avatar option in the register page.
    I am using “Buddypress avatar upload ajax” plugin for this.

    #267685

    In reply to: Seeking Solution

    shanebp
    Moderator

    bbPress is the only real option for forums.

    Depending on what features you need, this may suffice: BuddyPress Simple Events

    You can also get it here: PhiloPress – BuddyPress Simple Events

    Try this plugin. It hasn’t been updated for 2 years, but it works perfectly for me.

    BuddyPress Admin Only Profile Fields

    Adds these options to the visibility options: ‘Admin’, ‘Everyone (Admin Editable)’ and ‘Only Me (Admin Editable)’

    Hope that helps

    #267579
    shanebp
    Moderator

    Have you tried BP Simple Private ?

    You can also get it here: PhiloPress

    yeshivadan
    Participant
    #267515
    Henry Wright
    Moderator

    Hey @udarmo

    Thanks for the report. Can you open a Trac ticket for this so it can be investigated?

    https://buddypress.trac.wordpress.org/

    ygagnon2016
    Participant

    I like your idea about calling a function from the php for the modal window.

    Just FYI .. this is what I have set up for colorbox (which isn’t a real ajax call, you’ll see):

    echo '<a class="ajax cboxElement launch-dashboard" href="' . get_stylesheet_directory_uri() . '/buddypress/members/single/dashboard.php?username=' . $row->username . '" title="Dashboard">Launch Dashboard</a>';

    If you aren’t familiar with how colorbox works … note that the modal window is being enabled by simply adding the “ajax” class to the link … similar to how a lightbox popup works.

    Ideally .. it’d be great if I didn’t have to call these 2 lines in my dashboard.php file either:

    require("../../../../../../wp-blog-header.php");
    require('../../../../../../wp-load.php'); 

    It’s my understanding that this is a terrible approach anyways .. since the WordPress engine is supposed to be already loaded in the background (making it redundant).

    So how would I implement something like what you’ve suggested? Could you show me an example, maybe? I’m assuming that if I don’t load the WordPress engine in my dashboard.php file, that I wouldn’t be able to call a function that’s been added to my functions.php file, right?

    Here’s a dumb question. Should I maybe just place my dashboard.php file in a different location within my child theme directory structure, perhaps? I ask because I’m starting to think that I might need to treat this as a normal WordPress template file .. instead of a standalone PHP script. Any thoughts?

    vgvidscom
    Participant

    Dear R-A-Y,

    Thank you for the support, appreciate it, and sorry I did not check google myself to find out you need to create bp-custom.php in case it does not exist yet.

    It seems there is a conflict with my theme after extra review of my theme builders’ team.

    Once they update the theme it hopefully works with the updated wordpress and buddypress. If I need your help afterwards, I will send a new request.

    Only issue left is that I don’t know why the lines of coding don’t match in my buddypress version, I never changed code in the core buddypress files.

    Thanks for the support,

    Bart

    VGVIDS

    r-a-y
    Keymaster

    You can check the “Users > Pending Accounts” page in the WordPress admin dashboard. Then, you should be able to just delete them from there.

    It might be worthwhile for BuddyPress to have a built-in script that removes pending accounts that are older than a month or so.

    Also, just to get some clarity, would inactive users be causing BuddyPress to slow down all functions on my website, such as loading a member profile, or the activity page?

    Not really.

    If you indeed do have a popular website with many users that are concurrently logged in and performing operations, then this will slow down your site. You will need to utilize object caching plugins and the like (I believe WPEngine already has something built in for this). You might also need to consider upgrading your WPEngine plan.

    We’re also thinking of doing some performance enhancements in the next version of BuddyPress that will decrease the amount of code that needs to run on non-BuddyPress pages.

    #267493
    r-a-y
    Keymaster

    I’m guessing you have disabled Search Engine Visibility in WordPress.

    If you have, view the following:
    https://github.com/boonebgorges/buddypress-group-email-subscription/wiki#1-bbpress-doesnt-record-its-forum-posts-into-the-group-activity-stream--why

    #267482
    shanebp
    Moderator

    Have you tried: BP Local Avatars

    You can also get it from the WP plugin repo: https://wordpress.org/plugins/bp-local-avatars/

    ygagnon2016
    Participant

    Although that would definitely work (and I have considered using this approach) … that would definitely be a security breach, as the PHP script could simply be linked to directly by any logged in WordPress user. So that obviously wouldn’t work in my situation.

    Any other suggestions?
    – Yvan

    #267462
    r-a-y
    Keymaster

    Cannot duplicate this.

    You might have a javascript conflict.

    Try disabling all plugins except BuddyPress and try again. If it works, then it’s a plugin conflict somewhere. If you’re running a custom theme that has purported BuddyPress support, also switch to a default WordPress theme.

    r-a-y
    Keymaster

    What is the “latest buddypress version” for you?

    If you were using v2.9.0, then the patch I linked to should apply cleanly. There should be no changes between your copy of /bp-core/bp-core-avatars.php and v2.9’s /bp-core/bp-core-avatars.php.

    If your version is v2.9.0, then I would recommend re-installing BuddyPress from the wordpress.org plugins repository.

    vgvidscom
    Participant

    Hi,

    I’m running latest buddypress version and WordPress version: 4.8.1

    #267430
    abernreiter
    Participant

    Listing on Homepage

    Click on Zeppy then this screen comes. its ok

    vgvidscom
    Participant

    Dear R-a-Y,

    Thank you for the quick reply.

    I don’t understand the first part of your reply. If I follow the link you’ve provided, I see I have to add the following code:

    https://buddypress.trac.wordpress.org/attachment/ticket/7578/7578.01.patch

    I have to add this code in: wp-content/plugins/buddypress/bp-core/bp-core-avatars.php.

    However, the link you’ve provided with the code that I have to place between the lines 1402 and 1403, does not match with what I see when searching for that spot in bp-core-avatars.php. See the following image to see what I mean:

    http://prntscr.com/g5r90g

    The second part of your question: pasting the following code in functions.php:

    // Replace BP’s avatar override filter at a higher priority:
    remove_filter( ‘get_avatar_url’, ‘bp_core_get_avatar_data_url_filter’, 10 );
    add_filter( ‘get_avatar_url’, ‘bp_core_get_avatar_data_url_filter’, 99, 3 );

    –> seems not to do the trick. I pasted the code in my child theme functions.php

    The other option: pasting it in wp-content/plugins/bp-custom.php I was not able to do, because I cannot find bp-custom.php. Not in plugins, and also not in the Buddypress plugin folder. What do you mean with this or where can I find it?

    Hopefully you can help me out, thanks.

Viewing 25 results - 3,376 through 3,400 (of 22,650 total)
Skip to toolbar