Search Results for 'theme'
-
AuthorSearch Results
-
September 4, 2016 at 2:17 pm #258363
David Cavins
KeymasterHi r083r7-
Within the same site, you could write a short code that would render the profile. Outputting profile data is pretty straightforward: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/
One another site, I’m less sure. You’d need BP API or similar, which we’re just now writing.
Check our Bowe Codes for some other useful short codes and examples for your own: https://wordpress.org/plugins/bowe-codes/screenshots/
September 4, 2016 at 2:14 pm #258362Raphael.v
ParticipantHello !
I already tried, this does not solve the problem (deactivate everything, the website went down… the all Kleo theme is linked to those components).
I finally find what the problem was : my page was hosted at https://www.mywebsite.com and the link was trying to validate the subscription form to https://mywebsite.com. When the page was reloading, it kept the content (except the password, security purpose I think) but it was exactly the same page (nothing was sent to the new subscriber, nothing was sent to the database neither the admin).
By changing the all website to https://www.mywebsite.com/ this solved the problem 🙂
Thank you for yor time Danbp !
September 4, 2016 at 2:05 pm #258359In reply to: Remove header images
David Cavins
KeymasterSince it’s theme specific, your best choice is to create a child theme and override that template part when you don’t want to see the image. (There are lots of conditional you can use, like
is_buddypress()which returns true on a BP page.)It’s extremely unlikely that there will be a plugin that changes one aspect of a specific theme.
Child themes: https://codex.wordpress.org/Child_Themes
September 3, 2016 at 5:08 pm #258343In reply to: [Resolved] Front-End Visual Editor Options
Fantacular Designs
ParticipantMy husband just helped me fix it with the simplest CSS! It didn’t even occur to me… Thank you for your help, though! The coding is theme specific, but he used “Inspect Element” to find out what to call the style. However, this is what he added.
div#mceu_63-body { display: none; } div#mceu_58-body { display: none; } div#mceu_59-body { display: none; }Thank you for your help!
September 3, 2016 at 4:52 am #258328In reply to: buddypress settings no save option
EMar
ParticipantI just diactivated all plugins, then installed BP again, still no save button.
Using chrome to inspect elements for BuddyPress Settings page:
http://www.site.com/main/wp-content/themes/music/musicband/events/css/jquery-ui-timepicker-addon.css Failed to load resource: the server responded with a status of 404 (Not Found)
load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,jquery-ui-core&ver=4.6:9 JQMIGRATE: Migrate is installed, version 1.4.1
http://www.site.com/main/wp-content/themes/music/musicband/events/css/jquery-ui-timepicker-addon.css Failed to load resource: the server responded with a status of 404 (Not Found)September 3, 2016 at 12:28 am #258324danbp
ParticipantDeactivate all plugins except BP and activate a WP default Twenty theme and test.
If it is ok, reactivate and test by one one the plugins.
If ok reactivate kleo.Search for “kleo” on this forum, you might find some related topics.
If nothing helps from the above, you have to contact the theme support. We can’t help you much here with premium themes, as we have no free access to it’s code.
September 2, 2016 at 3:48 pm #258315ico33
ParticipantI changed the theme as suggested. Nothing to do. If I create a discussion (bbpress), it is shown in buddypress activity. If I delete the discussion from the forum, it is still present in activity, but oviously clicking on it it shows 404 error page not found.
Any Idea?
September 2, 2016 at 2:56 pm #258312ico33
Participant@danbp thanks for your reply. I am not so expert, so it’s good that somebody helps.
I use Dynamic News Pro (the theme), now I checked all the repair in FORUM and also Buddypress, but this doesn’t work. In my activity I still have a discussion that was deleted, and if I click on the activity – obviously – it gets the error 404 page not found.
Do you think I have to change the theme? Or something else to suggest?
September 2, 2016 at 7:28 am #258305In reply to: identify code
danbp
ParticipantThank you for clarification. The screenshot you linked to shows the Followers item with an ID of
members-following-personal-liThis belongs to a follower plugin or to a built-in addon of your theme.As explained, on profile pages it will end with “-personal-li” and on group pages it will end with “-groups-li”. The notification component add “notification”, so you have
notifications-personal-li.The question now is: do you want to change the CSS rule or something in the html (ie. change li to div) ?
If it is the css rule, you do that in your child theme file style.css
#notifications-personal-li { // do something }If it is the html, you have to work on the notification template, also from within the child.
And if it is a core functionnality – like moving or renaming the item: it’s explained on Codex:September 2, 2016 at 3:48 am #258301In reply to: identify code
idichoo
Participantyes, i am using child theme`
I am using a the republic-child theme.I am not sure any plugin related notification
September 1, 2016 at 8:55 pm #258294In reply to: Free Theme almost ready
buddycore
ParticipantI’m just bumping this topic to bring it to the attention of others who may want to utilise the theme.
There’s been some progress via GitHub and the theme is in a good position to jump in and contribute to its development.
It’s still not version 1 and out of beta but it’s getting there and I’ll continue to work through issues raised on GitHub for any early adopters.
September 1, 2016 at 8:45 pm #258284In reply to: Removing page titles on BuddyPress pages only
danbp
ParticipantAfaik yes ! Except if you like to do and redo your customization after each update or to come here to get help… RTFM Travis !
September 1, 2016 at 8:36 pm #258282In reply to: Removing page titles on BuddyPress pages only
travisparkermar
ParticipantI’m using the theme Valenti.
And no “buddypress” folder in my child, I’m afraid. Should I create one?
September 1, 2016 at 8:07 pm #258279In reply to: Removing page titles on BuddyPress pages only
danbp
ParticipantThis is not how your child theme should fire a BP page…
Have you a “buddypress” folder in your child ?Which theme do you use ?
September 1, 2016 at 6:56 pm #258274In reply to: Removing page titles on BuddyPress pages only
danbp
ParticipantYou must check BP’s templates to get the correct css or to use Firebug (or similar) to find easily what you search. Or search in the page source for a H1 tag…
Ie site activity page title looks like:
<h1 class="entry-title">Site-Wide Activity</h1>Add this to your child theme syle.css file and give a try
h1.entry-title { display: none!important; }September 1, 2016 at 5:58 pm #258268In reply to: identify code
danbp
ParticipantPlease use the
<code>button when you insert code on the forum.On which page exactly do you see this code ?
If on your profile, thought it should benotifications-my-notifications-personal-liDo you use a child theme ?
What is your theme ?
Do you use a notification related plugin ?danbp
ParticipantTo complete this topic, a little tutorial to restrict Updates to a BuddyPress “member_type” (not a WP role).
Spec: only Teachers are allowed to publish.
Required: a member_type of “teacher”.The Update form used for Site, Members and Group activities is in
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/post-form.php
This form is called by the function bp_get_template_part everywhere BP needs it. In this case, in 3 different component: activities, members and groups.What we are going to do is to add a condition before calling the template part. Without altering core or even your theme. Just telling BP to show the form if condition is ok and doing nothing if the condition doesn’t fit.
Let’s go !
You need a template overload of 3 files. Copy them into your child theme buddypress directory by respecting the path (ie. child-theme/buddypress/members/single/file
wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/index.php Line 31: <?php bp_get_template_part( 'activity/post-form' ); ?> wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/groups/single/activity.php Line 54: <?php bp_get_template_part( 'activity/post-form' ); ?> wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/activity.php Line 48: bp_get_template_part( 'activity/post-form' );In each file before
bp_get_template_partthere is anifstatement.We’re going to add one more for the member_type of “teacher” by using var
$member_type == 'teacher'For that, we need a user_id and the member_type of that user. If both fit to the whole if condition, we call the template part. If not, the template is not called. And voila.
We are adding 2 lines: (
$user_idand$member_type) and a condition(&& $member_type == 'teacher') to the existing statement.The only thing you have to change is the member_type name (teacher) to fit yours.
If you do it correctly, here’s how the end result should look alike.This snippet goes to /activity/index.php (see line # above)
<?php $user_id = bp_loggedin_user_id(); $member_type = bp_get_member_type( $user_id ); if ( is_user_logged_in() && $member_type == 'teacher' ) : ?> <?php bp_get_template_part( 'activity/post-form' ); ?> <?php endif; ?>This one goes to /groups/single/activity.php
<?php $user_id = bp_loggedin_user_id(); $member_type = bp_get_member_type( $user_id ); if ( is_user_logged_in() && bp_group_is_member() && $member_type == 'teacher' ) : ?> <?php bp_get_template_part( 'activity/post-form' ); ?> <?php endif; ?>And this one is for /members/single/activity.php
<?php $user_id = bp_loggedin_user_id(); $member_type = bp_get_member_type( $user_id ); if ( is_user_logged_in() && $member_type == 'teacher' && bp_is_my_profile() && ( !bp_current_action() || bp_is_current_action( 'just-me' ) ) ) bp_get_template_part( 'activity/post-form' ); /** * Fires after the display of the member activity post form.In hope it helps.
August 31, 2016 at 3:38 pm #258215In reply to: [Resolved] Availability Checker
Brajesh Singh
ParticipantHi Dan,
Thank you for pointing @humiges in the right direction.It was a theme issue for him as communicated on mail. The plugin works fine with current version of BuddyPress 2.6.2/WordPress 4.6
August 31, 2016 at 1:15 pm #258211In reply to: [Resolved] Availability Checker
danbp
ParticipantI doubt that it stopped to work as it was updated recently (29 March, 2016).
You’ve better to ask for this issue on the plugin support.In the meanwhile, have you activated wp_debug in wp-config ?
Perhaps this will show you some php errors you ignore at this time.You could (should) also give some details about your install when asking such obscur question. Do you use custom functions, plugin list, theme name, wp, bp, php version…
August 31, 2016 at 1:07 pm #258210danbp
ParticipantThis is normally working. You may have a problem on your site.
Try this:
activate one of the twenty theme
save your permalinks (even if you change nothing, just save)
use the repair tool in dashboard and let it recalculate anything.
If you use a cache plugin, clear it.
Check also your brower (abuse of F5 if necessary) or clear at least the cookie history.August 31, 2016 at 1:00 pm #258209In reply to: [Resolved] Member Menu Alterations
danbp
ParticipantHi,
bp’s Usermenu is added to wp_admin_menu on the Toolbar, under Howdy. This BP menu ID is “my-account”.
When you’re on a profile page, you see also these items in the Buddymenu, below the profile header cover.
Some working examples here:
Remove an item from UsermenuRemove an item from Buddymenu
Since 2.6, BuddyPress use a navigation API. See here for many use case.
Read also WP codex about admin bar menus.
Where to put BuddyPress custom code ?
Usually into bp-custom.php. This file is to BP code what a child theme is to a theme: a safe place with high priority where nothing get to loose when an update occurs !Child’s functions.php should be reserved to whatever you need for the theme itself.
That said, it can happen(rarely) that some custom code won’t work from within bp-custom. In this case, feel free to remove it from bp-custom and give it a try inside child’s functions.php.As novice, you’re invited to read BP and WP codex if you want to customize.
August 30, 2016 at 4:29 pm #258194In reply to: BP Groups in groups
danbp
ParticipantHi,
if you had read the plugin support, you certainly would have found a link to a fixed copy in a topic marked [resolved] related to Breaks Boss theme with Buddypress 2.6.1.
Here’s the direct link(zip) on Github to this updated version by @r-a-y. Before using it, rename the folder to bp-group-hierarchy.
I tested it with latest WP/BP/2016 and it works as expected.
August 29, 2016 at 11:23 pm #258177In reply to: Can’t see members in “members” page
tresat
ParticipantI don’t see myself either. I tried different themes and it didn’t work. Two other members (created by me) logged in. I assigned the members directory in Buddypress settings to the Members page.
August 29, 2016 at 11:00 pm #258176In reply to: Can’t see members in “members” page
shanebp
ModeratorYou should at least see yourself.
A member will not appear on the members page until they have logged in at least once.
If one or more of your members have logged in and still do not appear on the members page, then there may be an issue with your theme.
To find out, try switching momentarily to a WP theme like 2015.August 29, 2016 at 10:05 pm #258175Topic: Can’t see members in “members” page
in forum How-to & Troubleshootingtresat
ParticipantHi,
I can’t see any members in the members page. I can see them in the dashboard “all users”. I’m a beginner and I’m using the Customizr theme. Thanks in advance for your help.
-
AuthorSearch Results