Home › Forums › WoodMart support forum › LAYOUT ISSUES AFTER UPDATE
LAYOUT ISSUES AFTER UPDATE
- This topic has 7 replies, 2 voices, and was last updated 4 years, 9 months ago by Artem Temos.
-
AuthorPosts
-
February 23, 2020 at 4:48 am #175468
indiesonParticipantHi,
The new update of 4.5.1 is causing some layout issues on my site. There is a lot of unwanted blank space at the left side of text which can be seen in the header, product page, and footer. Also, the custom font awesome icons in the account dashboard menu are not displayed properly. I have tried to change the setting in font awesome library from ‘light version’ to ‘always use’ but the issues still persist.
I have cleared all the caches in the browser, server, and cloudflare and deactivated all the third-party plugins.
Thanks and waiting for your reply.
February 23, 2020 at 9:12 am #175502
Artem TemosKeymasterHello,
Could you please disable all plugins that are not related to our theme and provide us your admin access so we can check it? Also, be sure that you are using minfied CSS enabled in Theme Settings -> Performance. We have a bug with unminified version that will be fixed very soon.
Thank you in advance
February 24, 2020 at 4:34 am #175612
indiesonParticipantHi,
The layout issue is resolved after enabling the ‘Include minified CSS’. However, the issue of custom font awesome icons in the dashboard menu still persists.
Here is one of the custom codes for displaying the custom icon in the dashboard:
body .woodmart-my-account-links .orders-link a:before {
content: “\f1b3”;
font-family: fontawesome;
}Also, the product result count is showing up at the top on mobile after the update. How could I disable it? Here is a screenshot link for your reference: https://prnt.sc/r6pyzo
Admin access is provided in the private content.
Thank you and waiting your response.
February 24, 2020 at 8:32 am #175659
Artem TemosKeymasterFrom the release of our theme, we were supported Font Awesome icon font version 4.7 that is used by WPBakery. But since the latest plugin update, WPBakery is moved to the newer version – Font Awesome 5 and we were forced to switch to the newer version.
Font Awesome 5 has constantly updated and contain much more icons but, unfortunately, some of newer icons may be visually different from 4.7 version. Also, all CSS custom code related to the icons needs to be updated because “font-family” parameter has been changed from “fontawesome” to “Font Awesome 5 Free” (for regular icons) and “fontawesome” to “Font Awesome 5 Brands” (for social and company icons).
Here is an example of the custom CSS for Font Awesome 5body .woodmart-my-account-links div a:before { font-family:'Font Awesome 5 Free' !important; font-weight: 900; }
and this one is for the products count
.woocommerce-result-count { display: none; }
February 26, 2020 at 4:41 am #176192
indiesonParticipantHi,
The products count issue still persists despite adding this
.woocommerce-result-count { display: none; }
Thank you and waiting your response.
February 26, 2020 at 7:00 am #176202
Artem TemosKeymasterHello,
Sorry, you need to add it to mobile and tablet Custom CSS areas.
February 27, 2020 at 1:47 am #176456
indiesonParticipantHi,
Result count still showing at the top of shop page despite adding the code to mobile and tablet Custom CSS areas. It’s not showing when I enabled the Breadcrumbs on shop page feature.
Thanks and waiting for your response.
February 27, 2020 at 7:09 am #176492
Artem TemosKeymasterTry to replace the code with this one
.woocommerce-result-count { display: none !important; }
-
AuthorPosts
Tagged: layout issue
- You must be logged in to create new topics. Login / Register