Forum Replies Created

Viewing 30 posts - 54,871 through 54,900 (of 68,227 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 10:00

    Hello,

    By default, there is no option to change the search to the icon, this request additional customization. Copy standard.php file from xstore/headers to child-theme/headers folder and change this https://prnt.sc/jpdk29 to https://prnt.sc/jpdk29 (this code should be deleted https://prnt.sc/jpdjw9)
    + add this code in Theme Options > Styling > Custom css > Custom css for desktop:

    .navbar-header .header-search {
        order: -1;
    }
    .navbar-header {
        display:  flex;
    }
    .navbar-header.show-in-header > * {
        padding: 0 1em 0 0;
    }
    .navbar-header.show-in-header > *:last-child {
        padding-right:  0;
    }
    

    To align your text to center, you need to change this code (Header custom HTML):

    <div class="row">
    <div class="col-md-6">
    <p style="font-size: 17px; color: #232f3e;"><i class="fa fa-phone" style="font-size: 19px; margin-right: 10px;"></i>Kontaktna številka <span style="color: #232f3e; font-weight: bold;">051 385 324</span></p>
    </div>
    </div>

    to:

    <div class="row custom-contact-information">
    <p style="font-size: 17px; color: #232f3e; text-align: center"><i class="fa fa-phone" style="font-size: 19px; margin-right: 10px;"></i>Kontaktna številka <span class="contact-number" style="color: #232f3e; font-weight: bold;">051 385 324</span></p>
    </div>
    

    and delete previouse custom css code http://prntscr.com/jpf0xb then let me know I will give you a new one.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 09:04

    Yes, you need to use custom css code to hide the input.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 09:01

    I will create a report for this request and forward this to our developers for a review. I can’t say whether this will be added in the future, but I will be sure to bring it to our developers attention for you. Let us know if you need anything further.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:51

    Your settings won’t be lost after changing the active theme on site, but you can export theme options to file via Theme Options > Import/Export > Import or Export your theme configuration. Some widgets may change positions, so I would recommend you check where every widget is placed in Appearance > Widgets or you may open widgets in a new browser tab, before the parent theme activation, to be able to compare widgets position after changing the active theme to child theme back.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:43
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:40

    Please go to framework/theme-functions.php > find function – etheme_top_links and rewrite it via your-child-theme/functions.php file http://prntscr.com/jpdzda

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:38

    Hello,

    Unfortunately, there is no the dark version, so you need to make changes for the content styling via Theme Options.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:32

    Hello,

    Theme Options > Contact form > Privacy policy for contact form.
    If you use a form from Contact Form 7 plugin, please read this documentation https://contactform7.com/checkboxes-radio-buttons-and-menus/

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:26

    Hello,

    Thanks for the reply.
    Do you use cache plugin? Please try to clear cache and check one more time if the code works from the Global Custom css.
    Also, try to add the code in Additional CSS area – http://prntscr.com/jpdv19 via Customizer.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:20

    Hello @redstorms,

    Please try to activate theme now.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:18

    Dear @kevinkjr,

    You need to change the code in the file of the parent theme. We will add this fix in next theme update.
    Please try one more time https://prnt.sc/jpdrql , this code should work fine:

    function unicode_chars($source, $iconv_to = 'UTF-8') {
        $decodedStr = '';
        $pos = 0;
        $len = strlen ($source);
        while ($pos < $len) {
            $charAt = substr ($source, $pos, 1);
            // if ($charAt == '%') {
            //     $pos++;
            //     $charAt = substr ($source, $pos, 1);
            //     if ($charAt == 'u') {
            //         // we got a unicode character
            //         $pos++;
            //         $unicodeHexVal = substr ($source, $pos, 4);
            //         $unicode = hexdec ($unicodeHexVal);
            //         $decodedStr .= code2utf($unicode);
            //         $pos += 4;
            //     }
            //     else {
            //         // we have an escaped ascii character
            //         $hexVal = substr ($source, $pos, 2);
            //         $decodedStr .= chr (hexdec ($hexVal));
            //         $pos += 2;
            //     }
            // }
            // else {
                $decodedStr .= $charAt;
                $pos++;
            // }
        }
    
        if ($iconv_to != "UTF-8") {
            $decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
        }
        
        return $decodedStr;
    }
    

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:07

    Hello,

    Please try to activate theme now.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:05

    Hello,

    Sorry for the delay. Could you, please, describe your question in more details?
    Thanks in advance.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 08:04

    Hello,

    Please read our documentation – https://www.8theme.com/documentation/xstore/menu-set-up/
    Demo content import does not include the secondary menu. But we can create it for you.
    Can you, please, provide me temporary Dashboard access to your site and I’ll help you with this.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    June 1, 2018 at 07:59

    Hello,

    You can use this code to show the top bar on mobile:

    @media only screen and (max-width: 1030px){
    .top-bar {
        display: block;
    }
    .top-bar .languages-area {
        display: block;
        max-width: 100%;
        text-align: center;
        width: 100%;
        float: none;
    }
    .top-bar .top-links .topbar-widget {
        display: inline-block;
    }
    .top-bar .top-links {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .top-links ul {
    
        float: none;
    }
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:58

    You need to connect site via FTP, open theme-functions.php file and change

    function unicode_chars($source, $iconv_to = 'UTF-8') {
        $decodedStr = '';
        $pos = 0;
        $len = strlen ($source);
        while ($pos < $len) {
            $charAt = substr ($source, $pos, 1);
            if ($charAt == '%') {
                $pos++;
                $charAt = substr ($source, $pos, 1);
                if ($charAt == 'u') {
                    // we got a unicode character
                    $pos++;
                    $unicodeHexVal = substr ($source, $pos, 4);
                    $unicode = hexdec ($unicodeHexVal);
                    $decodedStr .= code2utf($unicode);
                    $pos += 4;
                }
                else {
                    // we have an escaped ascii character
                    $hexVal = substr ($source, $pos, 2);
                    $decodedStr .= chr (hexdec ($hexVal));
                    $pos += 2;
                }
            }
            else {
                $decodedStr .= $charAt;
                $pos++;
            }
        }
    
        if ($iconv_to != "UTF-8") {
            $decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
        }
        
        return $decodedStr;
    }

    to

    function unicode_chars($source, $iconv_to = 'UTF-8') {
        $decodedStr = '';
        $pos = 0;
        $len = strlen ($source);
        while ($pos < $len) {
            $charAt = substr ($source, $pos, 1);
            // if ($charAt == '%') {
            //     $pos++;
            //     $charAt = substr ($source, $pos, 1);
            //     if ($charAt == 'u') {
            //         // we got a unicode character
            //         $pos++;
            //         $unicodeHexVal = substr ($source, $pos, 4);
            //         $unicode = hexdec ($unicodeHexVal);
            //         $decodedStr .= code2utf($unicode);
            //         $pos += 4;
            //     }
            //     else {
            //         // we have an escaped ascii character
            //         $hexVal = substr ($source, $pos, 2);
            //         $decodedStr .= chr (hexdec ($hexVal));
            //         $pos += 2;
            //     }
            // }
            // else {
                $decodedStr .= $charAt;
                $pos++;
            // }
        }
    
        if ($iconv_to != "UTF-8") {
            $decodedStr = iconv("UTF-8", $iconv_to, $decodedStr);
        }
        
        return $decodedStr;
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:52

    Hello,

    This can be disabled via custom css code only.
    Feel free to ask if you have any other questions.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:46

    Please open theme-functions.php file (xstore/framework) > find unicode_chars function > and change this https://prnt.sc/jp2qz3 to https://prnt.sc/jp2r8i

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:41

    Please try to use this code:

    @media (min-width: 1200px) {
    body.home .content-page {
        width: 1270px;
    }
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:35

    Hello,

    Please provide us with FTP access.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:22
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 15:20

    Hello,

    1. I do not see the problem. Here is screenshot – http://prntscr.com/jp269f Please clear cache and check one more time. Also, try to check the site from another computer.
    2. http://prntscr.com/jp2785
    3, 4, 5, 7. Please provide me screenshots, because the page looks same in Chrome and Safari for me https://gyazo.com/e40446d57a3f1eead9a7f118addf3d0a https://gyazo.com/0f9897451d1d3b8e4a210ef28902f240
    6. Could you provide a screenshot?
    8. Chrome browser – http://prntscr.com/jp2bui
    We do not recommend to use old theme version.
    Feel free to ask if you have any other questions, I am here to help you.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 14:45

    You’re welcome!
    Feel free to ask if you have any other questions.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 14:44

    Hello,

    2. Please provide a screenshot for better understanding the desired result.
    3. You’re welcome! I do not see the problem. What screen size should I check?

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 14:17

    Please add this code also:

    .header .navbar-toggle .icon-bar {
        background-color: #1e1e1e;
    }
    

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 13:56

    Hello,

    Please add this code in Theme Options > Styling > Custom css > Global custom css:

    .header .shopping-container .cart-bag:before {
        color: #1e1e1e !important;
    }

    Then clear cache and check. Let me know the result.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 13:45

    Hello, @oooo

    Please try to activate theme now.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 13:44

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 13:44

    Hello,

    Please explain in details the desired result, we will try to help you.
    Some widgets could be messed up after the update, you can put them to correct areas in Appearance > Widgets.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 31, 2018 at 13:36

    Hello,

    You may check your sites via GTMetrix service and follow the recommendations to speed up sites. Here are our main recommendations – https://www.8theme.com/reply/169282/
    Also, read these articles – http://www.laplacef.com/2014/05/24/how-to-defer-parsing-javascript-in-wordpress/ https://varvy.com/pagespeed/leverage-browser-caching.html
    https://diywpblog.com/wordpress-optimization-remove-query-strings-from-static-resources/
    You need contact your hosting provider support to enable Keep-Alive.

    Regards

  • 1 2 3 1,829 1,830 1,831 2,273 2,274 2,275
    Viewing 54,900 results - 54,871 through 54,900 (of 68,227 total)
Viewing 30 posts - 54,871 through 54,900 (of 68,227 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.