Forum Replies Created

Viewing 36 posts - 1 through 36 (of 36 total)
  • Author
  • in reply to: Question about visual composer #155320
     prohealth
    Participant
    Not marked as solution
    in reply to: Question about visual composer #155182
     prohealth
    Participant
    Not marked as solution
    in reply to: Building without visual composer #155181
     prohealth
    Participant
    Not marked as solution
    in reply to: Building without visual composer #155177
     prohealth
    Participant
    Not marked as solution
    in reply to: Top main menu #127014
     prohealth
    Participant

    Hi there

    Since the latest theme update, it seems that the top menu has been separated into 2 layers, please see screenshots attached.
    Please how can this be “merged” into one top menu like it was before?

    in reply to: Updated Theme files issues #124841
     prohealth
    Participant
    Not marked as solution
    in reply to: Updated Theme files issues #124840
     prohealth
    Participant
    Not marked as solution
    in reply to: Page Layout #121629
     prohealth
    Participant
    Not marked as solution
    in reply to: Page Layout #121464
     prohealth
    Participant
    Not marked as solution
    in reply to: Page Layout #121304
     prohealth
    Participant
    Not marked as solution
    in reply to: Page Layout #121111
     prohealth
    Participant
    Not marked as solution
    in reply to: Alignment problem after update #116389
     prohealth
    Participant
    Not marked as solution
     prohealth
    Participant

    Sorry I don’t understand what you need

    All I’m saying is that I cannot get the language switcher for mobile menu and was given the code to update to wp-content/themes/kleo-child/functions.php

    Tried to add the code, according to the instructions given by your staff but the code doesn’t work, so please advise what to do next?

    now the website mobile menu is only available in ENG version only, but we want it to be like desktop menu, able to change languages

    in reply to: Footer 1 English version #108165
     prohealth
    Participant

    Sorry the password should be: 2bP#Ah1Y3McxCKCEsHEs%s9g

    in reply to: Footer 1 English version #108164
     prohealth
    Participant

    sorry I realised my first message wasn’t a private reply so have changed the PW to qfhqoihqoccikqf

    in reply to: Footer 1 English version #108161
     prohealth
    Participant

    Hi there

    I did do that, that’s what I’m saying is wrong.
    The changes/ coding is not showing up, please see screenshot

    in reply to: Cleo mobile menu #104545
     prohealth
    Participant

    Yes for sure!

    in reply to: Cleo mobile menu #104051
     prohealth
    Participant

    thank you so much!

    in reply to: Cleo mobile menu #103939
     prohealth
    Participant

    sorry forgot to give you, the backend access is
    User: bapparabi
    PW: mjpCP)BV06#Xe)JM3jiRTaJ!

    in reply to: Cleo mobile menu #103937
     prohealth
    Participant

    Hi

    I’m having this really strange black box on the top of the mobile website, but I can’t seem to find out where to get rid of it, please help

    in reply to: Cleo mobile menu #98442
     prohealth
    Participant

    Thank you, the scrolling works now with the sub menu

    Please let me know about the language switcher

    Thanks for all the great support!

    in reply to: Cleo mobile menu #97601
     prohealth
    Participant

    Hi

    Is there any update on the mobile menu problems
    1. cannot scroll sub menus
    2. cannot change language options

    in reply to: Cleo mobile menu #96890
     prohealth
    Participant

    Hi

    Can you also please check why the mobile menu also cannot change to the chinese languages? the dropdown does not work

    Thanks
    S

    in reply to: Cleo mobile menu #96806
     prohealth
    Participant

    Hi

    Yes I installed this newsletter plugin yesterday, see screenshot attached.
    So strange, oh no I really like this newsletter plugin, why is that affecting the mobile menu?

    Now you can see the problem I described to you before in screenshots, no scrolling possible on mobile menu.

    Thanks
    S

    in reply to: Cleo mobile menu #96551
     prohealth
    Participant

    Thanks Radu

    I’m really surprised no one else who bought this theme is having as much issues with the mobile menu as I am. But now that I can see the text, the scrolling is not working on the mobile menu, so if I have more items on the sub-menu, it’s not possible to see it or scroll down to the other main menu items

    Please see screenshot attached

    in reply to: Cleo mobile menu #96313
     prohealth
    Participant

    Hi Radu

    The code you provided me for the mobile menu is still not working, now the background is ok, but the text is not black.

    Please see screenshot attached

    in reply to: Cleo mobile menu #96104
     prohealth
    Participant

    Hi Radu

    can you please help me with these issues
    1. Mobile menu- sorry can this be black font and white background just like the desktop version?
    Can you please resend the sticky code

    2. You can customize or changing strings names or buttons by adding this function to wp-content/themes/kleo-child/functions.php

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    /***************************************************
    :: Bottom contact form
    ***************************************************/

    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”>’
    .’<i class=”icon-mail-alt”></i>‘
    .'<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’);
    }

    —- sorry I don’t know how to add this, can you please help add it?

    3. For string translation you can use loco translate plugin. https://wordpress.org/plugins/loco-translate/
    —– Can you please explain more???
    The text on the left footer is not working.

    Backend login:
    User: bapparabi
    PW: mjpCP)BV06#Xe)JM3jiRTaJ!

    in reply to: Cleo mobile menu #95832
     prohealth
    Participant

    Hi there

    1. I managed to find out how to turn off shopping cart on mobile menu – so all ok with mobile menu

    2. You can customize or changing strings names or buttons by adding this function to wp-content/themes/kleo-child/functions.php

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    /***************************************************
    :: Bottom contact form
    ***************************************************/

    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”>’
    .’<i class=”icon-mail-alt”></i>
    .'<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’);
    }

    —- sorry I don’t know how to add this, can you please help add it?

    3. For string translation you can use loco translate plugin. https://wordpress.org/plugins/loco-translate/
    —– Can you please explain more???

    Backend login:
    User: bapparabi
    PW: mjpCP)BV06#Xe)JM3jiRTaJ!

    in reply to: Cleo mobile menu #95802
     prohealth
    Participant

    Hi Radu

    Thanks for getting back to me so fast, the mobile menu is fine now, but how do I get rid of the shopping cart on mobile view?

    Happy New Year!

    Backend login
    User: bapparabi
    PW: NKb4BK&gJR2eSEArt%bWo^6z

    Thanks
    Sophie

    in reply to: Cleo mobile menu #95614
     prohealth
    Participant

    Hi

    1. I need client key to ca view website
    —- backend login details are

    user: bapparabi
    PW: NKb4BK&gJR2eSEArt%bWo^6z

    frontend client key PW: SS4648

    in reply to: Cleo mobile menu #95541
     prohealth
    Participant

    Hi Radu

    Sorry putting all questions/ issues into 1 email so it’s easier

    1. With the code you gave me for the mobile menu, it’s affecting the desktop menu, which disappears on scrolling, so I can’t use it.
    Can you please provide another solution for the sticky mobile menu?

    2. With the plugin/ settings for Contact to Email, can you please let me know how to change the Chinese text for the field text box titles?
    And also the text for the ‘Submit’ button

    3. For the Multilingual text, how does this work to change the text from English to Simplified Chinese and Traditional Chinese? I’m trying to change some text for the traditional chinese.

    Thanks
    Sophie

    in reply to: Cleo mobile menu #95540
     prohealth
    Participant

    Hi Radu

    Another question please, is it possible to change the language option for the footer widget area?

    Thanks
    Sophie

    in reply to: Cleo mobile menu #95533
     prohealth
    Participant

    Hi Radu

    Thanks for this, yes now the mobile menu is sticky, but how to make the menu background white and black font just like the desktop version please?

    Thanks
    Sophie

    in reply to: Mobile Menu #95071
     prohealth
    Participant

    I understand but what I mean is, as the developers of this theme, why isn’t there a simple code to resolve this issue. I think a sticky mobile menu is something most common for all responsive themes

    I have tried the code link you found and it doesn’t work.

    in reply to: Mobile Menu #95054
     prohealth
    Participant

    please can you tell me also how to “get rid” of the shopping cart in mobile menu?
    shopping cart is not showing in desktop view

    in reply to: Mobile Menu #95052
     prohealth
    Participant

    hi there thanks

    the menu is now showing the text in white over black background for the mobile menu but the menu is not sticky, any other ideas?

Viewing 36 posts - 1 through 36 (of 36 total)

Log in with your credentials

Forgot your details?