Forum Replies Created
-
Author
-
sharmstr
ModeratorView is built into the message and there is no class on it so its a bit difficult to remove it without removing the message completely IF the message contains a url.
With that said, you can try this in your child css (or quick css)
COPY CODE#item-header-content #latest-update a { display: none; }
So, if the message is just text, only View will be removed. But if its a url, all of it will be removed. See attached for an example of what I’m talking about.
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
ModeratorHold off until Kleo 3.0. Go Pricing (http://codecanyon.net/item/go-responsive-pricing-compare-tables-for-wp/3725820) will be included which will allow you to build pricing table shortcodes that you’ll be able to enter into WP Admin > Memberships > Advanced Settings > Messages
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
ModeratorNope. My site is multisite. Kleo 3.0 isnt out yet.
Look for plugin conflicts that might be overriding the css. Or, if you have it, clear your server cache and/or CDN.
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 in your childs functions.php file
COPY CODEfunction kleo_membership_info() { global $membership_levels, $current_user; if (!$membership_levels) { return; } $levels_arr = array('2','3','4'); if (bp_is_my_profile()) { if ( isset($current_user->membership_level) && in_array($current_user->membership_level->ID, $levels_arr) ) { echo '<a><span class="label radius pmpro_label">' . $current_user->membership_level->name . '</span></a>'; } else { echo '<a><span class="label radius pmpro_label">' . __("Upgrade account", 'kleo_framework') . '</span></a>'; } } }
Change the $levels_arr to the IDs of the levels you do NOT want to show ‘upgrade’ to. Those levels will display the level name instead of Upgrade Account.
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
ModeratorSorry, I dont know.
As a test, I used the code here: https://codex.wordpress.org/Plugin_API/Filter_Reference/login_redirect on the Kleo 3.0 site I have and it worked fine. Then I added it to my Kleo 2.4.3 site and it also worked fine. It obviously doesnt have all of your logic, but the main difference I see is how the redirect is called. You’re using wp_redirect() which I dont think you have to. Since you’re filtering the ‘login_redirect’ filter, the redirect will happen automatically. Change it to return $redirect_to and remove the exit. Also, make sure you have Default WP redirect set in Theme Options > Misc. Let me know if that works.
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
ModeratorStrange. Works fine on my Kleo 2.4.3 and Kleo 3 test site. See attached.
What version of VC do you have installed?
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 search before posting: https://archived.seventhqueen.com/forums/topic/ajax-search-box-color#post-60916
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 insufficient resources errors.
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, the new redirect isnt just a box that allows you to specify a location. The actual logic has been altered quite a bit.
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
ModeratorGive it a try in Kleo 3.0 when it comes out. The login functionality that Kleo overrides has been made a bit more friendly. It will probably work then. If not, let us know. I just dont see a point in changing a bunch of code on your site when Kleo 3 is right around the corner.
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
ModeratorDont know. Try googling.
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
Moderatorcredentials dont work.
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 way with Kleo. You’d have to find a plugin that will inject them into the results.
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 depends on where exactly you want it displayed. To put it on top of the main content, you can use this in your childs functions.php file
COPY CODEfunction add_to_forums() { if ( ( function_exists('is_bbpress') && is_bbpress() ) && ( function_exists('is_buddypress') && !is_buddypress() ) ) { do_shortcode('[yourshortcode]'); } } add_action("kleo_before_main_content", "add_to_forums");
If you want it elsewhere, take a look in the template files located in /kleo/page-parts; specifically the before wrap, title and header files. Look for do_action(‘xxxx’) and change “kleo_before_main_content” in my example to whatever xxxx is.
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’m really happy with Site Ground. I’m the US.
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
ModeratorOkay. You didnt mention post grid or portfolios in that explanation. Is the accessible page a post grid page that has a box for every course that will show a course description and the instructor? Or a box for every instructor that has a list of the course they teach? Is the accessible page a portfolio page?
I’ll ask again, is “projects” a custom post type?
I think no matter what, you’ll have to use a custom excerpt to display information like a course description, since PMPro has a switch that will allow you to show an excerpt from protected content. I’m saying ‘custom’ excerpt because you can control how much info is displayed that way. Yes, that means having partial duplicate content, but at least its coming from one location (i.e. post/project) so its an easy copy paste.
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
ModeratorYep. There’s no point in showing a login link if you’re already logged in 🙂 You’ll find the same with the register link and the register page.
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
ModeratorYep. Its look okay now. Great.
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
ModeratorNah. Its all good. It actually got a new option into the theme 🙂
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
ModeratorLooks like a bootstrap.css conflict with your wd shortcode plugin. Its screwing everything up. I cant confirm because your site is hanging when I try to login in.
For future reference, its common practice to disable all plugins, then clear your cache and see if you have the issue. If you dont, then enable the plugins one by one to find the conflict.
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 think its just a matter of you not know whats what yet. The kleo login logs you into the site. There is no separate login for buddypress and wordpress. Buddypress adds functionality to WordPress just like any other plugin.
There’s no need for me to login now. Just remove your login link that you created in the menu and add the kleo one. Your members can use that (which will launch to Kleo modal login window) or if they are on a part of your site that has the login in the sidebar, they can use that. Simple. No need to build a page or direct them to /wp-login.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
ModeratorAgain, that’s not Kleo. If you’re not getting notifications, it could be a number of things but nothing Kleo related. Its all BP and WP and SMTP.
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
ModeratorOkay, but as I’ve said, the buddypress developers never wrote in screen notifications for activity comments. Only email notifications. That’s not Kleo’s fault.
The only thing that Kleo has done with notifications is added Live Notifications. What it does is checks the notification table in the db for any notifications for the user and shows the notifications in the menu. Since buddypress doesnt log comments in the notification table there’s no way for Kleo to notify you of it.
Make sense?
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 standard login page so I know nothing about it. Either direct them to http://dexterlist.com/wp-login.php or use the Kleo login modal. Appearance > Menu > Kleo > Login
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.sharmstr
ModeratorOkay, I’ve submitted the new code to the developers. Lets see if it gets accepted 🙂
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 how you configure it. If you dont want to give me access then look for errors in the console or plugin conflicts.
How exactly are they logging in? Via wp-login.php or the Kleo modal?
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
ModeratorWhat options are you talking about?
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 credentials
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
ModeratorNow that Kleo 3.0 has been pushed back a bit more because of BP 2.3 perhaps I can squeeze in a quick fix that will put a “site default” option for bp pages. That might make it a bit more simple to understand for folks.
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
ModeratorTheme Options > Buddypress: Page title location. LOL
I’m not really laughing at you. Its confusing unless you understand that BP does its own magic with pages. That’s why a lot of settings are separate from Blog settings.
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
ModeratorTheme options > Misc: Loggin redirect.
Or install Peters Login Redirect plugin for more options.
You’ll be able to specify the redirect page in Kleo 3.0
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
ModeratorCorrect. They do not. They never have. Search the bp forums. There’s a plugin for that but not sure if its still being maintained.
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
ModeratorLooks fine to me. btw – 404 errors usually happen because permalinks get corrupt during upgrades/changes. resaving usually fixes it.
also, not a good idea to update plugins just becasue you can. The current version of kleo isnt fully compatible with the new bp.
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
ModeratorDont know. Only 7th queen knows 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
sharmstr
ModeratorThat’s not a bug. That’s how its supposed to work. You can change that. Search is your friend
COPY CODE.bg-full-video .container, .bg-full-video .container-full { pointer-events: auto; }
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 still dont understand what you mean by protect a project category. Meaning those projects (I’m guessing this is a CPT you have) dont show up in the list? Is the portfolio used for the teachers and a list of their courses? Are the courses the pages that are protected?
Sorry for being stupid here, but I really have no idea what you’re trying to do. LOL Maybe some pictures or links or access.
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
ModeratorLooks like uber menu is doing it.
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 gave you a link previously that explains how to update the plugins. You have to install them from the kleo download.
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 is available in Kleo 3.0
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@max – You didnt miss the point. But what you missed is that that wasn’t available until BP Cover Photo 1.1 which was only released 6 days ago. In other words, this has been implemented and should be closed. 🙂
https://wordpress.org/plugins/buddypress-cover-photo/changelog/
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
-
AuthorPosts