Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 4,851 through 4,875 (of 31,073 total)
  • Author
    Search Results
  • #250096

    In reply to: Notes Empty

    aerostar1974
    Participant

    Hi,

    I have enabled Options de Notifications (In Settings/Buddypress/Components, all is enabled, in Settings all is enabled except “Enable group creation for all users”)

    I haven’t touch anything in bp-custom or theme-functions, and more, i have tried the web site with many differents Themes, and with no plugin exept buddypress, and always the same problem.

    I have tried in english, and i have the same problem.

    #250087
    DesignLoud
    Participant

    Hmm, it must be a theme override; is that button documented anywhere so that I can inspect the code that runs it?

    #250085
    shanebp
    Moderator

    The images are not stored in the database.
    They are stored in the uploads folder.
    For a member with user_id = 1:
    /wp-content/uploads/buddypress/members/1/cover-image/

    To remove the cover photo, use the ‘Delete My Cover Image’ button at the bottom of this screen:
    .../members/designloud/profile/change-cover-image/

    If you don’t see that button, it may be an issue with your theme.
    To confirm, try switching momentarily to a WP theme like 2013

    #250079

    In reply to: Notes Empty

    danbp
    Participant

    Hi,

    did you enabled Options de notification component in BP settings ?
    Do you omited a custom function somewhere (bp-custom or theme functions.php) ?
    Do you have the same problem when your site is in english ?

    #250077
    danbp
    Participant
    #250076
    danbp
    Participant

    Use your theme CSS file.

    Ask on bbPress forum and read the documentation:

    Step-by-Step Guide to Creating a Custom bbPress Theme


    You may find similar explanation on BuddyPress codex.

    Other solution: https://wordpress.org/plugins/bbp-style-pack/

    #250024
    vohraraghu
    Participant

    @bhagwantmann
    Hey Dear
    Thanks for sharing the helpful Information about this I dont check my plugins and activate the theme on my wordpress site

    Than

    shanebp
    Moderator

    Provide an example of a profile link that results in a 404.
    And an example of the link to the members page.

    It only takes a few seconds to test if it’s a theme or pmpro issue.
    Assuming that it’s not deprives you of valuable clues.

    #250017
    selenii
    Participant

    That saide to me the wpdiscuz support.

    Ok, this is not a regular post or page, this comes from BuddyPress template file. It sees they don’t use the regular <?php comments_template() ?> function in activity template file. The only way to turn on wpDiscuz on buddyPress activity page is editing activity template file and changing its comment function to WordPress Theme standard <?php comments_template() ?> function.

    More info: https://codex.wordpress.org/Plugin_API/Filter_Reference/comments_template

    #249974
    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\messages\compose.php

    Adjust the conditional that shows the checkbox so that the ‘trainer’ role is allowed.

    #249951
    singhnavjeet
    Participant

    Hey modemlooper,

    Thank you very much for the reply.

    I have switched my theme (child theme) to main theme (buddy theme) and also to the default wordpress theme 2015.

    The comment still does not appear to work on any of the themes.

    Also I have deactivated all the plugin still it does not work. :S

    Regards,
    Singh

    #249941
    modemlooper
    Moderator

    Make sure to test plugins and themes by deactivating them and switching theme

    #249938
    jrb9406
    Participant

    I should probably clarify my last post

    I understand CSS, but I’m a beginner at it. I can change CSS attributes of the table like color, font, width, etc. I just can’t figure out what is keeping the data fields so far apart. It doesn’t look like cell spacing, margins, padding, or borders.

    I understand that this may be an issue with my theme, but perhaps someone knows how buddypress setup the table?

    shanebp
    Moderator

    If it was okay on shared, but now is not on VPS – talk to hostgator about it.

    I can only make general suggestions.
    Try switching to a WP theme like 2013.
    Remove any custom code, ex. /plugins/bp-custom.php

    #249866
    sr3
    Participant

    Thanks, I only needed to override the author name in blog post comments, so I searched for the related code in the plugin, modified it and added it to my functions.php in my child theme. Now the username is displayed instead of the full name 🙂

    function sr_get_comment_author( $author ) {
    	global $bp, $comment;
    
    	if( $comment->user_id) {
    		$user=get_userdata($comment->user_id);
    		echo $user->user_nicename;
    	} else {
    		return $author;
    	}
    }
    add_filter( 'get_comment_author', 'sr_get_comment_author' );
    #249865
    navinachettri
    Participant

    I dont know if this issue is specific to me but when I enable redis I get all kinds of weird results.
    My host is cloudways and I have followed this instructions for enabling redis

    1) Could not delete activity streams

    Disabled redis…changed my theme to twentyfifteen and enabled redis once again but
    1) I could not activate the redis plugin….no matter ho many times I activate it, it gets deactivated on its own
    2) The active theme reverted to my original theme on its own
    3) When I try to get to redis plugin settings; get error”You do not have permission to access this ..”

    Is this issue specific to me? Please update on your tests too

    #249832
    dlongm01
    Participant

    Update: the issue is with the bbPress plugin and XTheme. Issue has been added to XTheme bugfix list.

    #249826
    jino01
    Participant

    Thank you so much. What I did was change this part in my member-header.php to
    $name_to_display = bp_get_displayed_user_displayname();

    But all I get is the first name ex: @Daniel

    And I want the full name to show ex: @DanielCuell

    I did it for both the “member header php” files: one that is in the plugins section, and the other which is on the themes/mytheme/buddypress

    Seeing you are a moderator I take you might understand what I am trying to say (as Im not that advanced on this as I would like at the moment)

    What I am trying to achieve is show the name and lastname throughout the whole site, I have managed to show those pretty much everywhere except the members page. My theme’s documentation doesnt show how to do it. I need to hide the usernames and show the first name and last name instead.

    Any help with that will be greatly appreciated.

    #249813
    airsid
    Participant

    Hello,

    WordPress version? Last one
    Theme activated? Customizr
    Plugins dealing with media activated?
    Browser used? Firefox, Chrome
    Host ? o2switch

    I’ve disable cache plugin, lazy load video plugin and clear the browser cache.
    When changing image profile or image cover, the right sidebar goes down and {{data.filename}} text appears next to the profile content div area.

    How can I send you admin access so you can have a close look at it if you have time of course ?

    #249806
    Mathieu Viet
    Moderator

    Hi all,

    Thanks a lot for your feedback, but just saying “it’s not working for me” is not helping that much 🙂

    Let’s share as much infos as possible..

    WordPress version?
    Theme activated?
    Plugins dealing with media activated?
    Browser used?
    Host ?

    I’m saying this because i was able to set my cover image on @christopherwayne website and set my avatar using the wp-admin/profile Extended profile area of his website.

    Perhaps try to clean your browser’s cache…

    #249797
    airsid
    Participant

    Hello,
    Same issue here, even after switching to twenty sixteen theme.
    My actual theme is customizr.

    shanebp
    Moderator

    To confirm that some ( maybe all ) of the Notices are due to your theme,
    try switching momentarily to a WP theme like 2013.
    Do any of the Notices disappear?

    Do you have any plugins that affect Profiles?
    If so, try deactivating them – check for Notices.

    Try deactivating Membership 2 – check for notices.

    #249775

    In reply to: main menu padding

    calvin
    Participant

    May worth a try to check your header.php or other header files of your theme to see whether there are conditionals or conflicts.

    #249774
    christopherwayne
    Participant

    In my case, the problem is solved if I change the theme. I’m not sure if I use ajax.Thank!

    #249773
    calvin
    Participant

    you can block google using robots.txt, you can read about that here https://www.elegantthemes.com/blog/tips-tricks/how-to-create-and-configure-your-robots-txt-file

Viewing 25 results - 4,851 through 4,875 (of 31,073 total)
Skip to toolbar