Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 3,851 through 3,875 (of 31,074 total)
  • Author
    Search Results
  • #260811
    jono543
    Participant

    Hi,

    Thank for your help, I tried another theme and it seemed to work. So looks like its a theme issue. The theme, plugins and wordpress core is all updated to latest version.

    I’ll contact mycred/theme developers to see how to fix this.

    Thanks much appreciated 🙂

    #260808
    danbp
    Participant

    HI,

    BP use the same pagination system as WordPress. Here a tutorial to get this to work for WP

    And here a list of “pagination” related functions:
    http://hookr.io/plugins/buddypress/#index=a&search=pagination

    #260806
    danbp
    Participant

    Hi,

    you have to try with a twenty theme, to ensure that it is not the theme who generate an issue.
    And if it still occurs, you have to ask for help on mycred support. We can’t help you much with third party plugin or themes “who need BuddyPress”.

    In this particular case, is your theme updated for BP 2.7 ?
    Check first yourself and ask evtl. on the theme support

    Template Updates 2.7

    #260770
    fuel2water
    Participant

    Hi @jawynan1, this exactly was I am looking for since ages. May I ask where you put the bp-custom-php file? I just registered within the site you are mentioning here, but I cant find the function to create a direkt message nor do I see a button on the listings page.

    It would be so much help for me, if you could give me a quick step by step overview. Just some info where you put the code above and if there is something else to modify.

    Also, may I ask what theme you are using? Looks like Listify, am I right?

    Thanks a million for your time!!

    #260758

    In reply to: Profile Page

    Earl_D
    Participant

    The look of your pages including the profile will be determined in large part by the theme you are using. Not sure if the image you referenced is the default buddypress theme with modifications or another WordPress theme. Pretty much any well designed WordPress theme should work but those made compatible with BP work best. You may want to try searching the WP theme directory with Buddypress as a keyword. There are also premium themes designed for BP which create their own look and feel for your site.
    Hope that helps

    #260742
    d6collab
    Participant

    Okay, I deactivated every plugin I have, except for BuddyPress and rtMedia. It did not resolve the problem. I can still only upload media from my own activity stream but not from the sitewide activity stream.

    I’m at a loss here. I really need to be able to resolve this. I even activated the Twenty Sixteen default theme to make sure it wasn’t a conflict with my theme and no dice.

    Why can’t media be uploaded from the sitewide activity stream? Anybody have any ideas?

    Please, I’m getting a little desperate here, as I don’t know what else I can do other than deactivate all the other plugins and activate one of the default WordPress themes, which I’ve already done with no resolution. Thanks for any insight you can give!

    #260723
    Earl_D
    Participant

    Have you asked the ithemes support folks? I thought I came across something about a conflict there a while back but I may be wrong. I use wordfence for security and it works really wel, they responded to a problem their plugin was causing with BP right away offered a work around and then a fix.

    #260705
    danbp
    Participant

    Hi,

    unable to reproduce your issue. Clear all cache you use including browser cache.
    Activate wp_debug in wp-config.php

    Disable all plugins but BP. Remove any custom code in bp-custom or child theme functions.php
    Activate a Twenty theme and give a try.

    Reactivate one by one

    L.A. Randle
    Participant

    Hi,
    I switched to twenty-sixteen theme, and tried creating a private group;posted and I got the same results. Anything that I posted in the private group was posted on my personal profile. So it isn’t the theme…..

    shanebp
    Moderator

    Switch momentarily to a WP standard & free theme that comes with WP – like TwentyThirteen, etc.
    Then check to see if your issue still exists – if it doesn’t, then you know the issue is somewhere in your premium theme.

    L.A. Randle
    Participant

    This seems to happen on all groups. And I’m using a premium 2016 theme that is updated often.

    Venutius
    Moderator

    Does this happen on all groups? Did you try it running the 2016 theme?

    Slava Abakumov
    Moderator

    You don’t need a BuddyPress theme, any WordPress theme will work just fine.
    You can create a child theme for your current theme and modify BuddyPress behaviour through it. Copy /plugins/buddypress/bp-templates/bp-legacy/buddypress/ to your theme (in root).

    Remove everything that you don’t need, and leave only /your-theme/buddypress/members/single directory. In that dir you should work with home.php files and others, that are relevant to you.

    But now I see that redefining BuddyPress template only won’t work as expected. You also need to create page-members.php file, where members – is the slug of you Members Directory page. It should be modified with

    if ( bp_is_user() ) {
        get_header('slim');
    } else {
        get_header();
    }

    and same for get_footer('slim') instead of the default usage. You will need to create header-slim.php and footer-slim.php files as well, and THERE you should remove all your navigation and all markup you don’t want that pages to have.

    So yeah, quite a work, but doable once you dive into that. Hopefully I gave you the direction and general idea.

    #260651
    danbp
    Participant

    The single topic view template (loop-single-reply.php) has 2 actions hooks you can use:

    do_action( 'bbp_theme_before_reply_author_details' );
    do_action( 'bbp_theme_after_reply_author_details' );

    In so far, the above function should work.

    Try this one. Add it into your theme function to test. And if it works from there, remove it and add it to your child-theme functions.php file.

    function country_flag() {
    if( class_exists( 'bbPress' ) ) :
    $user_id = bbp_get_reply_author_id();
    $country = xprofile_get_field_data( 'country', $user_id );
    
    	echo '<div class="country">'. $country .'</div>';
    endif;
    }
    add_filter( 'bbp_theme_after_reply_author_details', 'country_flag' );

    Activate also wp_debug in wp-config.php while testing. It could be possible you have an error somewhere who avoid the function to work properly…

    If it still doesn’t work, ask for help on the bbpress support.

    joncwhall
    Participant

    Hi Slava,

    Thanks for the help 🙂

    Wouldn’t I need to be using the BP theme (instead of the plugin) to use child themes?

    I’ll have a go with the templates – do you know which ones I would need to modify for this please?

    A sample profile can be seen at http://www.theacademygtc.co.uk/buddy-old/test/

    Thank again for you help 🙂

    Jon

    #260635

    In reply to: Actions not taken

    Mark elayan
    Participant

    @slaffik i already disabled every plugin but bbpress and buddypress, but still same, .htaccess nothing modified but the expires and also tried without’em.

    changed to many themes, but also still the same.

    Maybe its something in the DB?
    how can i clear all BB and BP from the DB?

    #260630
    Slava Abakumov
    Moderator

    That’s mainly a styling thing.
    You should be comfortable using Firefox or Chrome and their developer consoles, where you are able to preview changes.

    These links will be help you as well:

    Add BuddyPress Styles to a Theme


    https://buddypress.org/support/topic/custom-css-changes/

    Don’t forget to either include your styles via external file in your plugin or use your child themes, not to lose changes on parent theme update.

    Slava Abakumov
    Moderator

    You can’t do that in PHP. Well, actually you can – but you will break all the styling, as you will filter our header/footer.php files include. So basically it’s not a good idea.

    The best idea – to use a child theme. You can than even switch to that child theme for specific pages on your site. One of the ways to do that: https://premium.wpmudev.org/blog/wordpress-different-themes-for-pages/

    Another idea – do some magic with BuddyPress templates. It’s totally possible, but you will quite heavily modify them (that will complicate future maintainability).

    Also it would be easier to help you if you provided a URL to your site.

    #260603

    In reply to: Actions not taken

    danbp
    Participant

    Have you tested with another browser ? Can you provide a site url ?
    Could it be that you used a framework theme or one with plenty custom settings ?

    #260602

    In reply to: Actions not taken

    Mark elayan
    Participant

    @danbp nop, I don’t use any caching plugin, neither cdn caching, also as I already mentioned I did disable all plugins, change to twelvesixteen theme wth nothing but bbpress and buddypress active, also took all extra CSS and Js and ang files out of the loop, but still same thing.

    The jq is working like when deleting and activity (am talking all frontend) the activity disappears until refreshed it comes again, same with the accept /reject friend request.

    And there is no errors in the terminal side nor in wp debug logs.

    #260600
    danbp
    Participant

    If it doesn’t work in your child theme functions.php, use bp-custom.php

    Standalone because bbP is used separetely and not as group forum, which is a popular config when BuddyPress is activated. FYI (in case of):

    Installing Group and Sitewide Forums

    #260595
    danbp
    Participant

    Check documentation
    https://codex.wordpress.org/Child_Themes

    Once child is activated, as soon as you click on appearence > editor it is the child style.css file which is showed.

    https://codex.wordpress.org/Appearance_Editor_Screen

    https://codex.wordpress.org/CSS

    Closing this topic as it subject is not related to BuddyPess.

    #260592
    danbp
    Participant

    Hi,
    you have to use a child-theme for this or you will loose any custom rule at next theme update.

    You can use something like this, where in your child style.css file has no importance.

    a,
    a:visited,
    a:hover,
    a:focus,
    a:active {	
    	color: #b61a1a; /*red */
    }

    http://www.w3schools.com/css/css_link.asp

    #260591

    In reply to: [Resolved] Last activy

    shanebp
    Moderator

    Create a template over-load of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.php

    In the overload, remove the span that shows the last_activity blurb.

    #260585
    danbp
    Participant

    hi @davehakkens,

    You use a standalone bbPress. Normally you have to ask on bbPress forum for such questions.

    Add this to bp-custom.php or child theme functions.php and give a try.

    i tested it with group forums only, so i couldn’t test all the filters.
    You might to find/experiment others.

    It’s a working example who fires the country value. But you’ll certainly have to complete it to get the flag image.

    function country_flag() {
    $user_id = bbp_get_reply_author_id();
    $country = xprofile_get_field_data( 'country', $user_id );
    
    	echo '<div class="country">'. $country .'</div>';
    	
    }
    add_filter( 'bbp_theme_after_reply_author_details', 'country_flag' );
    //add_filter( 'bbp_theme_before_topic_author', 'country_flag' );
Viewing 25 results - 3,851 through 3,875 (of 31,074 total)
Skip to toolbar