This topic has 246 replies, 66 voices, and was last updated 8 years by corpor8chic.
-
Author
Tagged: feature request
-
January 2, 2015 at 22:55 #40907misiak007Participant
Pleas add support for easy digital downloads
thanksJanuary 3, 2015 at 05:42 #40923nusolutionsParticipantMaybe not a big deal to many but just noticed that if you opt to disable to Page Title Location for Buddypress pages you loose site of the Create a group link. To show this link I have chose to enable the title to the Breadcrumb area. Since it’s a BP option not sure if it would be possible, or even worthwhile, to have an option to show certain items, say that create a group link while disabling page titles, without having to add extra code.
January 6, 2015 at 20:21 #41119webmaster-swParticipantSocial Icon Links on BuddyPress profile pages
It’s weird that there aren’t social networks baked in to the Profile Fields.
I am making them myself, but they are very clunky.For example, the only available format is:
Social Network socialnetwork.com/username
Additionally, the link titles aren’t editable to eliminate the ‘socialnetwork.com/’, and there’s no control to keep users from entering a link to the incorrect social network into each field.
I am going to have to hide the labels & reassign all links to one line using CSS, and replace the links with javascript to prevent loss of code on theme updates. This will not protect each link from going to the wrong network, but it is a start.
January 8, 2015 at 01:41 #41225webmaster-swParticipantBuddyPress Profile Link as Author
Here’s another quick feature which would make a lot of sense:
Option to redirect Author link away from “See more posts by this author” to “/Buddypress Profile/Author”, and author thumbnail
Right now, then only way to message or friend an author is to copy their name off the article, copy it into Search, wait for the AJAX “Members” drop down to load their profile, and then click to their profile. Or to paste it into Members Directory.
There should be a direct link on articles.
January 8, 2015 at 06:33 #41273mjyParticipantHere’s a modest feature/update request.
Just add the ability to include the members name together with the avatar.
This would look more intuitive and more polished IMHO especially where the avatar is still set to default image.
Based on this thread
So clearly appears to be fairly modest enhancement depending on how much configuration you allow.January 10, 2015 at 20:03 #41598sharmstrModerator@mjy – I’ve submitted the code to the Kleo team for approval and inclusion in the next update.
@webmaster-sw – I somewhat agree with you and have had that as a “will do something about this for my sites” in the back of my mind for some time now. But, in thinking about it now, I dont think redirecting makes the best sense. There’s no other easy way to view all of the authors posts. Maybe instead, have a few more small icons in the meta for messaging and viewing the authors profile?Also, I posted a hack a long time ago that I’m using on my sites to add the author avatar to the meta: https://archived.seventhqueen.com/forums/topic/display-user-avatar-in-post
Now that I’m contributing code to the Kleo team on a regular basis, I’ll see about submitting all of that to them for inclusion into the theme. Please let me know your thoughts on the profile/messaging links.
Edit: Here’s what I have working so far. It will have the ability to turn on/off meta items. See attached
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.January 15, 2015 at 14:24 #42184sarpdiegoParticipanta MyCreed integration would be cool. I want to see the mycreed ranks in the forum treads.
Another cool feature.Another cool feature would own mobile settings section.
Where can I set such as the menu will displayed on mobile phones. my customers have strong problems with the mobile version. here is improvement needed.January 15, 2015 at 16:35 #42208webmaster-swParticipant@sharmstr Your author avatar / messaging / more posts presentation looks awesome!
I saw code for just the author in the post your linked.
Do you have code finished for the above attachment? I have figured out why my child theme wasn’t working previously and am excited to make php improvements now.
January 15, 2015 at 16:59 #42213sharmstrModeratorMy code has been added to Kleo. It will be available in the next release.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 15, 2015 at 17:00 #42214sharmstrModeratorOh. And thank you 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 15, 2015 at 23:53 #42267webmaster-swParticipant@Sharmstr Noooooooo I can’t wait that long!
Okay fine, what’s the timeline on the next update?
January 16, 2015 at 00:25 #42277sharmstrModeratorThere’s too many files that were touched in the fix. I’m thinking about a week.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
January 17, 2015 at 08:55 #42447PixxxParticipantMain content width for one sidebar templates* and Main content width for two sidebars templates!
Please add 75%, 83% and 91%, for the next release
And for the future, inspire from theme.co
https://theme.co/x/member/forums/topic/release-notes-x-v3-1-1-x-shortcodes-v2-6-1/
January 20, 2015 at 03:52 #42714sharmstrModerator@King Heru. Try this
Create a new Profile Field called Twitter. Make it a text field and put in the description something like “Please input your twitter name including the @ symbol.”
Then go to Theme Options > General Settings, paste the follow code into the JavaScript code field.
COPY CODE<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
Save it.
Then in your child theme’s functions.php file, add this
COPY CODEadd_action('bp_profile_header_meta','twitter_follow'); function twitter_follow() { if ( $data = bp_get_profile_field_data( array('user_id'=>bp_displayed_user_id(), 'field'=>'twitter' )) ) : ?> <a>bp_displayed_user_id(), 'field'=>'twitter')); ?>"class="twitter-follow-button" data-show-count="false">Follow <?php echo bp_get_profile_field_data( array('user_id'=>bp_displayed_user_id(), 'field'=>'twitter')); ?></a> <?php endif; }
If you have any problems with this code, please open up a topic for it to discuss. I want to keep this thread clean.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
February 2, 2015 at 00:26 #44310beansmcguillicuttyParticipantIts a bit un-user friendly out of the box for kleo….
Wishlist:
1. Control of the layout of all profile pages.
2. Ability to turn header off but still have nav menu…so everything moves up. Right now all of UX is below the fold and there is a lot of wasted space. The show more/show less function isn’t necessary.
3. Cover pics (Sharmstr just said this is coming in next update kids!)Any of these items possible now?
Thanks in advance!
beans
February 5, 2015 at 13:21 #44782giorgosParticipantPlease consider below 2 items for future releases:
1. Conditionate ##profile_link## menu items so that only logged in users are able to see.
(Now My ACCOUNT main menu item still appears on logged out users, sub menus are empty thought, but the line separators are still appearing)2. Add the counts on the BP links (##profile_link##) like the native wordpress menu does.
Thanks
GiorgosFebruary 11, 2015 at 04:37 #45539beansmcguillicuttyParticipant+1 @Pixx
I am researching making my own for my buddypress/kleo site right now…and its slim pickns.
beans
Also, what happened to the Facebook style cover pic option for this latest update? I don’t see it on the feature list…
rock and roll.
February 11, 2015 at 05:01 #45544sharmstrModeratorIts there. Its a new plugin. Just not listed. I just updated a site that was still on 2.3.1 and it didnt auto install. If this happens to you, you can install it from kleo/lib/inc/buddypress-cover-photo.zip. Once installed enable it and chose your settings in theme options / buddypress.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
February 11, 2015 at 21:10 #45684beansmcguillicuttyParticipantThx Sharmstr…I’ll get it going this evening. Dayjob firewall won’t let me ftp to my site for some reason.
Thoughts on creating an app for our kleo buddypress sites? A Facebook app clone of sorts…
Hope ur doing well.
beans
February 12, 2015 at 01:11 #45703sharmstrModeratorHey Beans – A phone app would be nice. Wanna do it? LOL 😀 Just kidding. I’ve been thinking about it for about 8 months now. I haven’t made it beyond that. Not sure what 7th Queen thinks about it or if its even on their radar.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
February 12, 2015 at 09:06 #45760RyazaParticipantVery beautiful update! Tell us when you add groups cover like a BuddyPress Profile cover with a fresh and awesome design???
February 12, 2015 at 09:18 #45763KieranParticipantI’ve got to say (as greedy as it is) I would also love to have group header covers.
You guys have done and are doing a great job, it’s the best money I’ve ever spent on a theme, thank you for all of your hard work.
February 13, 2015 at 04:42 #45945mitchcanParticipantHey,
I’m new here (< week) so I’ll likely have lots of questions and “can-we-make-it-do-this” kinda comments. The ubiquitous and ever helpful @sharmstr told me to post this over here, hence, my post:
Is there a simple way to ‘clear’ the search form bar which then returns the page to an ‘unfiltered’ display? I have seen some search boxes with a little ‘x’ on the right side which then clears the search. Is this possible here?
In another plugin I use, it has something like the attached image, which basically resets the search to a fresh start, in this case, back to the entirety of a business directory.
Thanks.
Attachments:
You must be logged in to view attached files.February 16, 2015 at 17:05 #46278AbeKeymaster@mitchcan that does not come from Kleo theme and probably a plugin. Try to contact the developer to add that functionality
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.February 16, 2015 at 19:14 #46292mitchcanParticipantHi @Abe, yes, the functionality shown in the screenshot does indeed come from a plugin that uses its own search form.
My point was to submit an idea that the basic search form used by the Kleo theme have such a “clear” option to reset the search. Like the form at the top in Groups or Members. As it is, you simply have to manually clear the search form and then reclick the All. In the big scheme of things, its a minor user inconvenience, so its not a big need to add it. It was just a thought.
Thanks for all your work to make this a great theme.
February 21, 2015 at 18:12 #46996nusolutionsParticipant@Cover
The ability to align the avatar either left, center, right, or bottom. As the attachment shows this may make for a better experience.Attachments:
You must be logged in to view attached files.March 2, 2015 at 11:03 #48331Reflect GrowthParticipantIs it possible to have the ability to comment added onto the “Activity Stream” component provided through the visual editor.
E.g. If I create a page , add the “Activity Stream” component to it, it will load the stream but only show the favourite or delete options, not the ability to comment (like on the Site Wide Activity page).
March 3, 2015 at 16:31 #48549DavidAELevyParticipantPlease add fields in setting to adjust breadcrumbs styling (background color and font color) please. Seems something trivial to be over looked but not having it is a real hassle. Don’t know if it’s been brought to developer staff attention but plenty of people have been posting about it in the support subforums.
March 3, 2015 at 17:32 #48562AbeKeymaster@Reflect You could do it by CSS and in your CSS make a reference to your page class from the body tag
@DavidAELevy it is already there.
Site-wide setting is in WP admin – Theme options – Styling options – Alternate
Page individual setting is under the page edit screen, in Theme General Settings – Title sectionHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.March 17, 2015 at 04:14 #50393USParticipantBottom Fixed Navbar
like this:
http://playingintrafficrecords.com
This is my site and I would like to move it to Kleo for the BuddyPress function and would like to retain the bottom fixed menuMarch 18, 2015 at 06:31 #50683hdavidsenParticipantIt would be extremely useful to be able to sort the profile tabs as Sweet Date> Profile Tabs, and also sort Item-nav order.
March 18, 2015 at 15:12 #50704sharmstrModerator@hdavidsen: You can sort the profile tabs by dragging and dropping them. WP Admin > Users > Profile Fields > Click and hold a tab and drag it to the position you want.
You can sort the profile nav menu using this function
COPY CODEfunction my_change_profile_tab_order() { global $bp; $bp->bp_nav['settings']['position'] = 10; $bp->bp_nav['activity']['position'] = 20; $bp->bp_nav['friends']['position'] = 30; $bp->bp_nav['groups']['position'] = 40; $bp->bp_nav['blogs']['position'] = 50; $bp->bp_nav['messages']['position'] = 60; $bp->bp_nav['profile']['position'] = 70; } add_action( 'bp_setup_nav', 'my_change_profile_tab_order', 999 );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
March 18, 2015 at 20:09 #50744AbeKeymasterthanks @sharmstr 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.March 18, 2015 at 21:27 #50747AbeKeymasternice @united
we will add it to the queue 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution---
@ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.March 21, 2015 at 13:55 #51032lastafaParticipantSticky Mobile Header
This should be fairly simple since you have this functionality on big screens: An option to make the header sticky on mobile browsers.
Another option could be to just have the menu button overlay on the top right.
I hope this comes out in the next awesome update!
LJ
-
AuthorPosts
The topic ‘KLEO – Features Requests’ is closed to new replies.