Questions related to sliders on homepage

This topic has 52 replies, 3 voices, and was last updated 2 years, 7 months ago ago by Olga Barlow

  • Avatar: Sebastian
    Sebastian
    Participant
    August 5, 2021 at 23:02

    Ok thank you but that’s affecting everything, I’m looking for a way to keep the filter active just for the shop page, not for every category

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 6, 2021 at 08:21

    Hello,

    In this case, provide us with URLs of your Shop page and one of Categories. We will give you custom CSS code

    Regards

    Avatar: Sebastian
    Sebastian
    Participant
    August 6, 2021 at 11:41

    Awesome, thank you!
    https://italceramic.ro/categorie-produs/gresie/ this is for the categories
    https://italceramic.ro/shop/ this is for the shop
    P.S: The filter toggle should be disabled just in the responsive version if possible

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    August 6, 2021 at 12:08

    Add the next code in Theme Options > Theme custom CSS > Custom CSS for mobile:

    .tax-product_cat .et-toggle-mob-sidebars-wrapper {
        display: none;
    }

    Regards

    Avatar: Sebastian
    Sebastian
    Participant
    September 3, 2021 at 15:49

    Hello, I’m having an issue with this -> https://prnt.sc/1r4mkw5

    The number that’s supposed to show up when a certain price is hit so they can get a free delivery is only showing in the shop and product pages but not anywhere else, is there any way we can solve/change this?

    Also, out of no where this picture is showing like this for 2-3 seconds when the page is loaded -> https://prnt.sc/1r4mo63

    What can I do to solve it?

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    September 4, 2021 at 09:42

    Hello,

    1/ Try to disable all the third-party plugins (including cache plugins), that do not come bundled with XStore https://xstore.helpscoutdocs.com/article/36-included-plugins , clear cache of browser, and check then. Maybe one of the additional plugins is a reason for the problem.
    2/ Check how it works with another Image Loading Type in Theme options > Speed Optimization.

    Regards

    Avatar: Sebastian
    Sebastian
    Participant
    September 6, 2021 at 15:53

    1. That didn’t work..
    2. Didn’t work either, if I apply something else the image will not be shown anymore but the overall zoom effect still happens for some reason

    Also I was wondering how can I be able to add a REad more button in the category description -> https://prnt.sc/1refbv2 I have tried by adding the more function in the category description editor but it’s not showing

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    September 8, 2021 at 11:24

    Hello,

    1) This option caused the issue with the minicart https://prnt.sc/1rk8j15
    Once I disable this option cart works fine.
    2) We have made some improvements in /wp-content/plugins/et-core-plugin/app/controllers/shortcodes/categories.php Check now.
    3) Do you mean that you want to show a small excerpt and “Read more” link at the end to allow the user to see full text once he clicks that link? There is no such option in our theme by default. You can implement this by additional customization and use this solution for example https://www.w3schools.com/howto/howto_js_read_more.asp

    I have made an example here https://italceramic.ro/categorie-produs/placi-ceramice/ and added custom script in Settings > Insert Headers and Footers.

    <script>
    jQuery(document).ready(function () {
      var excerpt_shown = false;
      jQuery('#myBtn').on('click', function() {
        if ( excerpt_shown ) {
          $(this).text('Citeste mai mult');
          $('#more').hide();
          $('#dots').show();
          excerpt_shown = false;
        }
        else {
    		$(this).text('Citeste mai putin');
          $('#more').show();
          $('#dots').hide();
          excerpt_shown = true;
        }
      });
    });
    </script>

    Regards

    Avatar: Sebastian
    Sebastian
    Participant
    September 8, 2021 at 16:05

    1. It works, thanks
    2. The image is still zooming when the page is loading
    3. That works as well, thank you

    I have a question, I want to move the description while I’m on mobile view to the bottom of the category, is that possible? If yes, where is the function so I can do it?

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    September 9, 2021 at 16:19

    Hello,

    Check the slider with the images again.

    Regards

    Avatar: Sebastian
    Sebastian
    Participant
    September 13, 2021 at 15:54

    Ok that works thank you

    1. Do you know how can I move the description to the bottom of the page only in the responsive mode?
    2. https://prnt.sc/1s2fomp I’m having issues with H1, H2, H3 and H4 these are capitalized, is there any settings that I can change in order for the text-transform to be set to none?
    3. How can I change the color of this text? https://prnt.sc/1s2fwfy These are the categories, the hovor colors as well

    Avatar: Olga Barlow
    Olga Barlow
    Support staff
    September 14, 2021 at 14:51

    Hello,

    1) We don’t have such option in our theme, sorry.
    2) Do you want to change it to none for the description only or for the whole site?
    If you want to change for the whole site then go to Theme Options > Typoghraphy > change headings settings. If you want to change it for the description only then use below custom

    .term-description h1, .term-description h2, .term-description h3, .term-description h4, .term-description h5, .term-description h6{
        text-transform: none;
    }

    3) Use custom

    .widget_product_categories.sidebar-widget ul li a {color: #000;
    }
    .sidebar-widget ul li.current-cat>a, .sidebar-widget ul li>ul.children li.current-cat>a, .widget_product_categories.sidebar-widget ul li:hover > a {
        color: #26609c;
    }

    If you have more questions, please, create new topic to avoid misunderstanding. This topic has 3 pages already. Create the new one.

    Regards

  • 1 2 3
    Viewing 52 results - 41 through 52 (of 52 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.