Forum Replies Created
-
Author
-
sharmstr
ModeratorHave you looked for errors? Right click on the page to inspect it. You should see something like ‘network’ that will show you all of the requests being made. The login uses admin-ajax.php (so do a ton of other requests). Look for the one that’s action = kleoajaxlogin. I believe you’ll see an error. I cant reproduce the error condition, but see attached screenshot of what I’m talking about. If I had a link to your site I could do this for 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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorIf you want me to continue to help, you’ll have to publicly post your info. I dont work here so I cant see private replies 🙂
Did disabling plugins 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
ModeratorIts also missing the bit where $kleo_post_types is defined so there’s no checkboxes under Search Context in the VC form.
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
ModeratorAbe. Can you attach function kleo_ajax_search in a text file. The pre tags dont parse out the image or link tags well on 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
ModeratorPut this in your childs function.php file and change ‘/activity’ to wherever you want them to go. Also, make sure you have ‘reload current page’ set in theme options -> Misc -> Login redirect for Popup
COPY CODEfunction kleo_ajax_login() { // Check the nonce, if it fails the function will break check_ajax_referer( 'kleo-ajax-login-nonce', 'security' ); // Nonce is checked, get the POST data and sign in user $info = array(); $info['user_login'] = $_POST['log']; $info['user_password'] = $_POST['pwd']; $info['remember'] = (isset( $_POST['remember'] ) && $_POST['remember'] === true) ? true : false ; $info = apply_filters('kleo_ajaxlogin_atts', $info); $user_signon = wp_signon( $info, false ); if ( is_wp_error( $user_signon ) ){ $error_msg = $user_signon->get_error_message(); echo json_encode(array( 'loggedin' => false, 'message' => '<span class="wrong-response"><i class="icon icon-attention"></i> ' . $error_msg . '</span>' )); //echo json_encode(array( 'loggedin' => false, 'message' => '<span class="wrong-response"><i class="icon icon-attention"></i> ' . __( 'Wrong username or password. Please try again.', 'kleo_framework' ) . '</span>' )); } else { if ( sq_option( 'login_redirect' , 'default' ) == 'reload' ) { $redirecturl = apply_filters( 'kleo_modal_login_redirect', '/activity/', '', $user_signon ); } else { $redirecturl = apply_filters( 'login_redirect', '', '', $user_signon ); } echo json_encode(array('loggedin'=>true, 'redirecturl' => $redirecturl, 'message'=> '<span class="good-response"><i class="icon icon-ok-circled"></i> ' . __( 'Login successful, redirecting...','kleo_framework' ) . '</span>' )); } die(); }
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
Moderator1 – They are prepping a new update, so it will probably be in that.
2 – Try disabling your plugins and test again. https://archived.seventhqueen.com/forums/topic/login-is-not-working-anymore
3 – +1. My tabs and pills page has the same issue. It was imported from demo.xml
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. I see what’s going on. The related portfolio shortcode is being removed once you add an image. When the template first loads the related section looks like this.
COPY CODE[vc_column_text css_animation="right-to-left"] <h3>Related Projects</h3> [/vc_column_text][kleo_gap size="20px"][kleo_portfolio display_type="default" title_style="normal" columns="4" item_count="4" pagination="no" filter="no" excerpt="yes" category="All"] <pre> After adding images, the related portfolios shortcode is removed <pre> [vc_column_text css_animation="right-to-left"] <h3>Related Projects</h3> [/vc_column_text][kleo_gap size="20px"]
@yaneczech The short term fix is to add a text block below the 20px gap and paste this shortcode in there. See attachedCOPY CODE[kleo_portfolio display_type="default" title_style="normal" columns="4" item_count="4" pagination="no" filter="no" excerpt="yes" category="All"]
@abe I think the templates should load the related portfolio shortcode into a text block so we can see it and probably protect it 🙂 . Also, I noticed that the current portfolio page is listed in the related portfolios. Might want to exclude 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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorHow about this?
.kleo-main-header { height: 140px; } .navbar-header .logo { padding-top: 13px; } .collapse.navbar-collapse.nav-collapse.pull-right { margin-top: 50px; max-height: 80px; }
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
ModeratorNevermind. I was able to recreate it.
@abe. I even tested with the pages (w/Carousel Images and w/Slider) that were imported as part of the demo content from kleo.xml. Right after import, the pages do not have images in the sliders, but the portfolio pages show related items. As @yaneczech states, once you add images to the carousel in VC and save, the related items no longer display. Even if you remove the images from the carousel and resave, the related items are still not displaying. For the heck of it, I opened a one of the demos in the editor and hit save without changing anything to see if there was an issue when the page was saved. In that test, the related items still showed up. So, its definitely happening when adding carousel items.
@yaneczech, sorry I dont have a fix for you at the moment. I’ll do more testing tomorrow morning.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
ModeratorCan you tell me what type of portfolio page you’re trying it on? I’ve been playing with the portfolio and havent come across this. I’m going to try to reproduce your problem. Better yet, can you switch to ‘classic mode’, then click on ‘text’ and copy the code for me. Just attach a text file here. I’ll import it into a page on my site and see if I have the same problem.
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’ll test it over coffee tomorrow AM. The code looks great though. Probably because there’s not a single line of my code left in it. LOL. Thanks Abe. 🙂
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 a knucklehead. There’s bee a stick for the change log for quite awhile now. Sorry: https://archived.seventhqueen.com/forums/topic/kleo-updates-change-log
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 add a class name to the accordion. In your css you can control the colors. Let say your class name is my-custom-accordion.
COPY CODE.my-custom-accordion .panel-title { background-color: red; } .my-custom-accordion .panel-title:hover{ background-color: blue; }
What I dont know is how to change it based on open or collapsed state since those classes are added to the body of the section and not the title.
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
ModeratorAlso, I think I saw a topic over there that shows you how to add it to bbpress too.
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 a new buddypress feature. I think I saw someone asking how to customize that in their support forum.
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
ModeratorLink to prove it please 🙂
Here’s a screenshot from the demo site.
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
ModeratorOh, and to answer your question about not being able to post to ‘stick’ topics. It because its in the FAQ forum now
“The forum ‘KLEO – FAQ’ is closed to new topics and replies.”
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
Moderatorput this in you child css
COPY CODE.main-title { 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
ModeratorI was looking at the source code and you have a bunch of ‘strong’ tags that are being parsed. This makes me believe that either you forgot to close the strong tag somewhere or you forgot to close a different tag somewhere else. You can see in the attached image that your tabs want to work, but because of the strong tags, they aren’t parsing correctly. If I manually remove the strong tag, your tabs 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
Attachments:
You must be logged in to view attached files.sharmstr
ModeratorKleo doesnt have default pages, but Buddypress does, which I think is what you are after. Again, check your setup
WP Admin -> Settings -> Buddypress -> Pages. You’ll be given the option to create the page if it doesnt exist. Buddypress pages dont need any content. You just give the page a title (like “Register”) and then publish.
Let me know if that gets you back on track.
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“The buddypress login sidebar widget is supplied by the Buddypress theme” should be Buddypress plugin
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
ModeratorFor issue one:
You can change the redirect for the popup login to the current page under Theme Options -> Miscellaneous -> Loging redirect for Popup (assuming you’re talking about logging in from the popup).For logging in via the sidebar: The buddypress login sidebar widget is supplied by the Buddypress theme, not Kleo. This is a common question asked over on the buddypress forums. Do a google search and you’ll find several ways of redirecting after logging in.
For the registration link, I would first double check your buddypress pages setup and make sure you have the correct page selected for register. I was able to recreate this issue by selecting ‘activity’ for the register page. If your setup is correct, then the next step would be to ask over at the buddypress support forum since, again, they wrote and support that widget. Kleo only styles 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 think it either has something to do with the errors (when I looked again it has over 100 errors) or with a plugin conflict because I was able to achieve what you were trying to do without an 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
ModeratorMaybe it has something to do with all the errors your site is throwing. See attached
In the meantime, I’ll see if I can do what you’re wanting to do on my site.
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
ModeratorDid you try searching before you posted this? Its an honest question and I’m not trying to be rude. It seems like we are getting more and more of the same questions asked so I’m wondering if you tried searching.
To answer your question, please see this https://archived.seventhqueen.com/forums/topic/what-plugin-are-you-using-to-show-ticket-status
You can restricted in using the options in the forum edit screen.
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
ModeratorClearing the cache on my phone did the trick. Its looks great!
Hey, can you put either a magnifying glass or the word search in the box? My users will have no idea that’s a search box. :/
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
ModeratorChrome on Samsung S4 🙂 Lemme try a different browser
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
ModeratorWere you telling me to look at the demo because you resolved the phone issue? If so, its still has a black background for view all results. The rest of it looks great and probably is better that you left out the excerpts.
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
ModeratorHmmm. Yes it was. Look at my screenshot. But, that’s fine with me. Like I said, I suck at regexps. I always have 🙂 Just glad its fixed. Thanks!
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
ModeratorIts in the kleo zip file. Make sure you download the Full package from Theme Forest. Please read the documentation. It goes through installation.: https://archived.seventhqueen.com/documentation/kleo
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 need to install and use the Visual Composer plugin. Its included in the full download along with the Kleo documentation: https://archived.seventhqueen.com/documentation/kleo The VC plugin documentation is also included in the 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
ModeratorThank you very much. Keep in mind that Kleo is a theme which means that for the most part, it handles ‘styling’ of other plugins. But, because Kleo kicks butt, it does have its own features. It will take some time to figure out what is a kleo function and what is another plugin, but once you do, you’ll know where to go for help. For example, you should go through the VC documentation to sort your accordion issue: http://vc.wpbakery.com/video-academy/work-tabs-accordions-tours-visual-composer-wordpress/
I rarely know the answer to the questions posted on here, so I google everything.
Please mark this resolved.
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 Can you close this or delete 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
ModeratorIts in two places; Header Options and Buddypress. You need to change both.
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 don’t. If you read the thread, you’ll see that it will be part of Kleo 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
sharmstr
ModeratorThose are not Kleo features, but
1 – You can order your forums by going bringing them up in the backend and setting the “order”. WP Admin -> Forums -> Click on a forum -> Add a value to the “order” box. “0” will show up first in the list, so if you start changing them and it doesnt automatically look like its working, that’s why. Personally I set them in increments of 10 so I have room for growth and dont have to reorder them every time I add a new forum. example 0, 10, 20 ,30. If I add one a month later that needs to be the second one in the list, then I can just make it 5 and not have to change any other ones.
2 – https://www.google.com/#q=buddypress+auto+group+join
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 dont know of an online change log for kelo, but there’s one in download called version.txt
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 explained how here https://archived.seventhqueen.com/forums/topic/username-password-realtime-validation#post-28182
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 problem. I’m sure you’ll test it because I didnt 🙂
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
ModeratorYeah, I thought about doing that but didnt feel like digging into it yesterday. I like the idea of picking what to display in the live search results because it you include 4 of every context, the list is going to be huge… especially on phones.
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