Search Results for 'theme'
-
AuthorSearch Results
-
April 12, 2015 at 4:54 pm #237739
In reply to: Warning of Buddypress
nyroka
ParticipantI 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.
April 12, 2015 at 4:31 pm #237735In reply to: Notification view is borked
Daethian
ParticipantAh ok I thought this was a default theme. I’ll try that thanks.
April 11, 2015 at 8:20 pm #237708In reply to: Notification view is borked
Henry Wright
ModeratorHi @daethian
You might want to let the theme author know and perhaps they can issue a fix that makes the theme compatible with BuddyPress?
April 11, 2015 at 8:19 pm #237707In reply to: Help editing BP Column theme
Henry Wright
ModeratorHi @daethian
Have you tried asking on the theme’s support forum?
April 11, 2015 at 7:05 pm #237700Garydock
ParticipantHi 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
April 11, 2015 at 11:59 am #237678In reply to: No pages, posts or comments in Activity
danbp
ParticipantDid 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.9April 11, 2015 at 11:45 am #237675In reply to: [Resolved] Redirecting Register link
Henry Wright
ModeratorHi @antipole
This is the kind of thing you’ll want to do. The
my_redirect()function hooks totemplate_redirectsobp_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.
Hugo Ashmore
ParticipantTechnically 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.
April 11, 2015 at 9:11 am #237657In reply to: Groups function not working
Mathieu Viet
ModeratorHi,
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 :
April 11, 2015 at 8:57 am #237655In reply to: Groups function not working
danbp
ParticipantSee from here how you can publish on Trac
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.
danbp
ParticipantHi,
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/April 10, 2015 at 11:15 pm #237633In reply to: Buddypress not working with my Theme
sophiats
ParticipantHey, 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. 🙂
April 10, 2015 at 11:11 pm #237632In reply to: Buddypress not working with my Theme
Henry Wright
ModeratorHi @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?
April 10, 2015 at 12:59 am #237588mrgiblets
ParticipantHey @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 😉
April 9, 2015 at 7:42 pm #237583danbp
ParticipantWhy 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_WordPressApril 9, 2015 at 6:06 pm #237576Hugo Ashmore
ParticipantHave 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.
April 9, 2015 at 3:29 pm #237567Hugo 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.
April 9, 2015 at 3:07 pm #237566In reply to: @mention autolink to profile
Matthias
ParticipantHi @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' );April 9, 2015 at 2:08 pm #237563Svend Rugaard
Participantokay 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 🙂
April 9, 2015 at 2:02 pm #237561Svend Rugaard
Participantnot on the link ? Either ? im using GameZone from Themefuse
April 9, 2015 at 1:34 pm #237560Henry Wright
ModeratorNot from the screenshot. I’d need to view the source whilst logged in. Which theme are you using?
April 9, 2015 at 1:21 pm #237556Henry Wright
ModeratorThis looks like a CSS issue with your theme.
My guess is there is some sort of left padding on the text field.
April 9, 2015 at 12:22 pm #237553In reply to: [Resolved] Mention tag in forum how to get it ?
Svend Rugaard
Participanti 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
April 9, 2015 at 10:05 am #237550In reply to: Debug output on Profile Page
Henry Wright
ModeratorHi @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 usebp_notifications_delete_notifications_by_type()instead.April 9, 2015 at 9:47 am #237549In reply to: [Resolved] Mention tag in forum how to get it ?
Svend Rugaard
Participantokay im awake again, should this bp-custom.php be in my childtheme maybe thats why it isnt working ?
-
AuthorSearch Results