Forum Replies Created

Viewing 40 posts - 10,521 through 10,560 (of 11,328 total)
  • Author
  • in reply to: Problems with login & tabs #31702
     sharmstr
    Moderator

    Have 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 solution

    This 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.
    in reply to: Problems with login & tabs #31692
     sharmstr
    Moderator

    If 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Search disable enter key #31689
     sharmstr
    Moderator

    Its 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 solution

    This 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.
    in reply to: Live Search disable enter key #31686
     sharmstr
    Moderator

    Abe. 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: KLEO Login Redirect #31684
     sharmstr
    Moderator

    Put 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 CODE
    
    function 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Problems with login & tabs #31682
     sharmstr
    Moderator

    1 – 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Related Projects are not shown #31680
     sharmstr
    Moderator

    Okay. 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 attached

    COPY 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 solution

    This 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.
    in reply to: KLEO Header Height (navigation bar) #31657
     sharmstr
    Moderator

    How 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Related Projects are not shown #31655
     sharmstr
    Moderator

    Nevermind. 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Related Projects are not shown #31653
     sharmstr
    Moderator

    Can 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Search disable enter key #31646
     sharmstr
    Moderator

    I’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Kleo Changelog – Parralax Issue #31641
     sharmstr
    Moderator

    I’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Accordion CSS #31639
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile Links #31638
     sharmstr
    Moderator

    Also, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile Links #31637
     sharmstr
    Moderator

    That’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove the grey bar #31633
     sharmstr
    Moderator

    Link 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 solution

    This 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.
    in reply to: Live Search disable enter key #31628
     sharmstr
    Moderator

    Oh, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove the grey bar #31626
     sharmstr
    Moderator

    put 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Tabs broken issue #31623
     sharmstr
    Moderator

    I 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 solution

    This 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.
    in reply to: PLEASE HELP #31620
     sharmstr
    Moderator

    Kleo 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: PLEASE HELP #31617
     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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: PLEASE HELP #31616
     sharmstr
    Moderator

    For 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Tabs broken issue #31615
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Tabs broken issue #31611
     sharmstr
    Moderator

    Maybe 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 solution

    This 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.
    in reply to: Status – Resolved, Inprogress #31610
     sharmstr
    Moderator

    Did 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Search disable enter key #31608
     sharmstr
    Moderator

    Clearing 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 solution

    This 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.
    in reply to: Live Search disable enter key #31603
     sharmstr
    Moderator

    Chrome 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Search disable enter key #31572
     sharmstr
    Moderator

    Were 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Shortcodes not allowed in feature item? #31566
     sharmstr
    Moderator

    Hmmm. 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Visual Composer Not Updating #31565
     sharmstr
    Moderator

    Its 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Visual Composer Not Updating #31516
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to Pin a Forum or Group As featured #31508
     sharmstr
    Moderator

    Thank 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile Cover Plugin #31506
     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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Page Info Bug #31505
     sharmstr
    Moderator

    Its 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Profile Cover Plugin #31504
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to Pin a Forum or Group As featured #31503
     sharmstr
    Moderator

    Those 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Kleo Changelog – Parralax Issue #31490
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Username / Password realtime validation #31488
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Shortcodes not allowed in feature item? #31485
     sharmstr
    Moderator

    No 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Custom Search Form Shortcode #31484
     sharmstr
    Moderator

    Yeah, 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 10,521 through 10,560 (of 11,328 total)

Log in with your credentials

Forgot your details?