Viewing 15 replies - 1 through 15 (of 16 total)
  • Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hello there,
    here answers to your questions:
    1. Use this CSS snippet

    #main-footer .widget_nav_menu ul li {
        font-size: 14px;
    }

    2. At this moment, they can’t be added. We will work to add them in next theme update

    3. This font size reflex the main body font size and increase it by a small factor. But in case you want to have full control on it, you can add this CSS snippet

    .single-product div.product .summary.entry-summary .woocommerce-product-details__short-description p {
    font-size: 16px;
    }

    4. The space can be reduced with this snippet

    .single-product .woocommerce-tabs .panel table.shop_attributes td p {
        margin-bottom: 0;
    }

    The title can be changed with this PHP snippet to add in your child theme functions.php file

    add_filter( 'woocommerce_product_additional_information_heading', 'yith_support_change_additional_information_heading' );
    /**
     * @return string Modified value for product's "Additional information" text.
     */
    function yith_support_change_additional_information_heading() {
    	return esc_html__( 'Product information', 'yith-proteo' );
    }

    5. can you elaborate bit more?

    I hope you will appreciate our help ??

    Thread Starter tota040963

    (@tota040963)

    Thread Starter tota040963

    (@tota040963)

    The point 4 the coding for change the additional information is not working

    add_filter( ‘woocommerce_product_additional_information_heading’, ‘yith_support_change_additional_information_heading’ );
    /**
    * @return string Modified value for product’s “Additional information” text.
    */
    function yith_support_change_additional_information_heading() {
    return esc_html__( ‘Product information’, ‘yith-proteo’ );
    }

    Thread Starter tota040963

    (@tota040963)

    Also for:

    2. At this moment, they can’t be added. We will work to add them in the next theme update

    Can I replace the icons for Twiter and LinkedIn with Tiktok and Pinterest images without changing the file name???

    Tota

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hi again,
    for n.5:

    @media (max-width: 480px) {
    ul.products li.product, ul.products li.wc-block-grid__product, .wc-block-grid ul.wc-block-grid__products li.product, .wc-block-grid ul.wc-block-grid__products li.wc-block-grid__product {
        width: 100%;
        float: none;
        }
    }

    For n.6:

    body.woocommerce-cart .cart-collaterals .cart_totals table th {
        display: none;
    }

    For n.4:
    I can see you have an active subscription with YITH, so you can consider write to the company a ticket and we will assist you on this and add the code for you.

    For n.2
    Icons are coming from a gpl font bundled with the theme. But with CSS they can be modified. If you point me to the images you want to use (with the url) I can prepare the code for you ??

    Thread Starter tota040963

    (@tota040963)

    Thread Starter tota040963

    (@tota040963)

    Buon giorno Fancesco,

    I test it on Ipad and I have the following issues:

    1. Shop page https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Shop.jpg
    2. Cart Page https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Cart.jpg
    3. Home Page https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Home.jpg
    4. Model Page https://www.signaturecd.com/wp-content/uploads/2021/04/ipad-screen-Models.jpg

    Note that except the point 2 it happens when the iPad it’s in portrait position.

    Tota

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hello there,
    1. issue found, this is related to tablet devices only. It will be fixed in coming Proteo update! Thanks
    2. Please change the code provide for n.6 into this:

    @media( min-width: 769px ) {
    body.woocommerce-cart .cart-collaterals .cart_totals table th {
        display: none;
    }
    }

    3. this happens because the layout in made in columns. And on iPad a column width is 50% of screen size. So 3 columns cause this. If you want, we can force the column width to be 100% on iPad screen size. OR you can play with responsive visibility in this way: hide a column to tablet (iPad) view or show an additional column to table (iPad) view. I can help you on this with screenshots if you want to proceed.
    4. like issue n.1 it will be fixed in the next theme update ??

    Please let me know if you need further help expecially for n.3

    Thread Starter tota040963

    (@tota040963)

    Thanks,

    please reply to me also on the below issue: (social icons)

    For point 2 can you please be more specific? (I want to add the TikTok and Pinterest)
    you mean these?
    https://www.flaticon.com/free-icon/tik-tok_3046125?term=tiktok&page=1&position=5&page=1&position=5&related_id=3046125&origin=search
    
    https://www.flaticon.com/free-icon/pinterest_160178?term=pinterest&page=1&position=9&page=1&position=9&related_id=160178&origin=style

    Tota

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hello again,
    can you upload the two social images to your website and provide me the media url?
    Then you can configure the socials (with the wrong icon) and I will provide you the CSS to change the icon with the proper ones

    Thread Starter tota040963

    (@tota040963)

    Salve Francesco,

    Here are the images
    https://www.signaturecd.com/wp-content/uploads/2021/04/tik-tok.png
    https://www.signaturecd.com/wp-content/uploads/2021/04/pinterest-1.png

    Also on your last message you told me:
    2. Please change the code provide for n.6 into this:

    @media( min-width: 769px ) {
    body.woocommerce-cart .cart-collaterals .cart_totals table th {
    display: none;
    }
    }`

    WITH

    For n.6:
    
    body.woocommerce-cart .cart-collaterals .cart_totals table th {
        display: none;
    }

    I did it but it’s not working … I mobile I see the double descriptions and on Ipad still missing the descriptions.

    Please advise

    Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hi there,
    here the code to transform twitter into tiktok and linkedin into pinterest:

    .widget_yith_proteo_social_icons a.twitter span:before {
        content: '';
        background: url('https://www.signaturecd.com/wp-content/uploads/2021/04/tik-tok.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 32px;
        height: 32px;
        display: inline-block;
    }
    
    .widget_yith_proteo_social_icons a.linkedin span:before {
        content: '';
        background: url('https://www.signaturecd.com/wp-content/uploads/2021/04/pinterest-1.png');
        background-size: contain;
        background-repeat: no-repeat;
        width: 32px;
        height: 32px;
        display: inline-block;
    }

    About the responsive url, please try 992px or if the issue is style there 1200px. It should work. Unfortunatly it depends on the type of iPad too, because Pro are larger then standard iPads

    Let me know

    Thread Starter tota040963

    (@tota040963)

    Thanks for the social Icons … one more issue on rollover it shows the old names (ex on tiktok it say twitter and on Pinterest linkedin

    Thanks

    Thread Starter tota040963

    (@tota040963)

    Hi again,

    I find more issues:

    1. Account Login https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png (when I login from checkout it’s ok)
    2. Home Page – Sliders https://www.signaturecd.com/wp-content/uploads/2021/04/Home-Page.png (when I refresh a few times the slides or move down)
    3. Cart Page https://www.signaturecd.com/wp-content/uploads/2021/04/Cart-Page.png (we fix this for mobile but problem with desktop)

    Tota

    Thread Starter tota040963

    (@tota040963)

    Sorry …

    From where is can set the “About the responsive url, please try 992px or if the issue is style there 1200px. It should work”

    Tota

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Theme issues’ is closed to new replies.