Forum Replies Created

Viewing 40 posts - 12,441 through 12,480 (of 20,101 total)
  • Author
  • in reply to: Tabs, Changing the whole look, size and color #127236
     Radu
    Moderator

    Hi,

    Which tabs ? vertical or horizontal ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: password field #127235
     Radu
    Moderator

    Hi,

    Fields to the registration page can be added from wp-admin -> users -> profile fields

    You not see the forgot password in register form because you are on the registration area not in login area

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to hide comment bubble on posts and pages #127234
     Radu
    Moderator

    Hi,

    go to wp-admin -> theme options -> blog -> Display post meta in Single post page* OFF

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Followers Following Shortcode #127233
     Radu
    Moderator

    Hi,

    Provide link to the plugin page also your url is not correct, anyway we don’t have an option to can add the widget there to run.

    You will have to edit some php file for that.

    For a better guidance provide a screenshot in that you will show where you need that.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: A couple of issues #127232
     Radu
    Moderator

    Try again to paste the code from here http://pastebin.com/raw/mvsrAR0k

    Or simply load directly the js in head….

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: extra fields on home register demo page #127231
     Radu
    Moderator
    Not marked as solution
    in reply to: Infinite scroll #127229
     Radu
    Moderator

    Hi,

    I’ve tried to configure the module on your site and it not works for some reason, i will add this to bug list and we will fix this in future.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: PHP server 5.6 upgrade #127226
     Radu
    Moderator

    Great if you have figure out what causes that and thank you for posting the exact cause maybe it will helps other users.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: How to add footer colum #127225
     Radu
    Moderator
    Not marked as solution
    in reply to: A couple of issues #127217
     Radu
    Moderator

    Ticket was assigned to another moderator… so the solution works ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Profile menu error #127216
     Radu
    Moderator

    Hi,

    Ty for posting, Kleo 4.0.8 with latest woocommerce,buddypress and rtmedia should work ok

    Have a nice week

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    I’ve added this issue on the bugs list and we will investigate and also we will fix this.
    We will get back to you with a fix until we release a new theme update.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Cleo Post Carousel #127214
     Radu
    Moderator

    Hi,

    I’ve added this issue on the bugs list and we will investigate and also we will fix, i will upload the 4.0.7 version here, we will take in consideration your advice regarding to member downloads page.

    KLEO 4.0.7 TEMP DOWNLOAD : https://drive.google.com/open?id=0Bxo5b6iHWRMwalc4R3NKUGxpMFE

    We will get back to you with a fix until we release a new theme update.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Site title in header #127211
     Radu
    Moderator

    Hi,

    You can do that by using this function, that you will have to add it to wp-content/themes/kleo-child/functions.php

    Note : Child theme needs to be installed and activated.

    Edit and adapt it for your needs

    COPY CODE
    
    
    /***************************************************
    :: Bottom contact form
     ***************************************************/
    
    if (!function_exists('kleo_contact_form')) {
        function kleo_contact_form( $atts, $content = null ) {
            extract(shortcode_atts(array(
                'title'    	 => 'CONTACT US',
                'builtin_form' => 1
            ), $atts));
    
            $output = '';
    
            $output .= '<div class="kleo-quick-contact-wrapper">'
                .'<a class="kleo-quick-contact-link" href="#"><i class="icon-mail-alt"></i></a>'
                .'<div id="kleo-quick-contact">'
                .'<h4 class="kleo-qc-title">'. $title .'</h4>'
                .'<p>'. do_shortcode($content).'</p>';
            if( $builtin_form == 1 ) {
                $output .= '<form class="kleo-contact-form" action="#" method="post" novalidate>'
                    . '<input type="text" placeholder="' . __("Your Name", 'kleo_framework') . '" required id="contact_name" name="contact_name" class="form-control" value="" tabindex="276" />'
                    . '<input type="email" required placeholder="' . __("Your Email", 'kleo_framework') . '" id="contact_email" name="contact_email" class="form-control" value="" tabindex="277"  />'
                    . '<textarea placeholder="' . __("Type your message...", 'kleo_framework') . '" required id="contact_content" name="contact_content" class="form-control" tabindex="278"></textarea>'
                    . '<input type="hidden" name="action" value="kleo_sendmail">'
                    . '<button tabindex="279" class="btn btn-default pull-right" type="submit">' . __("Send", 'kleo_framework') . '</button>'
                    . '<div class="kleo-contact-loading">' . __("Sending", 'kleo_framework') . ' <i class="icon-spinner icon-spin icon-large"></i></div>'
                    . '<div class="kleo-contact-success"> </div>'
                    . '</form>';
            }
            $output .= '<div class="bottom-arrow"></div>'
                .'</div>'
                .'</div><!--end kleo-quick-contact-wrapper-->';
    
            return $output;
        }
        add_shortcode('kleo_contact_form', 'kleo_contact_form');
    }
    

    You will be able to re-write form structure updateproof using child theme.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Kleo Update #127206
     Radu
    Moderator
    Not marked as solution
    in reply to: RTL doesn’t work #127205
     Radu
    Moderator

    Ok i understand,

    I will mark the topic as resolved

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: extra fields on home register demo page #127204
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: RTmedia and Buddypress Like Conflict #127201
     Radu
    Moderator
    Not marked as solution
    in reply to: A few issues on our homepage #127198
     Radu
    Moderator
    Not marked as solution
    in reply to: Clone a website #127195
     Radu
    Moderator

    Have a nice week

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: RTMEDIA and Language #127174
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Hide featured image from posts? #127172
     Radu
    Moderator
    Not marked as solution
    in reply to: A couple of issues #127171
     Radu
    Moderator

    Hi,

    Please try this solution : https://archived.seventhqueen.com/documentation/kleo#wp-engine

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Stretch row error #127096
     Radu
    Moderator

    Hi,

    Unable to reproduce on my install, can you please make a video to can see exact steps to reproduce this ?

    Also you can try this with child theme de-activated and with the rest of plugins de-activated excluding k-elements and visual composer.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Hi, I've tested the messages between friends and it works, it autocompletes, without any error... You can increase the widget title with this css
    #sidemenu-wrapper .menu-section.widget .menu-section-header span {
        font-size: 21px !important;
    }
    
    Plain text form widgets and liks
    .widgets-selection .widget, .widgets-selection .widget a {
        font-size: 30px !important;
    }
    
    Let me know if these selctors will match the elements that you need. Regarding the functionality that you want on hover,we don't have a quick solution to his Cheers R.
    in reply to: Menu+sidebar not working on iphone 4s #127088
     Radu
    Moderator

    Hi,

    What IOS version do you have on the phone ? it’s an older one ?

    From chrome shows ok ?

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Clone a website #127087
     Radu
    Moderator

    Hi,

    You can do something like this :

    1. Copy the files from the existing install and also the existing database.

    2. Go to the new host deploy files in the new domain directory, open the saved database, replace the old domain with the new one, import it.

    3. Login to admin… and replace images

    If you handle better version a, you can do it,i’ve told you my personal opinion

    https://www.google.com/search?safe=off&espv=2&q=clone+wordpress

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Job board compatible with Kleo? #127086
     Radu
    Moderator

    Hi,

    Personally i haven’t tested these between, maybe other users have been tested…

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    That it’s the post title, if you want to hide it you can do it with this css

    COPY CODE
    
    .template-page article.post .article-content h3 {
        display: none;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Masonry Grid & Post Grid DO NOT SHOW FEATURED IMAGE #127084
     Radu
    Moderator
    Not marked as solution
    in reply to: Users Group Role bug #127083
     Radu
    Moderator

    Hi,

    Please try to do this test, with default wordpress theme… to see if continue to happens and also with the rest of the plugins de-activated.

    Let me know

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: RTL doesn’t work #127082
     Radu
    Moderator

    Hi,

    Activate another theme,activate back the theme… anyway i see your site in RTL style maybe you have solved this meanwhile

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Cleo Post Carousel #127081
     Radu
    Moderator

    Hi,

    Please explain this “not displaying the images correctly” if you will try again the latest version maybe you will have to specify the image dimensions again maybe you was using a preset like : small,medium,large or full.

    Note the old resolution of the photos from the module and specify it on the new theme version…

    Provide details what resolutions haves images before the update and after, most probably is related to the image size setting

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Video oEmbed URL – Grabs no video from youtube #127080
     Radu
    Moderator

    Hi,

    Select the video template from the right side under publish button

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Display Media on post page #127078
     Radu
    Moderator

    In the provided page i cannot see any image, http://www.konkurrencer-nonstop.dk/xl-byg-konkurrence/ please show me a post with a large image to can give you a css to control the size of the image

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    I’ve add this to the improvement list and in a future update this will be fixed

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 12,441 through 12,480 (of 20,101 total)

Log in with your credentials

Forgot your details?