Search Results for 'theme'
-
AuthorSearch Results
-
May 19, 2015 at 5:35 am #239397
In reply to: Remove friend notifications for all activity page
Steve
ParticipantWait. I think I got it to work. I originally put it in the bp-custom file but then switched it to my child theme function file. I think it is working. I will let you know.
Thanks.
May 18, 2015 at 12:50 pm #239366Ali Chant
ParticipantFixed by moving define( ‘BP_ENABLE_MULTIBLOG’, true); from the theme to bp-settings.php
In case anyone else has this problem.May 18, 2015 at 5:34 am #239358In reply to: [Resolved] Crop Image not working
@mercime
Participant@loralai I looked at the source code and jQuery files are missing. Aside from which, there are two versions of the CSS from BuddyPress, the regular one and the minified one, and the same goes for the JS from BuddyPress, one minified and the other is not.
Open up your theme’s
header.phpfile and make sure that<?php wp_head(); ?>is placed immediately before the closing</head>in your theme. Remove the hard-coded BuddyPress stylesheets and JavaScript files (if you did hard code those in your theme).May 18, 2015 at 12:16 am #239346In reply to: [Resolved] Crop Image not working
@mercime
Participant@loralai Could you please provide more information about your installation like:
– WP/BP versions?
– Where are you hosted?
– If you change to the WP Default Theme and deactivate all plugins except BuddyPress, can you crop the image then?May 17, 2015 at 11:09 pm #239339In reply to: [Resolved] cannot change profile photo
rebekahmeuir
Participantthank you @mercime I did try the 2015 theme after deactivating all plugins except BuddyPress, and same issue. Yes I can upload images and see thumbnails with 2015 theme and with my BuddyBoss theme. I still have the problem with profile images not working. I also have a new issue where private messages no longer work from inside BuddyPress. I am hosted with inmotion.
May 17, 2015 at 10:15 pm #239338@mercime
Participant@minglonaire Depends on what theme you’re using? You can always apply the CSS used for the member’s directory list to that of the group member’s list by using browser’s developer tools in Firefox, Chrome, and in latest Internet Explorer.
May 17, 2015 at 9:56 pm #239334In reply to: [Resolved] cannot change profile photo
@mercime
Participant@rebekahmeuir Deactivate plugins except BuddyPress and change to the Twenty Fifteen theme. Then go to admin dashboard and navigate to Media > Add New. Can you upload images and see the thumbnails of the images you uploaded there?
May 17, 2015 at 8:49 pm #239331In reply to: Theme in Development: Preview & Feedback?
Marcella
ParticipantI’m also publishing a video series to the site right now about WordPress theme development.
Hope get some people to signup and join in, share their own tips and tricks.
May 17, 2015 at 11:18 am #236924In reply to: new plugin: BuddyPress Simple Events
shanebp
ModeratorGot a chance to revisit this…
Both versions are now components.
BuddyPress Simple Events in the WP repo.
BuddyPress Simple Events Pro now has options for an Attending button, list of attendees, and notifications. As well as image support and Group assignment options.
Re themes: the templates have been tested with included WP themes. If there is an issue with a particular theme, the templates can be overloaded and adjusted as necessary. The layouts are bare-bones, iow. very basic layouts.
Re comment syncing: unfortunately, comment syncing is broken in BP 2.2.1. See tickets 6306 and 6294
May 16, 2015 at 8:43 pm #239163In reply to: Multisite Registration
bigswp
ParticipantI solved this with an additional child theme and the “New Blog Templates” plugin.
May 16, 2015 at 8:12 pm #239162In reply to: Help! my registration page doesn’t work.
joesegal
ParticipantHello @henrywright thank you! So it wasn’t the plugins. Turns out Divi theme suddenly stopped working with Buddypress.
I’m installing a new theme now to try.
May 16, 2015 at 5:30 pm #239160In reply to: Static Front Page Problems
kphawaii
ParticipantHi I changed my theme to back to zerogravity.
But I think I’ve figured out what was going on. It seems from the settings panel
Setting>BuddyPress>Pages when I click the view button for the register and activate
pages I get redirected to my static front page.But when I am on another browser and not logged in to wordpress everything seems
to work correctly.May 16, 2015 at 2:30 pm #239158In reply to: Theme in Development: Preview & Feedback?
Marcella
ParticipantYeah I think so, I’ve only ever created on theme using rems and the visual gains were pretty obvious.
I don’t have much reason to use SVG on this theme right now, but maybe in the future in custom templates.
May 16, 2015 at 12:38 pm #239152In reply to: Post button is not showing
danbp
Participantit’s intended so. The button will only show up when you click inside the textbox.
Also, it seems you use BP Default theme. Do you know that you can use any other themme since BP 1.7 ?
May 16, 2015 at 9:52 am #239146In reply to: Static Front Page Problems
Henry Wright
ModeratorHi @kphawaii
Which theme are you using? Plugins?
May 16, 2015 at 9:51 am #239145In reply to: Help! my registration page doesn’t work.
Henry Wright
ModeratorHi @joesegal
A couple of things spring to mind that could be the cause of the problem:
- The theme you’re using (Try TwentyFifteen)
- The plugins you have installed (Try deactivating all plugins after switching theme to see if the problem resolves)
May 16, 2015 at 5:56 am #239139In reply to: Error When Adding Custom Post Type to Activity Feed
Mathieu Viet
ModeratorHi there,
There’s a chance your theme hasn’t updated its templates. In order to have the activity dropdowns populated, please check your templates are up to date see https://codex.buddypress.org/themes/activity-dropdown-filters-in-templates/#use-bp_activity_show_filters-within-your-bp-default-child-theme
May 15, 2015 at 7:17 am #239104danbp
Participantthank you for your help, but please, don’t give a 4 years old solution without testing it.
At first, the snippet contains cote errors, and second, it doesn’t work with BP 2.x, as things has changed.You can easily modify your template loop by using bp_parse_args function.
Here a working example (activity-update is commented – uncomment to see the difference)
You simply have to list what to show. Anything not listed will be ignored, on all activity feeds.
Add this to bp-custom.php or child theme functions.php
function my_bp_activities_include_activity_types( $retval ) { // only allow the following activity types to be shown $retval['action'] = array( // 'activity_update', 'activity_comment', 'new_blog_post', 'new_blog_comment', 'friendship_created', 'created_group', ); return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activities_include_activity_types' );May 15, 2015 at 2:53 am #239101browserco
ParticipantHi Steve, the code above disallows commenting on specific activity types which is not what I wanted. To get rid of those pesky notifications on the activity stream you should use this code in your theme’s functions.php file:
function filtering_activity_default( $qs ) { if ( empty( $qs ) && empty( $_POST ) ) { $qs = ‘action=activity_update'; } return $qs; } add_filter( ‘bp_ajax_querystring’, ‘filtering_activity_default’, 999 );I got the code from this thread.
I hope it works out for you!
May 15, 2015 at 1:47 am #239099In reply to: Edit Group and Profile Templates
agalassi0917
ParticipantThank you, I’ll see if Elegant Themes has any suggestions
r-a-y
KeymasterYou’ll probably want to follow this guide:
The guide is for the twentythirteen theme, but it works as a general guideline with any theme. Replace the references to the twentythirteen theme with your theme and you should be good to go!
Hugo Ashmore
ParticipantCheck the Codex documentation, which will guide you on creating a custom buddypress.php page to mirror your themes page.php and in which you could then remove the sidebar from markup.
May 14, 2015 at 7:02 pm #239077In reply to: Theme in Development: Preview & Feedback?
Henry Wright
ModeratorMainly the header and footer links/text and the ‘tutorials’ dropdown. The bit where it says “Over a number of videos I will take you through the basics of setting up a solid WordPress theme with…” is big enough I think so perhaps make everything that size.
Screenshot using FireFox:
May 14, 2015 at 1:45 pm #239067In reply to: Theme in Development: Preview & Feedback?
Henry Wright
ModeratorI really like how you’re doing subtle hover effects throughout, it makes for a rich feeling when navigating around. I also like the flat design style you’ve chosen.
One thing I struggled to read certain text because it was a bit small. Perhaps make the smallest text 10% bigger by default?
Overall the theme is very unique looking, I’ve not seen a theme that looks like this. Great job so far!
May 14, 2015 at 12:27 pm #239065In reply to: Filter specific members only.
danbp
ParticipantRead here: https://buddypress.org/support/topic/customising-members-loop-pagination-problem/
Where to put the code: bp-custom.php or child-theme’s functions.php
-
AuthorSearch Results