Home Forums WoodMart support forum Need help with 2 questions

Need help with 2 questions

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #507153

    sadovit.help
    Participant

    Good day, thanks for the great topic!
    During the setup process, I had 2 questions:
    1) Please help translate this text, which should be replaced with “Ваші особисті дані будуть використовуватися для підтримки вашого досвіду на цьому веб-сайті, для керування доступом до вашого облікового запису та для інших цілей, описаних у нашій %s.

    https://i.imgur.com/d74vKSa.png

    Or tell me how to change it, I tried everything (LocoTranslate, changed .PHP files) nothing helps

    2) I enabled “Header Banner“. On the mobile version, I click on the cross on the right, it doesn’t close, so I don’t try, I can’t solve this problem
    https://i.imgur.com/S3kFtUh.png
    https://i.imgur.com/P0Yhtcz.png

    Here I recorded a short video: https://drive.google.com/file/d/124tZ1iRlTmkJNOUPvTCjd7uTzUyF6gZQ/view?usp=sharing

    Thanks for the help!

    #507285

    Hello,

    1. You can find this string in Woocommerce > Settings > Advanced.

    2. It seems you are checking to narrow the screen, please check on a real device it works:https://gyazo.com/3b456beb6a759f00935ac6947d9853ed

    If the problem remains, let us know what device and browser do you use.

    Best Regards
    Glory to Ukraine!

    #507489

    sadovit.help
    Participant

    2) I use iPhone 7. Safari browser and Google Chrome

    Thanks, I solved the first question =)

    #507594

    Bogdan Donovan
    Keymaster

    Hi,

    We have tested your site on a real iPhone device, and the header banner close button is working fine. Please, check the videos:
    Safari – https://monosnap.com/file/dGF1CKHZoqR3x4AR8RjLp62EvrCrmV
    Chrome – https://monosnap.com/file/8Le4ALj2jLkRjun2YKsxQ6t8qkOtqR

    Judging by your phone model, you are using iOS 15 or less. Such OS version browsers did not support overflow: clip property, which is important for the to work of site scroll and HTML elements placed outside body container using CSS. To fix your issue on iPhone 7 you can try to add the following custom code to the Global Custom CSS area in Theme settings:

    .wd-side-hidden {
    	top: var(--wd-admin-bar-h);
    	bottom: 0;
    }
    
    @supports not (overflow: clip) {
    
    	body {
    		overflow: visible; 
    	}
    	
    	.website-wrapper {
    		overflow: hidden;
    	}
    }

    That code disables overflow: clip property, but we do not guarantee that it will continue to work properly in the future, since iOS 15 has not received browser updates since December 2021. The official WordPress browser support page (https://make.wordpress.org/core/handbook/best-practices/browser-support/) states that is supports last 2 Chrome versions, last 2 Safari versions, and last 2 iOS versions.

    Kind Regards

Viewing 4 posts - 1 through 4 (of 4 total)