Forum Replies Created

Viewing 21 posts - 20,081 through 20,101 (of 20,101 total)
  • Author
  • in reply to: related posts #39193
     Radu
    Moderator

    For this you need to modify a core theme file wich is not recommended.

    1. Navigate to wp-content\themes\kleo\page-parts\post-content-carousel.php
    2. Go to line 136 or search <?php echo kleo_excerpt(); ?> and delete this line.

    Note : The description will be disappear definitely from “—RELATED ARTICLES—” widget.

    Recommended solution : use kleo-child theme and build your custom post layout.

    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: Uber menu issue #39190
     Radu
    Moderator

    You can provide a url ?

    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: admin area missing #39179
     Radu
    Moderator

    You no longer need to change anything on ftp.

    Yes, your theme Kleo is the latest version.

    If you need the old kleo theme, you will find on themes/oldkleo

    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: Problem with google maps #39176
     Radu
    Moderator

    You need to delete from wp-content\themes\kleo\vc_templates\vc_gmaps.php

    Let me know if it works

    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: admin area missing #39165
     Radu
    Moderator

    Problem solved,

    The problem was caused by the plug-K Elements.

    Now your theme and k-element plugin was updated to last version.

    I encountered problems uploading the theme and images, would need to take a look at this.

    We solve these difficulties by using FTP

    You need to check server configuration.

    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: admin area missing #39152
     Radu
    Moderator

    Please provide me correct login details !

    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: admin area missing #39141
     Radu
    Moderator

    On FTP i cannot see the wordpress files.

    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: admin area missing #39139
     Radu
    Moderator

    I cannot login with that details.

    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: Sound alert on message #39131
     Radu
    Moderator

    Hi,

    That is custom work which requires programming skills and a dedicated amount of time that isn’t covered by our support team and I am sure you understand that.

    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: Problem with google maps #39130
     Radu
    Moderator

    Ok, send me login details.

    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: Kleo theme Edit Home page #39128
     Radu
    Moderator

    Hi,

    You can increase number of posts from Settings -> Reading -> Blog pages show at most -> change 10 to 20.

    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: admin area missing #39127
     Radu
    Moderator

    Also, i need wordpress admin account.

    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: admin area missing #39126
     Radu
    Moderator

    Please arhive the 2ndkey.ppk, make it .zip or rar.

    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: admin area missing #39123
     Radu
    Moderator

    Check ” Set as private reply “

    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: admin area missing #39121
     Radu
    Moderator

    In this case, please provide me ftp/cpanel access.

    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: admin area missing #38649
     Radu
    Moderator

    Try to disable all plugins and check after. If it works you need to indentify what plugin cause the problem.

    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: admin area missing #38635
     Radu
    Moderator

    Hi,

    You can add here a screenshot about your problem ?

    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: Product Page #38629
     Radu
    Moderator

    Hi,

    Making those changes implies custom work which requires programming skills and a dedicated amount of time that isn’t covered by our support team. You should try to hire a programmer.

    Thank you for understanding.

    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: kleo-quick-contact #38620
     Radu
    Moderator

    For this you need to edit wp-content\themes\kleo\lib\theme-functions.php ,
    search for function kleo_contact_form , inside this function you need to replace “Your Name”,”Your Email” and “Type your message…” with your prefered text. see screenshot below.

    NOTE : Is not recommended to modify core theme files.

    Recommended solution :

    You need to install kleo-child theme, and insert in kleo-child functions.php this code after set your preferred text.

    COPY CODE
    
    
    if (!function_exists('kleo_contact_form')) {
    	function kleo_contact_form( $atts, $content = null ) {
    		extract(shortcode_atts(array(
    			'title'    	 => 'CONTACT US'
    		), $atts));
    	
    		$output = '';
    		
    		$output .= '<div class="kleo-quick-contact-wrapper">'
    			.'<a 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>'
    				.'<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>'
    				.'<div class="bottom-arrow"></div>'
    			.'</div>'
    		.'</div><!--end kleo-quick-contact-wrapper-->';
    			
    		return $output;
    	}
    	add_shortcode('kleo_contact_form', 'kleo_contact_form');
    }
    
    
    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: kleo-quick-contact #38552
     Radu
    Moderator

    Hello,

    You cand change this text from Theme Options Panel -> Layout Settings -> scroll down at this field “Contact form text”.

    For custom css you can add your code from Theme Options -> General settings -> Quick css, or you can use kelo-child for your customization.

    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: Problem with google maps #38546
     Radu
    Moderator

    Hello,

    Try to update your Kleo theme to the latest version.

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

Log in with your credentials

Forgot your details?