Forum Replies Created
-
Author
-
sharmstr
ModeratorThat is already possible using built in buddypress functions. You can either filter the feed: http://premium.wpmudev.org/blog/how-to-customize-the-buddypress-activity-loop/ or you can stop bp from even logging certain activities in the first place. https://gist.github.com/BoweFrankema/ed8ea0435223d7b361d5 You can look in the activity table in the db for all possible options.
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
sharmstr
ModeratorSince this is handled by rtMedia, you should also make a formal request with them. I doubt you’ll get much traction for this request here any time soon.
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
September 23, 2015 at 05:16 in reply to: Built in Privacy setting for your social networks built on Kleo #79074sharmstr
ModeratorOkay.
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
sharmstr
ModeratorYou put this in the feature request section. That’s why it hasnt been answered.
The slider on the homepage relies on VC. If you can give me more details on “Also Visual composer is not getting installed” perhaps I can help.
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
sharmstr
ModeratorI just tried to get to wp-login.php. It redirects back to the home page. That’s your issue.
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
sharmstr
ModeratorYour site is throwing 500 server errors. Check your server log and/or server configuration. Your hosting company can assist you with this. I know you changed some settings earlier today with a wp-admin rename or something like that. Perhaps something went wrong with that.
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.sharmstr
ModeratorThere’s no easy way to do that. It would take many changes to the code that generates the cover photo and even more css changes to make it look good. Moving this topic to feature requests to be voted on.
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
sharmstr
Moderatorneed to see a link. since it only for logged in users, will need credentials as well.
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
sharmstr
ModeratorAnother idea is dump the use of portfolios and find a plugin that will do what you want. I’ve never tried this one, but something like this: http://codecanyon.net/item/grid-gallery-with-custom-links-pro-/6068348
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
sharmstr
ModeratorThere’s no built in easy way to do that. One alternative would be to use some sort of redirect plugin that would allow you to redirect the individual portfolio pages to external links. You’ll probably also need one to open redirects in a new tab/window.
The other option is to use Visual Composers grid builder. They make it easy enough to grab the title and featured image. The issue will be setting and linking an external site. They have an option to grab a custom field, but the trick will be to set the custom field in the portfolio post and, again, linking it.
Do some googling for possible solutions.
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
September 22, 2015 at 23:54 in reply to: Merge business template registration with community template registration #79044sharmstr
ModeratorAssuming your talking about GeoDirectory and Buddypress, this may help: https://wpgeodirectory.com/addons/buddypress-integration/
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
sharmstr
ModeratorNo matter which activity I try to comment on using firefox, it always scrolls to the top of the comment box. See attached. Win 7 / Firefox 41
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.sharmstr
ModeratorI should mention that you can remove the status update from the header all together by copying /kleo/buddypress/members/single/member-header.php to your child theme and removing the bp_last_activity line.
Or you can hide it with css, but that’s not as secure
COPY CODE#latest-update { display: none; }
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
sharmstr
ModeratorGroups – Ahhh. Got it. Sorry for not understanding initially. But…. my response is still valid. Kleo is merely styling the output of BP. Since the request button/form is still there with the WP 2015 Theme enabled, kleo isnt breaking /overriding default BP functionality. Basically BP has to fix this.
members
1 – This also happens with the WP 2015 Theme, so Kleo isnt breaking default functionality. AND it happens with rtCamps own rtDating theme: http://demo.rtcamp.com/rtdating/members/demo/4 – I meant, can you reproduce on the demo site? You’ll see that the demo works fine with firefox, so it must be something specific with your site. (plugin, custom css….)
Let me know if I missed something 🙂
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
sharmstr
ModeratorTry this instead
COPY CODEadd_action('bp_init', 'add_user_images', 2); function add_user_images () { if (bp_is_user()){ add_action('kleo_before_main_content', 'show_last_n_images', 99); } }
BP has built in functions to get the path to a profile. https://codex.buddypress.org/developer/template-tag-reference/ (bp_core_get_user_domain(bp_displayed_user_id()) . ‘media’)
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
September 22, 2015 at 21:44 in reply to: Built in Privacy setting for your social networks built on Kleo #79026sharmstr
ModeratorPlayed with this some more. Try this instead
COPY CODEif ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&max=' . $number . '&object=' . $show ) ){
Again, I have no idea how the security plugin filters based on privacy settings, so this may not help at all. However, if it does, let me know and I’ll see about getting a code change approved.
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
sharmstr
ModeratorIt doesnt exist by default and it doesn’t vary by theme. It always needs to be in the plugin folder. This has nothing to do with the theme. https://codex.buddypress.org/themes/bp-custom-php/
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
sharmstr
ModeratorThis should help https://archived.seventhqueen.com/forums/topic/do-not-show-front-page-after-log-in
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
September 22, 2015 at 20:00 in reply to: Built in Privacy setting for your social networks built on Kleo #78989sharmstr
ModeratorI was comparing the shortcode to the main activity loop. It may be that the privacy plugin taps into the bp_ajax_querystring function, which the shortcode doesnt use. You can try changing the shortcode, but you will lose the “number” of activities to show.
Change line 44 of /plugins/k-elements/shortcodes/templates/buddypress/kleo_bp_activity_stream.php from this
COPY CODEif ( bp_has_activities( $params ) ){
to this
COPY CODEif ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) )
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
sharmstr
ModeratorMy code didnt show up. Please see attached for example on how to post code
COPY CODEyour code here
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.sharmstr
ModeratorPlease repost your code. Put ‘
COPY CODE' before and '
‘ after. Alternatively, put it in a text file and attach.
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
sharmstr
ModeratorIf you’ve removed it, and it still not working, then you’ve had to have done something else, right? Do you have caching or a cdn in place? Have you purged those?
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.September 22, 2015 at 19:33 in reply to: Built in Privacy setting for your social networks built on Kleo #78977sharmstr
ModeratorGot it now. Thank you for the clarification. 7th queen codes based on the default functionality of BP and obviously doesnt support all plugins. I’ll move this to the feature request section to be voted on for possible future inclusion into the theme.
In the meantime, the code of the activity shortcodes can be found in /plugins/k-elements/shortcodes/buddypress. Perhaps you can figure out how the plugin locks down the activity feed and incorporate that into the shortcode.
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
sharmstr
ModeratorDid you remove the code?
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
sharmstr
ModeratorSearching this forum, I found this: https://archived.seventhqueen.com/forums/topic/login-popup-how-to-change-create-an-account-link
You can also use Peters Login Redirect to redirect people after login to wherever you want. This has also been discussed multiple times here.
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
sharmstr
Moderator@abe – this is happening on the demo as well. Can you assist?
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
sharmstr
ModeratorDoes it work with the WP 2015 Theme enabled? Did you add it using a text widget?
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.sharmstr
Moderator1 – Try changing the action call to this
COPY CODEif ( bp_is_user() ) { add_action( 'kleo_before_main_content', 'show_last_n_images', 99 ); }
2 – Doesnt work where? If you are talking about in a menu, it would be ##profile_link##/media
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
sharmstr
ModeratorThat has nothing to do with activation email routines. Remove the code and see if it resolves your issue.
I just tested it on two sites and it works perfectly so maybe you have a plugin conflict or something.
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
sharmstr
ModeratorAt this time, you cant hide the Title based on membership level without coding it yourself. You cant hide sidebars, but you can conditionally show widgets within the sidebar based on membership levels using the Widget Logic plugin. I have a write up on it here: http://sharmstr.com/conditionally-displaying-widgets-based-on-paid-membership-pro-level/
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
sharmstr
ModeratorYou can uses Peters Login Redirect plugin to set the logout redirect to whatever page you want.
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
sharmstr
ModeratorThat’s not a function of the theme. If you are using a child theme, you can try it in your functions.php file. If not, you should temporarily enable the default WP 2015 Theme to see if your custom code works or not.
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
sharmstr
ModeratorTurn off debugging: https://codex.wordpress.org/WP_DEBUG
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
September 22, 2015 at 17:55 in reply to: [video] Problem with link Redirecting to wp-admin after registration #78934sharmstr
ModeratorPlease search before posting: https://archived.seventhqueen.com/forums/topic/login-redirect-after-email-activation
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
September 22, 2015 at 17:53 in reply to: Built in Privacy setting for your social networks built on Kleo #78933sharmstr
ModeratorI’m assuming you’re using the BP Activity Privacy plugin, since there isnt any ‘friends only’ or ‘only me’ settings for the activity by default. You need to talk to the plugin developer to see if their plugin is multi-site compatible and that its functioning properly. Kleo really only stylizes whats being generated by plugins. You can rule Kleo out as the culprit by enabling the WP 2015 Theme to see if the private activity posts still show up.
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
sharmstr
ModeratorGroups
1 – This is not a function of the theme. You can formally request this with the bp team
2 – I’m assuming you mean “rejected” instead of banned, as there is no ‘ban’ feature built into BP groups. In any case, again, this is not a function of the theme. You’ll need to request this feature with the BP team.Members
1 – There isnt a privacy setting for you activity by default. Perhaps you’re using a plugin for that. You’ll need to talk to the plugin developer.
2 – Perhaps this is a plugin conflict.
3- Correct. This is by design. You can request that there be an option to change this in theme options by opening a featured request here: https://archived.seventhqueen.com/forums/forum/feature-requests/kleo-feature-requests I will say that I did this on a few of my sites early on and it makes a mess of the activity feed when there are multiple levels of replies.
4 – I cant reproduce this problem in Firefox. See if you can reproduce here: http://seventhqueen.com/themes/kleo/activity/ login is demo demo.
5 – Again, cant reproduce. Multiple groups show up fine: http://seventhqueen.com/themes/kleo/members/demo/profile/ Perhaps a plugin conflict.General
1 – You can install Peters Login Redirect plugin and set a logout redirect to wherever you want.Hope this helps.
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
sharmstr
Moderatorrespond privately with admin credentials. disable all plugins before responding
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
sharmstr
Moderatorquestion 1 – For a 3 column layout, kleo calls the kleo_extra_sidebar function. Copy it from kleo/functions.php to your child theme and as suggested in my first answer, do a get_post_type check to load the correct sidebar for your cpt.
question 2 – hard to answer since i have no idea how you’ve coded your template. I will say you have fancy quotes in your code that shouldnt be there.
COPY CODE<?php kleo_switch_layout('3lr'); ?>
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
sharmstr
ModeratorDid you translate buddypress? https://codex.buddypress.org/translations/
You have to translate all plugins
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
sharmstr
ModeratorSame code. Just replace the image code with revslider code. Revslider clearly explains how to do that.
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. -
AuthorPosts