This topic has 169 replies, 3 voices, and was last updated 8 years by Radu.

  • Author
  • #108295
     Thalia
    Participant

    This is the code for the template

    <?php echo do_shortcode(‘[google-translator]’); ?>

    #108301
     Andrei
    Moderator

    The scrolling issue comes from a plugin called “shutter-reloaded” because it’s messing with stylings that it isn’t supposed to.

    Unfortunately there’s no way to add that language translator widget as a menu, at least without some custom developments.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #108302
     Thalia
    Participant

    Please no… I need this translation plugin… there is no plugin calls “shutter”

    #108303
     Thalia
    Participant

    shotter is some adjusting in the nextcellent galery

    #108307
     Thalia
    Participant

    good news I closed the shutter effect in the nextcellent galery, now we can scroll. But please I need the plugin in the main menu. And also in the line where it is. But it looks not nice because it’s not among one another.

    #108308
     Thalia
    Participant

    It looks normally like that http://www.lovestorm-people.com/

    #108312
     Andrei
    Moderator

    I will ask my colleague @Radu to give a look when he has some spare time if he can provide you a code to quickly add that translation widget in the menu.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #108315
     Thalia
    Participant

    Ok. Thank you Andrei

    #108442
     Thalia
    Participant

    Another question. I want my logo instead of “Kleo” on the front site http://new.lovestorm-people.com/ Where can I change it please?

    #108443
     Thalia
    Participant

    And on the same entrance page I need in the Menu or somewhere else the translation plugin we talked before <3

    #108580
     Radu
    Moderator

    Hi Thalia,

    the logo can be changed from wp-admin -> theme options -> general settings -> logo.

    If the logo doesn’t change it’s possible that your homepage to have a custom logo assigned, you can check by going to wp-admin -> pages -> look for your homepage -> open the page scroll down -> Theme General settings -> Custom logo.

    Regarding the translator, please use this plugin https://wordpress.org/plugins/gtranslate/

    And in plugin settings page use this settings ( see attached screenshot )

    And in wp-content/themes/kleo-child/functions.php add this code

    COPY CODE
    
    
    if(!function_exists('kleo_add_lang_menu_item'))
    {
    
        function kleo_add_lang_menu_item ( $items, $args )
        {
    
    
            if ($args->theme_location == 'primary')
            {
               $items .= do_shortcode('[GTranslate]');
            }
            return $items;
        }
    }
    add_filter( 'wp_nav_menu_items', 'kleo_add_lang_menu_item', 200, 2 );
    
    

    The lang switcher will appear in menu

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    #108654
     Thalia
    Participant

    Hello Radu, thank you very much for the information. The Logo is working with the second advise from you. I need to ask again for the translation plugin. I understand how to do it. But I need the flags and also the dropdown, cause I need all languages. When I use only the flags I got only 6 languages. Please can we make it possible to add the flags and the dropdown? Like here http://www.lovestorm-people.com/

    #108665
     Thalia
    Participant

    Hello Radu, I found a solution to add the translation plugin in the menu like that: http://www.new.lovestorm-people.com

    The only thing is now the dropdown menu of the translator is transparent on the frontpage and its not visible enough. I don’t know where I can change it to a white background. Please can you tell me where I change the transparent background to white. I send you the php script of the plugin. Maybe it’s a changing there

    #108671
     Thalia
    Participant

    And please, it’s possible to make the wide of the dropdown box smaller? Because it depense on the language sometimes the dropdown box jumps into the second line. I’m realy glad when we could fix this <3

    #108911
     Thalia
    Participant

    Hello, somebody there?

    Hello Radu, I found a solution to add the translation plugin in the menu like that: http://www.new.lovestorm-people.com

    The only thing is now the dropdown menu of the translator is transparent on the frontpage and its not visible enough. I don’t know where I can change it to a white background. Please can you tell me where I change the transparent background to white. And please, it’s possible to make the wide of the dropdown box smaller? Because it depense on the language sometimes the dropdown box jumps into the second line. I’m realy glad when we could fix this <3

    #108993
     Radu
    Moderator

    Hi Thalia,

    Do you have deactivated the plugin ? because i see that the shortcode is not runinng

    Let me know

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #108999
     Thalia
    Participant

    Hey Radu, it’s on now.

    #109000
     Thalia
    Participant

    I switched it of cause the menu on the mobile is not working with that. It’s crashing the mobile menu. Maybe there is a solution that it works in the menu on the mobile.

    #109075
     Thalia
    Participant

    Info! I fixed the colour in the dropdown. But in the mobile menu there is still the problem that it crashed.

    #109219
     Radu
    Moderator

    Hi Thalia,

    Yesterday i’ve replied here an solution but i see that the reply is not there, strange.

    Please replace the function that i have provided to you in reply #108580 with this

    COPY CODE
    
    
    if(!function_exists('kleo_add_lang_menu_item'))
    {
    
        function kleo_add_lang_menu_item ( $items, $args )
        {
    
    
            if ($args->theme_location == 'primary')
            {
               $items .= '<span class="gtranslatespan">';
               $items .= do_shortcode('[GTranslate]');
               $items .= '</span>';
            }
            return $items;
        }
    }
    add_filter( 'wp_nav_menu_items', 'kleo_add_lang_menu_item', 200, 2 );
    
    
    

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    span.gtranslatespan {
        display: inline-block;
        text-align:center;
        padding: 0 !important;
        margin: 0 !important;  
    }
    span.gtranslatespan select {padding:0px 5px !important;margin:0px 5px;height:20px;color:#fff !important;background-color:#111;} 
    

    In this way the flags will be grouped with the flags dropdown under flags.

    Regarding the menu, this is caused by download manager plugin that it loads bootstrap js library our our library, look in download manager plugin for a option that stop loading bootstrap, if this option not exists you can contact the plugin author to ask for this option,or you can disable it until you solve with the plugin.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #109297
     Thalia
    Participant

    Thank you very much Radu for help me. I’ve done that. I only change the colours, cause it was black on the website …But I think it’s maybe not the best. Radu is there maybe another solution to translate the theme like that?

    Another question. I want to bring the heart and the tree counters on the main page higher. I use the site “Pinterst Home”. I tryed a lot but I don’t find how I could fix it. How can I bring it higher?

    #109450
     Radu
    Moderator

    Hi Thalia,

    Radu is there maybe another solution to translate the theme like that?

    The kleo theme is already integrated with wpml, wpml is a premium plugin that allows you to have website for each language that you select, it will require to translate manually each page of site to each language that you have.

    I tried a lot but I don’t find how I could fix it. How can I bring it higher?

    Maybe you have checked the backend of the home pinterest style and you hasen’t see that’s because the font color is white. See this video you will figure out https://drive.google.com/file/d/0Bxo5b6iHWRMwV2RDanVzelVpZ00/view

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #109580
     Thalia
    Participant

    Thank you. Where can I find the integrated WPML?

    #109587
     Radu
    Moderator

    WPML is an premium plugin https://wpml.org/

    And the Kleo is ready for the WPML

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #109594
     Thalia
    Participant

    Maybe you have checked the backend of the home pinterest style and you hasen’t see that’s because the font color is white. See this video you will figure out https://drive.google.com/file/d/0Bxo5b6iHWRMwV2RDanVzelVpZ00/view

    It don’t help me. I want to bring the heart and the tree counters on the main page higher. http://new.lovestorm-people.com/

    #109762
     Radu
    Moderator

    Just do like in the video replace heading from h2 to h1 or apply a larger font size then the fonts will be larger.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #109938
     Thalia
    Participant

    Hello Radu, maybe it’s a missunderstandig cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite new.lovestorm-people.com more up. I want to shift it further upwards to the top.

    And please where can I switch of/or hide the informations in all posts about athor, date and categorie?

    Thank you very much for helping me.

    #109951
     Thalia
    Participant

    Hello Radu, if I’ve a new question or something else, I’ll copy now open questions/ issues from before in the last comment. Maybe it’s easier for you to see everything what’s open in only one comment. So everything before you can ignore. Everything is in the last comment.

    http://new.lovestorm-people.com

    ——————————
    Hello Radu, maybe it’s a missunderstandig cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.
    ——————————-
    Please where can I switch of/or hide the informations in all posts about author, date and categorie?
    ——————————-
    I’m checking the site in firefox and IE. In IE everything is looking well and works fine but in firefox the sliders on the main site are “jumping” http://new.lovestorm-people.com/ueber-uns/. And also the particles and the moving in of the post elements are in firefow to slowly.
    ——————————-
    Before one week I changed all favicons in the theme, in firefox it’s well but in IE it still shows me the old favicon from your company.

    Thank you very much for helping me.

    #109963
     Thalia
    Participant

    Hello Radu, if I’ve a new question or something else, I’ll copy now open questions/ issues from before in the last comment. Maybe it’s easier for you to see everything what’s open in only one comment. So everything before you can ignore. Everything is in the last comment.

    http://new.lovestorm-people.com

    ——————————
    Hello Radu, maybe it’s a missunderstandig cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.
    ——————————-
    Please where can I switch of/or hide the informations in all posts about author, date and categorie?
    ——————————-
    I’m checking the site in firefox and IE. In IE everything is looking well and works fine but in firefox the sliders on the main site are “jumping” http://new.lovestorm-people.com/ueber-uns/. And also the particles and the moving in of the post elements are in firefow to slowly.
    ——————————-
    Before one week I changed all favicons in the theme, in firefox it’s well but in IE it still shows me the old favicon from your company.
    ————-
    How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    Thank you very much for helping me.

    #110184
     Thalia
    Participant

    Hello Radu, if I’ve a new question or something else, I’ll copy now open questions/ issues from before in the last comment. Maybe it’s easier for you to see everything what’s open in only one comment. So everything before you can ignore. Everything is in the last comment.

    http://new.lovestorm-people.com

    ——————————
    Hello Radu, maybe it’s a missunderstandig cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.
    ——————————-
    Please where can I switch of/or hide the informations in all posts about author, date and categorie?
    ——————————
    Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply”?
    ———–
    Before one week I changed all favicons in the theme, in firefox it’s well but in IE it still shows me the old favicon from your company.
    ————-
    How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    Thank you very much for helping me.

    #110233
     Thalia
    Participant

    Hello Radu, if I’ve a new question or something else, I’ll copy now open questions/ issues from before in the last comment. Maybe it’s easier for you to see everything what’s open in only one comment. So everything before you can ignore. Everything is in the last comment.

    http://new.lovestorm-people.com

    ——————————
    Hello Radu, maybe it’s a missunderstandig cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.
    ——————————-
    Please where can I switch of/or hide the informations in all posts about author, date and categorie?
    ——————————
    Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply” and the “Archive for category:” ?
    ———–
    How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    Thank you very much for helping me.

    #110448
     Radu
    Moderator

    Hi Thalia,

    Q: Hello Radu, maybe it’s a misunderstanding cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.

    R: You should to go in wp-admin -> pages -> search for your home page -> edit -> then you will see visual composer, just drag the row that contain the counters and the heart on top, let me know if you cannot handle with this and provide admin credentials.

    Q: Please where can I switch of/or hide the informations in all posts about author, date and categorie?

    R: We have an option in theme to disable all autor meta from wp-admin -> theme options -> blog -> Display post meta in Single post page* – NO

    Q: Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply”?

    R: You can do that by using loco translate plugin https://wordpress.org/plugins/loco-translate/

    You will need to go to the plugin dashboard and in kleo section add new language, choose your language, and if you are asked where you want to save the language files choose global language directory ( wp-content/languages/ ) then search for that string and translate it.

    Q: Before one week I changed all favicons in the theme, in firefox it’s well but in IE it still shows me the old favicon from your company.

    R: This because it remains in bowser cache, search on google how to clear cache for Internet Explorer.

    Q: How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    R: Go to wp-admin -> revolution slider -> chooser your home slider, and click edit, then look there for link..

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #110670
     Thalia
    Participant

    Q: Hello Radu, maybe it’s a misunderstanding cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.

    R: You should to go in wp-admin -> pages -> search for your home page -> edit -> then you will see visual composer, just drag the row that contain the counters and the heart on top, let me know if you cannot handle with this and provide admin credentials.

    Q: Sorry, it’s not working. Please could you help me? I gave you a account User: Radu Pw: uAwnDHtifBXY^YxukuM&u8(M
    ————————————————————-
    Q: Please where can I switch of/or hide the informations in all posts about author, date and categorie?

    R: We have an option in theme to disable all autor meta from wp-admin -> theme options -> blog -> Display post meta in Single post page* – NO

    Q: I’ve done this. It’s working in the post but not on the mainsite in the “moving” posts. There it’s still showed.
    ——————————————————————————
    Q: Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply”?

    R: You can do that by using loco translate plugin https://wordpress.org/plugins/loco-translate/

    Q: Missunderstanding: I dont want to translate inside the theme or WordPress.The whole website is showed in german to the user but some parts are still in english. On the main site for example “Read more” in the moving posts and the complete form in all posts “Leave a reply” is in english.
    ————————————————————————
    Q: How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    R: Go to wp-admin -> revolution slider -> chooser your home slider, and click edit, then look there for link..

    Q: Missunderstanding:It’s not a Revolution Slider. I marked a post as a “gallery” and you can add pictures and show them like a “slider”. example: http://new.lovestorm-people.com/ueber-uns/ On the mainsite when you click on the pictures of this “sliders” you need to come to the post not to the picture.
    ———————————————————-
    NEW
    Q: In the IExplorer is the site in another type of font. How can I change this?

    Thanks for help

    #111209
     Thalia
    Participant

    Hello….somebody there? 🙂

    #111459
     Thalia
    Participant

    Please, can we fix the things I’ve wrote before. Thank you for replying

    #111479
     Thalia
    Participant

    Q: Hello Radu, maybe it’s a misunderstanding cause my english is not so good. I don’t want to bring the size of the text higher. I want to bring the heart+text+the 3 counters on the mainsite http://new.lovestorm-people.com more up. I want to shift it further upwards to the top.

    R: You should to go in wp-admin -> pages -> search for your home page -> edit -> then you will see visual composer, just drag the row that contain the counters and the heart on top, let me know if you cannot handle with this and provide admin credentials.

    Q: Sorry, it’s not working. Please could you help me? I gave you a account User: Radu Pw: uAwnDHtifBXY^YxukuM&u8(M
    ————————————————————-
    Q: Please where can I switch of/or hide the informations in all posts about author, date and categorie?

    R: We have an option in theme to disable all autor meta from wp-admin -> theme options -> blog -> Display post meta in Single post page* – NO

    Q: I’ve done this. It’s working in the post but not on the mainsite in the “moving” posts. There it’s still showed.
    ——————————————————————————
    Q: Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply”?

    R: You can do that by using loco translate plugin https://wordpress.org/plugins/loco-translate/

    Q: Missunderstanding: I dont want to translate inside the theme or WordPress.The whole website is showed in german to the user but some parts are still in english. On the main site for example “Read more” in the moving posts and the complete form in all posts “Leave a reply” is in english.
    ————————————————————————
    Q: How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    R: Go to wp-admin -> revolution slider -> chooser your home slider, and click edit, then look there for link..

    Q: Missunderstanding:It’s not a Revolution Slider. I marked a post as a “gallery” and you can add pictures and show them like a “slider”. example: http://new.lovestorm-people.com/ueber-uns/ On the mainsite when you click on the pictures of this “sliders” you need to come to the post not to the picture.
    ———————————————————-
    NEW
    Q: In the IExplorer is the site in another type of font. How can I change this?
    ———————-
    Since the Kleo update 4.0 I can’t activate the Revolution Slider with the purchase code. What can I do now?

    Thanks for help

    #111975
     Radu
    Moderator

    Hi

    1,2 done.

    3. I see that you use an plugin for comments,check in Super Socializer settings if you have something related to that.

    4. The gallery format it will require to go into media tab under the post text area
    Media -> Show media on post page -> ON, Slider -> Upload image, Press add image for more images.

    Q: In the IExplorer is the site in another type of font. How can I change this?

    What IE version ?

    Regarding the Revolution slider updates, revolution slider is free in our theme, you don’t need any licence key but if you have already one and you want to add the key in revolution slider go here : http://new.lovestorm-people.com/wp-admin/admin.php?page=revslider -> Register Slider Revolution

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #111984
     Thalia
    Participant

    God thanks…you’re back…you don’t forget me…Thanks ❤

    Thank you for 1 and 2!

    It’s IE 11

    #112140
     Thalia
    Participant

    Radu, PLEASE I want to publish the website…. Nothing is realy working well. It’s now over 4 weeks ago I start to build it. Now the new update makes new trouble. 5 days I heared nothing from the support. On the mobile the site is chrashing. When I write something here I need to wait for days, for hoping your answer will help me, if not….I need to wait, and wait…that’s not nice from the company. This is the best theme 2015? Okay, but why is the support so slowly… I spend now so many hours Radu…and I can’t finish the site…I’m not a WP beginner but also not a proffessional computer specialist. Of course!…when I was a Specialist I build up my own theme and don’t buy once …. I’m a “NORMAL” costumer with “normal” wp expierence but I can’t handle the theme kleo…I’m realy sad.

    It’s IE 11
    ————————
    Q: Where can I change the language to german for the “Read more” link in the posts on the main site and in the Comment form “Leave a reply”?

    R: 3. I see that you use an plugin for comments,check in Super Socializer settings if you have something related to that.

    Q: NO it’s not the plugin. I switched of the plugin and the Comment form is still there. I also emptied the Cache, it’s still there http://new.lovestorm-people.com/ueber-uns/

    Also, here the “Archive for category:” is in english http://new.lovestorm-people.com/category/allgemein/

    Please, I want to change the language from “Read more”, “Archive for category:”, Comment form “Leave a reply” into german.
    —————————-
    Q: How can I change the hyperlink on the picture in the sliders? Cause when you click on a slider(picture) on the main site and in the post the link goes only to the image and not to the post. I want that the link goes to the post where the slider is inside.

    R: Go to wp-admin -> revolution slider -> chooser your home slider, and click edit, then look there for link..

    Q: Missunderstanding:It’s not a Revolution Slider. I marked a post as a “gallery” and you can add pictures and show them like a “slider”. example: http://new.lovestorm-people.com/ueber-uns/ On the mainsite when you click on the pictures of this “sliders” you need to come to the post not to the picture.

    R: The gallery format it will require to go into media tab under the post text area
    Media -> Show media on post page -> ON, Slider -> Upload image, Press add image for more images.

    Q: WHY, you dont understand my problem…? You’re answer is helping me zero…I did this before, but when you click on a slider on the mainsite it goes to the pic not to the post. This was my question.

    When you click on the pictures of this “sliders” on the main site you need to come to the POST! not to the picture.

    And next problem…Since the update this Sliders in the Post we are talking about ( when you mark the post with “gallery” and add pics under Media Tab, Slider it was showed like a slider on the main site and in the post. But since the update you can’t see any slider. Before the update it was working.

    —————————–
    Q: Since the update the translation plugin GTranslate that we fixed together is not working well. Normally you choose a language and than the whole site is showed in this language. Since the update. It’s sometimes working sometimes not when you choose a language. Also when you choose a l. and you change the site than the next site it showes again in german and there you can’t switch on the translation again.

    ——————————
    Q: The main site is on mobile devices not working well (Iphone/Pad) The “moving” posts are not showed fast enough. They are to slow. I checked also with faster internet. So you open the site and when you scroll like a normal user you only see white.

    Thanks for help.

    I’m sorry for the complain but I don’t know how long it will take until I could finally publish the site….please understand.

    #112237
     Radu
    Moderator

    Hi,

    First question : On my install it works the string are translated, the kleo language files where are located ? /wp-content/themes/kleo/languages/ or ? /kleo/wp-content/languages/ ?
    If the language files are here : kleo/wp-content/languages/ try to move the language files .mo and .po to /wp-content/themes/kleo/languages. if still not works ( provide credentials to take a look at this issue )

    Second Question : This is how it works the gallery format. If you want to go to the post click the title.
    Check in theme options if the option is set to be ON ( Wp-admin -> Theme Options -> Blog -> Display media on post page* – ON )

    Third question : I’ve helped you to implement that plugin but i cannot offer you continuous support for your custom needs including the third party plugin customizations.

    Fourth Question : Please provide a screenshot, i clearly don’t understand what element are you referring.

    You also have serious problems in some of your pages like these : http://new.lovestorm-people.com/category/thoughts/ , http://new.lovestorm-people.com/category/allgemein/ the footer is missing

    Cheers

    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 - 81 through 120 (of 170 total)

The topic ‘Scrolling’ is closed to new replies.

Log in with your credentials

Forgot your details?