Lifestyle Theme - by melania - on WordPress WooCommerce support

This topic has 39 replies, 3 voices, and was last updated 5 years, 10 months ago ago by Rose Tyler

  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 28, 2018 at 15:43

    Hello, @temppelinemanta

    Tiinas excerpt is still in english.

    – please clear cache and check now.

    I also would like to have this text off http://prntscr.com/ikhnoi (modern blog plugin) on my front page..

    – use this code http://prntscr.com/ikxpkb

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    February 28, 2018 at 16:01

    Thank You, Thank You, Thank You! <3

    – Anette –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    February 28, 2018 at 16:09

    Dear @temppelinemanta,

    You’re welcome!

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    March 1, 2018 at 10:02

    Hello again!

    I´m so sorry, I´m pedantic.

    At my hover box (mobile view) Andreis excerpt is now on different color (shade) than the others.`Can You fix it?

    – Anette –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 1, 2018 at 11:58

    Hello, @temppelinemanta

    Please clear cache and check now.

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    March 2, 2018 at 11:52

    Hi,

    Thank you, but noe I noticed taht in Tiina´s excerpt the cursiva typo is missing at the end of the text. http://prntscr.com/ilso1f

    – Anette –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 2, 2018 at 11:59

    Hello, @temppelinemanta

    Done.

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    March 2, 2018 at 12:11

    Thanks 🙂

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    March 2, 2018 at 12:36

    One problem more…
    at some of my posts I have created an image gallery. When I tap one picture of the gallery, it opens only one picture. I´d like it to show hole gallery as slider..? And is it possible to hide pictures *name*, because I haven´t named them “nicely”.. 😀

    http://prntscr.com/ilt99e

    – Anette –

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    March 2, 2018 at 12:55

    Do I need this plugin, whit Your theme lifestyle: Ultimate Addons for Visual Composer?

    I can´t update it, and I thought I´ll remove it, if it is not nessesary to keep..

    – Anette –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    March 2, 2018 at 13:18

    Hello, @temppelinemanta

    1. Please create a new topic and provide link to post with the gallery.
    2. Ultimate Addons for Visual Composer is a required plugin, you can delete it but some features will be unavailable after that. Here you can find latest plugins versions – https://www.8theme.com/download-plugins/ (to update plugin, simply connect to your server using FTP. Copy extracted plugins folders into wp-content/plugins/).

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    June 19, 2018 at 14:56

    Hello!

    How can I add an web shop to my site? Love this Lifestyle theme, and I´d like to keep it. I only need help to create an webshop. I can not make any codes, so I need halp or guide from the beginning. 😀

    – Anette –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 19, 2018 at 15:09

    Hello @temppelinemanta,

    You can install WC plugin – https://wordpress.org/plugins/woocommerce/
    and follow the plugin documentation https://docs.woocommerce.com/

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    June 19, 2018 at 16:59

    Hi,

    Thank You. I did that, but now the searh button does not appear, and on the mobile version there is icon for searc twice, but they are not working…

    site:
    http://prntscr.com/jwsrwa

    mobile:
    http://prntscr.com/jwss7y

    help wanted again! 😀

    – Anete –

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 20, 2018 at 13:19

    Hello @temppelinemanta,

    Please check content of top bar widget area or provide wp-admin access.

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    June 26, 2018 at 11:35

    Hi,

    I´ll be happy to have Your help. Please, if You can fix problems on mobileversion too.

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 26, 2018 at 13:08

    Hello @temppelinemanta,

    Lifestyle is theme for blog, to make it works with WC correctly some addition customization should be done. Add this code in functions.php of child theme:

    function etheme_search_form() {
            $search_view = etheme_get_option('search_view');
            $header = etheme_get_header_type();
            if( etheme_get_header_structure( $header ) == 4 || $header == 17 ) {
                $search_view = 'modal';
            }
    
            ?>
                <div class="header-search">
                    <?php if($search_view == 'dropdown'): ?>
                        <div class="et-search-trigger search-with-form">
                            <a class="popup-with-form"><i class="fa fa-search"></i> <span><?php esc_html_e('Search', 'lifestyle'); ?></span></a>
                            <?php
                                // if(!class_exists('WooCommerce')) {
                                    get_search_form();
                                // } else {
                                //     get_template_part('woosearchform');
                                // }
                            ?>
                        </div>
                    <?php else : ?>
                        <div class="et-search-trigger search-dropdown">
                            <a class="popup-with-form" href="#searchModal"><i class="fa fa-search"></i></a>
                            <?php
                                // if(!class_exists('WooCommerce')) {
                                    get_search_form();
                                // } else {
                                //     get_template_part('woosearchform');
                                // }
                            ?>
                        </div>
                    <?php endif; ?>
                </div>
            <?php
        }
    
        function etheme_search_form_modal() {
            ?>
                <div id="searchModal" class="mfp-hide modal-type-1 zoom-anim-dialog" role="search">
                    <div class="modal-dialog text-center">
                        <h3><?php esc_html_e('Search engine', 'lifestyle'); ?></h3>
                        <small class="mini-text"><?php esc_html_e('Use this form to find things you need', 'lifestyle'); ?></small>
    
                        <?php
                            // if(!class_exists('WooCommerce')) {
                                get_search_form();
                            // } else {
                            //     get_template_part('woosearchform');
                            // }
                        ?>
    
                    </div>
                </div>
            <?php
        }

    Regards

    Avatar: temppelinemanta
    temppelinemanta
    Participant
    June 26, 2018 at 14:11

    Hi,

    Thank You, I´ll do that, but first I´ll have to be sure…which one of these: http://prntscr.com/jzjpz8

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 26, 2018 at 14:26

    Hello @temppelinemanta,

    Please follow our documentation to install and activate child theme on site https://www.8theme.com/demo/docs/lifestyle/#child_theme then open the function.php file of child theme via FTP and add code from my previous reply.

    Regards

  • 1 2
    Viewing 39 results - 21 through 39 (of 39 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.