Search Results for 'theme'
-
AuthorSearch Results
-
April 17, 2015 at 7:56 am #237966
In reply to: Profile Page
danbp
ParticipantHi Christina @polkadotheart,
have you tested with one of WP’s default theme ? If nothing change with theme, try to:
– play with the display position, website before website name for example (use drag’n’drop in admin interface).
– change the field visibility. Both website fields are required. Use same setting as for Location.
So far, no other idea.
April 17, 2015 at 7:55 am #237965In reply to: Profile Page
Henry Wright
ModeratorThis is likely either a CSS or markup issue with your theme. Try sending the theme author a message notifying them of the problem.
April 15, 2015 at 8:13 pm #237939In reply to: Unable to Edit Profile
shanebp
ModeratorSo when you go to your profile screen and click ‘Profile > Edit’ you get a blank screen?
Try to narrow down the potential issues.
What is the browser url on that screen? Do you see the site header?
What theme are you using?
Try switching to a WP theme, like TwentyThirteen.
Try deactivating your other ‘extensions’.
April 15, 2015 at 3:56 pm #237921In reply to: [Resolved] Activity stream – show personal activity
leanneoleary
ParticipantThat’s great, thanks!
Unfortunately the theme Im using has two sets of filters; one set of filters is listed across the top with ‘All Members’, ‘Friends’, ‘Favorites’, ‘mentions’. This is where I want to add ‘Personal’. Then there is another filter in the form of a drop down which has ‘new members’, ‘posts’, ‘comments’ etc which is where your code has placed the ‘personal’ filter option.
This is the code I currently have in activity/index.php:
<li id="activity-me"> <a id="just-me" href="<?php echo bp_loggedin_user_domain() . bp_get_activity_slug() ?>">Personal</a>Is it easy to adjust the code above so that it uses the code you have supplied to add the correct ajax filter? Ive tried playing around with your code but had no joy getting it to work.
Many thanks for your help.
April 15, 2015 at 12:18 am #237894In reply to: Remove Email requirement
Dani-Girl
ParticipantMade the change to legacy and the change didn’t show up, made the change to default and it showed the changes.
thanks for the template links. will look at that and create a new theme to reflect the workaround.
April 14, 2015 at 10:30 pm #237891In reply to: Remove Email requirement
shanebp
ModeratorUnless you’re specifically using the default theme, you only have to change this file:
\buddypress\bp-templates\bp-legacy\buddypress\members\register.phpAnd the recommended approach is to create a template overload in your theme:
April 14, 2015 at 10:14 pm #237890In reply to: Remove Email requirement
Dani-Girl
ParticipantSo, for a temporary solution, I edited the BuddyPress register.php page (in both Default theme and legacy template) to generate a random email address each time the register page loads, and hid the email required field.
would like an option, however, where I don’t have to touch the actual BuddyPress code.
April 14, 2015 at 8:47 pm #237886In reply to: Hello. BP Activity Stream
nblxhd
ParticipantYes, but this plugin does not work, as I understand it with the theme – Kleo
On Your recommendation put on the server to PHP 5.6
Plugin Group organiser I only need to change the group slug.
April 14, 2015 at 5:08 pm #237877shanebp
ModeratorThis is probably theme related.
This is the default template:
\buddypress\bp-templates\bp-legacy\buddypress\groups\groups-loop.phpYou’re using a custom template.
Take a look at the code generating the links in your groups loop.
Or there may be a function in your theme that filtersbp_group_permalink()or permalinks in general.April 14, 2015 at 4:47 pm #237873In reply to: [Resolved] Activity stream – show personal activity
shanebp
ModeratorYou want to add a ‘Personal’ option to the ‘Show’ selector on Site Wide Activity?
Try this in your theme/functions.php or in bp-custom.php
function leanne_activity_filter_options() { if ( is_user_logged_in() ) echo '<option value="personal">Personal</option>'; } add_action( 'bp_activity_filter_options', 'leanne_activity_filter_options' ); function leanne_ajax_querystring( $query_string, $object ) { if ( 'activity' != $object ) return $query_string; if ( ! bp_is_activity_directory() ) return $query_string; $query_args = wp_parse_args( $query_string, array() ); $page = $query_args['page']; if( isset( $query_args['action'] ) && $query_args['action'] == 'personal' ) { $query_args = array(); $query_args['page'] = $page; $query_args['user_id'] = bp_loggedin_user_id(); $query_string = http_build_query( $query_args ); } return $query_string; } add_filter( 'bp_ajax_querystring', 'leanne_ajax_querystring', 20, 2 );April 14, 2015 at 1:29 pm #237866In reply to: mentions suggestion js problem
danbp
ParticipantYou have to rule out theme and plugins.
Activate Twenty Fifteen and BP only and see if the issue remains. If it’s ok, reactivate your plugins one by one, until you isolate the culprit.
Finally reactivate the theme, and if error is back, you know it’s your theme who give you trouble.April 14, 2015 at 11:03 am #237858In reply to: mentions suggestion js problem
aymanomar85
ParticipantHi @danbp
I used costume theme and wordpress & buddypress in same directory but i still have same problem mention not working can you support me to solve this issues.
or do you think some of this plugin do this issues ????
April 14, 2015 at 7:01 am #237853In reply to: Hello. BP Activity Stream
danbp
ParticipantHi,
Config
——are you on a single or MS install ?
Your php version is 5.2.17.
Even if this version is still acceptable for a basic WP blog, i would recommend you use at least 5.3 or better, 5.4 You have many plugins, and working with a too old php is not recommended.Plugins
——–BuddyPress Toolbar is outdated and no more necessary, as Toolbar was slightly modified since WP 3.9 and BP 1.5
BP Group Organizer is over 2 years too and group admin is anyway fully integrated to BP since 1.7
About theme
———–
You’re using a premium theme and we can’t assist you for this, as we have no free access to his code.BuddyPress Groups component is tailored for grouping members. You can show group members activities, but it’s not intended to categorize posts like you can do it on the blog.
In other words, a group belongs to members, not to a blog category. So far by default. To get such a behave you have to code it yourself or you can use this plugin.
April 14, 2015 at 3:24 am #237851In reply to: Activity Stream member links modification
modemlooper
Moderatorthe file entry.php is an individual activity item.
How to override bp templates https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
April 13, 2015 at 8:58 pm #237844Svend Rugaard
Participantokay but i have wrote to themefuse now with screenshots etc i just dont hope they say “it is custom work” they dont support bbpress blabla
They are usually fair with these things but you never know ? Debut mode isnt public on livesite, i only have it on test sites.
But this fix will it be posible to input my self of should i wait for release ( is there any date for this ) because that link is 3 month old.
April 13, 2015 at 8:51 pm #237842In reply to: Warning of Buddypress
danbp
ParticipantHow looks the register link on Toolbar ?
Have you tested with another theme ? Try with 2015 or 14 themeApril 13, 2015 at 8:44 pm #237840danbp
ParticipantAs said previously, it’s a theme conflict with bbPress. If you use a custom group template in a child-theme, try to deactivate it.
A solution to this will be in bbPress 2.6.
Read here please:
https://bbpress.trac.wordpress.org/ticket/2718And deactivate debug mode on your live site, so notices & warning won’t be public.
April 13, 2015 at 8:13 pm #237839Svend Rugaard
ParticipantI have now try a diffrent approach to make a clean install and use debug mode just to make sure also all the themes change i have make the last year wasnt make this error happen it give me these errors on member page with debug on :
Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/www/area51.ps3geeks.dk/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28 Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /home/www/area51.ps3geeks.dk/wp-includes/functions.php on line 3547 Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /home/www/area51.ps3geeks.dk/wp-includes/functions.php on line 3547 Warning: Cannot modify header information - headers already sent by (output started at /home/www/area51.ps3geeks.dk/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php:28) in /home/www/area51.ps3geeks.dk/wp-includes/pluggable.php on line 1178Some of them even show as “Solved” on google search but obviosly they aint solved.
April 13, 2015 at 3:48 am #237795In reply to: Warning of Buddypress
dreamdimples
Participantupdated buddypress today. Received the same error as above.
I did the patch (so I thought) but ended up having to reinstall wordpress all over again.
I deleted my database and reinstalled a saved copy. Everything is working now, except the error still appears in the menubar.Wordpress Version 4.1.1
Buddypress Version 2.2.2.1
install WordPress as a directory
Wordpress & Plugins were working fine before the Buddypress Upgrade
Using Customized Theme- powermag
Operating System – linux
errorlog: 13-Apr-2015 03:36:19 UTC] PHP Warning: strstr(): Empty needle in /…./wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 641April 12, 2015 at 11:39 pm #237785In reply to: Help editing BP Column theme
modemlooper
Moderatorits my theme but its so old and outdated I suggest not using it
April 12, 2015 at 11:33 pm #237782In reply to: Activation Key not working
mecceo
ParticipantYes @modemlooper I deactivated everything except buddyPress and changed the theme to default
April 12, 2015 at 11:33 pm #237781In reply to: Hello. BP Activity Stream
nblxhd
ParticipantKleo Theme.
— WordPress Active Plugins
bbPress: 2.5.6
BP Group Organizer: 1.0.8
BuddyPress: 2.2.1
BuddyPress Activity Shortcode: 1.0.2
BuddyPress Cover Photo: 1.0.5
BuddyPress Edit Activity: 1.0.4
BuddyPress Like: 0.2.0
Buddypress Messages Spam Blocker: 1.1
BuddyPress Toolbar: 1.6.0
CodeStyling Localization: 1.99.30
GD bbPress Attachments: 2.2
iThemes Security: 4.6.12
K Elements: 2.4
NextScripts: Social Networks Auto-Poster: 3.4.16
Paid Memberships Pro: 1.8.2.2
Peter’s Login Redirect: 2.8.2
Revolution Slider: 4.6.5
rtMedia for WordPress, BuddyPress and bbPress: 3.7.35
Social Articles: 1.8
Taxonomy Metadata: 0.4
WangGuard: 1.6.2
WooCommerce: 2.3.7
WordPress Importer: 0.6.1
WordPress SEO: 2.0.1
WPBakery Visual Composer: 4.4.2
WP Super Cache: 1.4.4
YITH WooCommerce Wishlist: 2.0.5PHP Version: 5.2.17
MySQL Version: 50617
Webserver Info: Apache/2.4.9-0-beget (Unix)### End System Info ###
April 12, 2015 at 11:30 pm #237779In reply to: Activation Key not working
modemlooper
Moderatorfirst did you deactivate plugins and change theme to rule those out?
April 12, 2015 at 5:54 pm #237750danbp
ParticipantHave you set-up a custom redirection or do you use a plugin which do that ?
Maybe a custom function in the theme ?https://buddypress.org/support/topic/when-asking-for-support-2/
April 12, 2015 at 5:16 pm #237741Garydock
ParticipantHi Shane, I previously deactivated all other plugins except buddypress and had the same warning on my header. I then tried to change themes with the same problem. I have updated all plugins including woocommerce and wp.
any idea where I would be able to find this issue and remove this warning? I’m really stuck.
Thanks
-
AuthorSearch Results