Forum Replies Created

Viewing 30 posts - 22,501 through 22,530 (of 30,391 total)
  • Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 17:03

    Hello,

    Go to Theme Options > Typography > Menu > Menu 2 level (mega menu column titles) & Menu 3 level and dropdowns.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 17:01

    Hello,

    What style do you prefer for the footer widgets: with the sideline or with the bottom line?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:58

    Hello,

    This is the default margin for the page content to footer. If you want to remove it for this page only then add the code below to page custom CSS. In case you want to remove it for the whole site add the code to child theme style.css

    .page-content {
        margin-bottom: 0;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:56

    Hello,

    Clear the site cache and check again.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:51

    Hello,

    Did you use FTP method to install theme? Looks that you did not copy all the necessary theme files. Provide us with the Dashboard and FTP access to check and fix the issue.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:49

    Hello,

    Add the following code to child theme style.css

    .nav-sublist-dropdown:before {
        content: '';
        height: 35px;
        top: -30px;
        width: 100%;
        display: block;
        position: absolute;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:39

    Hello,

    This is default sidebar content if you just want to make it clear then add the empty text widget to Main Sidebar. If you don’t need sidebar at all then disable it either in the page settings just for this page or for the all pages in the Theme Options > Blog > Sidebar position.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:37

    You are welcome!

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:37

    Hello,

    1) The max-width to show top bar is 1030px by default if you want to show even for mobile devices use the following custom styles:

    @media only screen and (max-width: 1030px){
    .top-bar, .top-bar .languages-area, .top-bar .top-links .topbar-widget, .top-bar .top-links ul li.popup_link {
       display: block;
    }
    }

    2) Don’t see problem with the 404 page http://prntscr.com/mdta1g I see the content you added in Theme Options http://prntscr.com/mdtat9 Is I missed something?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:24

    Hello,

    You created page http://prntscr.com/mdt12b and set it as the search results page + chose the custom menu for this page + custom sidebar. If you don’t use search by post, pages etc http://prntscr.com/mdt29j there is no need to create Search results page. I have deleted it.

    Check now.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 16:11

    Hello,

    You can implement this by some additional customization.
    Install and activate Legenda child theme if you did not do this before.
    Copy legenda/woocommerce/content-product.php and legenda/woocommerce/content-product-slide.php files into child theme. Edit files and add the code below before the product name http://prntscr.com/mdstcp

    <?php
    $terms = wp_get_post_terms( $post->ID, 'brand' );
    if ( ! is_array( $terms ) && ! is_object( $terms ) ) $terms = array();
    $count = count($terms);
    $i = 0;
    ?>
    <div class="product-brand">
    <?php foreach($terms as $brand) : ?>
    <?php $i++ ?>
    <a href="<?php echo get_term_link($brand); ?>"><?php echo $brand->name; ?></a>
    <?php if ($count>$i): ?>,<?php endif ?>
    <?php endforeach; ?>
    </div>

    Add the code below to child theme style.css

    .product-brand a {
         color: #6f6f6f;
         text-transform: uppercase;
         font-size: 12px;
    }
    .product-brand {
        margin: 0 10px 10px;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 11:59

    Hello,

    There is no such option, unfortunately. Probably it’s possible to implement by additional customization. You can submit customization request to Codeable team.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 11:57

    Hello,

    No, unfortunately. We have only that PSD.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 29, 2019 at 11:54

    Hello,

    We have added the following code to fix the issue
    .woocommerce-product-gallery__image {width: 100%;}
    We’ll add the fix to the next theme update.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 28, 2019 at 12:23

    Hello,

    Yes, you are using child theme. But there are 3 places where you can add the custom CSS if you use child theme:
    1) Child theme style.css
    2) Theme Options > Custom CSS
    3) Customizer > WordPress Custom CSS

    We suggest to use child theme style.css if child theme is enabled. Of course, if you prefer one of the other 2 ways you can also use them.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 28, 2019 at 11:07

    Hello,

    I have moved them to child theme style.css. If you use child theme it would better to keep custom styles in child theme style.css.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 28, 2019 at 09:59

    Hello,

    If you want to change the required fields you can try WooCommerce Checkout Manager plugin.
    To add the Trust Badge on the checkout page you can try WooCommerce hooks and actions, for example https://www.tychesoftwares.com/how-to-add-a-trust-seal-on-woocommerce-cart-checkout-page/

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 15:41

    You are welcome!

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 15:20

    Hello,

    WooPress has custom registration, so theme should be customized to work with the default plugin.
    I have reported about your problem to our developers and they told me that they will replace the default WooPress captcha by reCaptcha in next theme update. To implement this theme registration also should be improved. Give us some time (next week I suppose) to implement this and we’ll add the reCaptcha to Theme Options.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 14:06

    Hello,

    Ok, that’s great. Then I’ll be waiting for your reply about woocommerce files and CDN on Monday. Have a good weekend.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 12:05

    Hello,

    Add the following custom CSS to Theme Options > Styling > Custom CSS

    .post-single .post-heading.entry-header {
        text-align: center;
    }

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 10:06

    Hello,

    Yes, we know, take our apologies once more.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 25, 2019 at 10:05

    Hello,

    Ok, sure. Take into account that according to my working schedule I’ll be able to help you during today or from Monday. I’ll be out of the office on Sat-Sun this week.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 17:18

    P.S. I see that you are using CloudFlare. Either disable it or enable dev mode in your CDN account to disable caching and avoid problems because of cached files after the update.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 17:08

    Hello,

    Ok. We were able to login to your FTP.

    I have checked your child theme and see that you copied whole the woocommerce folder. Did you make changes in all the files in that folder?
    Please, check the files and leave only files that you really changed because after update to 5.0 you’ll have a lot of conflicts and we can’t check and compare every file of your child theme with the default one. Delete files that you did not change from the child theme and reply back to proceed with the update.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 16:24

    Hello,

    Seems you changed the password to your Dashboard and we can’t login to save options, so do it by yourself http://prntscr.com/mblvt5 and check if captcha works ok for you.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 16:24

    Hello,

    Seems you changed the password to your Dashboard and we can’t login to save options, so do it by yourself http://prntscr.com/mblvt5 and check if captcha works ok for you.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 16:08

    We added some code to WP custom CSS because we can’t see our changes because of the CDN on your site if we use Theme Options custom CSS area (file with the custom styles is cached, inline WP styles are not cached).
    We changed the code in Theme Options, check again. Could you also disable the CDN for the dev site?

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 15:32

    Hello,

    We got the only one email from Flywheel http://prntscr.com/mbl568 and link redirects us to the registration page http://prntscr.com/mbl5n4
    We don’t have account there and I don’t understand why don’t you can just provide me simple information:
    FTP host, FTP username, FTP password. We are theme support and we don’t need any registrations at the third-party sites to get the newsletters after that. Please, create the temporary account for our user and provide me FTP host, FTP username, FTP password in the private content area. That’s all.

    Waiting for your reply.

    Regards

    Avatar: Olga Barlow
    Olga Barlow
    Participant
    January 24, 2019 at 11:39

    Hello,

    We have improved the code on your site. Correct one is

    .content-product .product-content-image, .sidebar-widget .products-widget-slider a.product-list-image, .single-product .swipers-couple-wrapper .swiper-wrapper .woocommerce-main-image, .single-product .thumbnails-list .swiper-slide a {
         border: 1px solid #ff0000;
    }

    Clear CDN cache to apply changes.

    Regards

  • 1 2 3 750 751 752 1,012 1,013 1,014
    Viewing 22,530 results - 22,501 through 22,530 (of 30,391 total)
Viewing 30 posts - 22,501 through 22,530 (of 30,391 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.