Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 6,151 through 6,175 (of 31,072 total)
  • Author
    Search Results
  • #237739

    In reply to: Warning of Buddypress

    nyroka
    Participant

    I am having the same issue. My theme is not broken. This happened when I saw an update for buddypress in my notification and I updated. how do I fix this? I run an active social site and my members are seeing this.

    #237735
    Daethian
    Participant

    Ah ok I thought this was a default theme. I’ll try that thanks.

    #237708
    Henry Wright
    Moderator

    Hi @daethian

    You might want to let the theme author know and perhaps they can issue a fix that makes the theme compatible with BuddyPress?

    #237707
    Henry Wright
    Moderator

    Hi @daethian

    Have you tried asking on the theme’s support forum?

    Garydock
    Participant

    Hi danbp, thanks for getting back to me.

    I have deactivated all plugins other than BuddyPress, I then switched to the Twenty Fifteen Theme, the message was still there.

    I then deactivated BP and removed all files in my directory. The message dissapeared.

    I then attempted to reinstal BP on the Twenty Fifteen again without activating any other plugins and the message reappeared again.

    Im not sure where the bp-custom.ph file is if you could help me that would be great, even then I’m not sure what kind of code I would be looking for. As far as I can tell there is no corruption, it just shows this warnning at the top of my header on all themes, is there any way to hide it?

    Kind Regards

    Gary

    #237678
    danbp
    Participant

    Did you allowed blog comments in BP settings ? Also, have you assigned a page for activities ? And did you set permalinks to something else than default ?
    You can also deactivate, save and reactivate, save your permalinks and BP settings.

    FYI bp pages are not considered as an activity, don’t search them there ! 😉
    Also, avoid bp-default theme for testing around issues if you never used it, as it is no more fully part of BP since 1.9

    #237675
    Henry Wright
    Moderator

    Hi @antipole

    This is the kind of thing you’ll want to do. The my_redirect() function hooks to template_redirect so bp_core_redirect() executes at exactly the right time you need it to.

    You’d put it in your theme’s functions.php file.

    function my_redirect() {
    
        // Conditions go here.
    
        $location = 'http://example.com';
        bp_core_redirect( $location );
    }
    add_action( 'template_redirect', 'my_redirect' );

    Be careful when setting your conditions to avoid seeing the dreaded ‘redirect loop’ error.

    Also, the Template Tag Reference will help you. For instance, bp_is_register_page() will help you determine if the current page is the register page.

    Hope this info helps.

    #237659

    In reply to: Title

    Hugo Ashmore
    Participant

    Technically you’re on the wrong forum, you have no instance of BuddyPress running only bbPress and they are two different plugins.

    You might try any of the Title tag plugins out there such as Yoast WP SEO also look at how your theme is handling the title tag in the header and search the WP codex for any guides on filtering the WP title tag to modify the title strings.

    #237657
    Mathieu Viet
    Moderator

    Hi,

    the trouble seems to be that _bp_strip_spans_from_title() is declared by another plugin or a theme or a code in bp-custom.php or in a mu-plugin…

    You should try to find the place were this function is already declared.

    In the meantime you can create a bp-custom.php file at the root of /wp-content/plugins/ and use this gist in it to see if it solves the issue :

    https://gist.github.com/imath/1db3ac2e95c1ce3eb681

    #237655
    danbp
    Participant

    See from here how you can publish on Trac

    Participate and Contribute

    Cannot redeclare _bp_strip_spans_from_title() means generally that 2 functions with the same name are running at the same time.

    This can came from a plugin or a theme.
    For example BP is using bp_strip_spans_from_title, but if your theme use the same function, this provides a colision and you got a php fatal error.

    Activate 2015 and see if the issue still occurs.

    Meanwhile, I just updated all my BP installs (with different themes) without any errors.

    #237654

    In reply to: Title

    danbp
    Participant

    Hi,

    Usually, site name is defined during WP install and can be changed from within WP settings.

    dashboard > general > site name

    If it’s already done, see if your theme has a specific setting for such and change accordingly from there.

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

    #237633
    sophiats
    Participant

    Hey, this

    “I took made a buddypress template, just a copy of the page.php template, and changed the voyager loop out for a simplified loop”

    is actually taken from the theme support from someone who fixed this issue but without further explanation, this is why I asked here, see if I have any chances. 🙂

    #237632
    Henry Wright
    Moderator

    Hi @stsouk

    Have you tried contacting the theme author to see if the theme can be made compatible? Perhaps they can issue an official fix if one is known?

    #237588
    mrgiblets
    Participant

    Hey @danbp,

    Thanks for the tip but in the meantime I went and bought Buddyboss Wall and that seems to be doing the job perfectly.

    I think I was having trouble as I am using a completely blanked WP theme with everything stripped so I can style everything to my liking. But the css structure of both WP & BP can get very confusing at times 😉

    danbp
    Participant

    Why would you uninstall BP and reinstall it, you even don’t know where the issue came from ?

    Take a breath and stay calm. 😉

    Activate Twenty Fifteen theme.
    Deactivate all plugins except BP.

    check for anything is correct. If it is, you can reactivate your plugins one by one, checking after each for an issue, untill you find eventually a culprit.

    If all is correct, the only thing who may bring an issue at this stage is your theme.

    Activate it and see the result. If you get the same issue, you should contact the theme support.

    We cannot help you for this, as it is a premium theme and we have no free access to it’s code.

    Please read also here, where some basics are explained.
    https://codex.wordpress.org/Debugging_in_WordPress

    Hugo Ashmore
    Participant

    Have you got these errors though with a standard WP theme and no additional plugins running? This is most likely an issue between theme or a plugin interacting with how BP performs and causing the issue/s; we could look and probably find some work around for the padding issue however the other issue is a problem with the @mentions interface and your SC is showing or displaying in the textarea an element attribute which shouldn’t display, why it is can only be guessed at at this stage – if this issue occurred when running one of the WP themes without any other plugins activated we could look further on the basis that it were a bug with BP, but I don’t think I can replicate this on any of my installs.

    Hugo Ashmore
    Participant

    @svend-rugaard While it’s great of Henry to try and see what the issue is, please bear in mind there is a limit to the extent of help we can offer on what is a themeing issue with a third party theme and to some extent lies more with the theme to perhaps help out with.

    #237566
    Matthias
    Participant

    Hi @danpb,
    I found a snippet in my theme functions.php that causes the missing link to profile in all @mentions in bbpress. When I delete the following code all @mentions in the bbpress topics and replies are shown.
    Can you have a look at the following code. Maybe you can see, why it deletes the mention links to the profiles…?

    // replies visible only for logged in users
    function bb_auth_reply_view( $reply_id ) {
    $reply_id = bbp_get_reply_id( $reply_id );
    
    // Check if password is required
    if ( post_password_required( $reply_id ) )
    return get_the_password_form();
    
    $content = get_post_field( 'post_content', $reply_id );
    
    // first topic reply shouldn't be hiding
    $rep_position = bbp_get_reply_position($reply_id);
    
    // if user is not logged in and not the first post topic
    if( !is_user_logged_in() && $rep_position > 0 ) {
    return "replies only for logged in users!";
    } else {
    // return normal
    return $content;
    }
    }
    add_filter( 'bbp_get_reply_content', 'bb_auth_reply_view' );
    Svend Rugaard
    Participant

    okay so you need access to what ? Just account or theme ? Else can i return in 3 hrs about because i am need to do work now from my normal work 🙂

    Svend Rugaard
    Participant

    not on the link ? Either ? im using GameZone from Themefuse

    Henry Wright
    Moderator

    Not from the screenshot. I’d need to view the source whilst logged in. Which theme are you using?

    Henry Wright
    Moderator

    Hi @svend-rugaard

    This looks like a CSS issue with your theme.

    My guess is there is some sort of left padding on the text field.

    #237553
    Svend Rugaard
    Participant

    i must have been really tired yesterday so after read a little guides i found out my mistake was i have put it in child theme instead of plugin folder. Thansk for help

    #237550
    Henry Wright
    Moderator

    Hi @jturet

    There’s likely a plugin, theme or custom code snippet you have installed still using the deprecated function bp_core_delete_notifications_by_type(). The notice is telling you to use bp_notifications_delete_notifications_by_type() instead.

    #237549
    Svend Rugaard
    Participant

    okay im awake again, should this bp-custom.php be in my childtheme maybe thats why it isnt working ?

Viewing 25 results - 6,151 through 6,175 (of 31,072 total)
Skip to toolbar