Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 3,351 through 3,375 (of 31,071 total)
  • Author
    Search Results
  • #267660
    dhsllc
    Participant

    I didn’t have a big problem with the look of the registration but the little cosmetic changes I made with handled with CSS. However, the message that appeared after the form was submitted, that needed work.

    To customize it, I made a copy of register.php, modified the section where the message appeared and added this new directory in my child theme > mytheme/buddypress/members/register.php

    Looks much better now. Hope this helps.

    #267654
    awpt
    Participant

    anyone solved this problem? When I get the css file from buddypress plugin to the css folder in my theme it doesnt show it too.It saves the cover image because when I remove the file I can see it but the problem is when i make changes on the css file I can also see the changes.

    Is there any required php file to integrate it in the correct mode?

    A screensho from my theme the black background is from just a css command not an image.
    https://s2.postimg.org/f8lwj34o9/Schermata_2017-08-22_alle_10.37.16.png

    #267621

    In reply to: Custom Code

    peter-hamilton
    Participant

    1. You could use the template for buddypress – members – single – settings
    Here you could add a link inside the navigation div, right after the call to get-options-nav

    This should be in your buddypress folder in your child theme.

    2. I do not know

    #267613
    Hugo Ashmore
    Participant

    @winstart I can’t replicate any issue with avatar or cover image uploads, can you ensure you have any third party plugins disabled and test again with a plain WP/BP install preferably running a Stock WP theme i.e 2017.

    I’ve closed the trac ticket for the moment, that’s more suitable when there is a proven issue.

    #267604
    Henry Wright
    Moderator

    You should use your theme’s style.css document. Editing core files isn’t recommended.

    #267574

    In reply to: Single line text field

    Brajesh Singh
    Participant

    Hi Carsten,
    Do you want to disable the toolbar(Rich text area) and use plain text area?

    If that is the case, you can put following line in your theme’s functions.php or the bp-custom.php(in the plugins directory)

    
    add_filter( 'bp_xprofile_is_richtext_enabled_for_field', '__return_false' );
    
    

    Hope that helps.
    Regards
    Brajesh

    Henry Wright
    Moderator

    The screen-reader-text accessibility class is something that all themes should have I agree. You’ll likely find some RTL styles that are worth keeping also.

    Steve Taylor
    Participant

    Thanks. I was wary because @danbp suggested otherwise: ‘Yes i understand (i’m also using a bootstrap theme), you can do like you want. But don’t claim after that that BP doesn’t work correctly.’ You’re saying that ‘doesn’t work correctly’ means ‘won’t be styled correctly’? There seems to be a confusion between functionality and presentation here.

    Henry Wright
    Moderator

    Hi @gyrus

    You can de-queue BuddyPress styles like @r-a-y suggested in that thread (see #202777). This won’t break anything functionality wise although, of course, it will change your theme’s look and feel because all of the styling information will be gone.

    #267514
    udarmo
    Participant

    theme? it is not theme’s problem.

    #267511
    Anthony Tornambe
    Participant

    You have to update the theme in latest version to fix this issue.

    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

    Your line numbers do not match up with v2.9’s, which is why I recommend re-installing. Not sure how re-installing will cause problems unless you have directly modified core files in the past.

    Regarding bp-custom.php, a quick search on Google would have explained what to do with it. Regardless, here’s the link to find out more:

    bp-custom.php

    If the code snippet I provided didn’t work in your theme’s functions.php, it most likely will not work in bp-custom.php either.

    The other potential issue is there might be a plugin conflict.

    vgvidscom
    Participant

    Dear r-a-y,

    I have the latest version v.2.9.0. I did not re-install yet, since that can maybe cause problems with my setup.

    I found the spot where I have to add your code, see image: http://prntscr.com/g6uoav

    However, I don’t see it fix the problem unfortunately.

    I also added the code you’ve provided again as your second solution under childe theme functions.php –> the code does not seem to the trick either, also not in combination with the 1 above. See image:
    http://prntscr.com/g6usss

    I don’t know yet what you mean with: wp-content/plugins/bp-custom.php , do you mean wp-content/plugins/buddypress/bp-custom.php? Anyways, also in this location I can’t find bp-custom.php

    Hopefully you can help me out now.

    Best regards,

    Bart

    VGVIDS

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

    #267442
    Brajesh Singh
    Participant

    Hi,
    You can put this in your bp-custom.php or yoour theme’s functions.php

    
    add_filter( 'bp_activity_use_akismet', '__return_false' );
    

    That should stop akismet from checking activity.

    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.

    #267422
    r-a-y
    Keymaster

    I cannot duplicate this report.

    Can you test and see if this is due to a plugin conflict? Try disabling all plugins except BuddyPress to see if the problem still occurs.

    Also try switching your theme.

    r-a-y
    Keymaster

    See:

    Buddypress avatars are blurry for post authors

    If this doesn’t fix the problem, let us know.

    It might be the case that a plugin is overriding BuddyPress’ avatar URL, you could try the following in your theme’s functions.php or wp-content/plugins/bp-custom.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 );
    
    #267397
    Henry Wright
    Moderator

    In your experience how compatible is buddyboss?

    I’ve used a good number of BuddyBoss plugins and themes with BuddyPress without problems. If you do find an issue be sure to report it to them, their support is very good.

    #267391
    r-a-y
    Keymaster

    Nobody responded because a fresh BuddyPress install does not exhibit this problem and you didn’t provide enough details.

    You can try disabling all your plugins except BuddyPress or changing your theme to see if the problem is with a plugin or theme.

    #267382
    ajobbins
    Participant

    Same issue here – patch also fixed.

    Looks like both the OP and I are using the same theme – Extra by Elegant Themes

    #267347
    Henry Wright
    Moderator

    This might be a theme issue. Try contacting the theme author. Hopefully they can issue a fix. It might be worth mentioning Twenty Fifteen doesn’t have the problem.

Viewing 25 results - 3,351 through 3,375 (of 31,071 total)
Skip to toolbar