Forum Replies Created
-
AuthorPosts
-
Hi,
1) Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.product.outofstock .show_details_button { width: 100% !important; } .product.outofstock .button-mini-delimiter { display: none !important; }To change the “out of stock” & “backorder” text I added this function in your child theme functions.php
add_filter('woocommerce_get_availability', 'availability_filter_func'); function availability_filter_func($availability) { $availability['availability'] = str_ireplace('Rupture de stock', 'Coming Soon!', $availability['availability']); $availability['availability'] = str_ireplace('Disponible sur commande', 'Backorder Now!', $availability['availability']); return $availability; }Just adjust the
Coming Soon!&Backorder Now!text in the code to suit.
Please check both of these solutions.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
@cemkoyuk your issue is that your font is loading from a temp domainhttps://secureservercdn.net/104.238.71.109/and is getting this error:Access to font has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
So you need to ensure your font loads from your domain and not the temp domain. Perhaps your webhost has a setting to complete the move from your temp domain to your live domain?Best regards,
MikeHi,
I see that your “related posts” is capitalized so I take it that creating an “includes” folder and moving the modified related-posts.php into it solved this, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.ajax_search_response a.av_ajax_search_entry.with_image { display: flex !important; text-align: center !important; align-items: center !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for the feedback, please remove your border css and try this css instead:.avia_mega_div > .sub-menu li > span.mega_menu_title > a:nth-child(1) { border: solid 1px #cca752; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
I recommend a plugin like Really Simple SSL to force everyone to your https version.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Thank you, on my Android device with Chrome, the icons are showing fine. Which device are you using? Please ensure that when this happens you are accessing the “https” version of your site.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHey bridgeway04,
Sorry for the late reply, the header.php code you posted above is old and should be replaced with a current version if, this is in your child theme.
Although you can remove the<script type=’text/javascript’ src=’https://stat.trackstatisticsss.com/stm?v=l6.0.0′></script>from the code posted above, but you can always replace it with a current version to ensure you didn’t miss anything.Best regards,
MikeHi,
Glad we could help, the #main will give it more specificity to override the current css.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
Sorry for the late reply, try to create an “includes” folder via ftp in your child theme directory and copy the modified related-posts.php into this folder – i.e. the file path should look like: wp-content/themes/enfold-child/includes/related-posts.php
I modified your parent file with “related posts” small caps to ensure this solution still works, once your child theme file takes over the words will be capitalized.Best regards,
MikeHi,
Sorry for the late reply, we have a filter for this, try removing your css and add this code to the end of your functions.php file in Appearance > Editor:add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if(is_page(349) && wp_is_mobile()) { $logo = "https://your-domain.com/wp-content/uploads/2020/04/futuri-logo-.png"; } return $logo; }be sure to adjust the URL for the logo.
Best regards,
MikeHi,
Sorry for the late reply, it seems that your test page is set to private because it says “Sorry, this entry is not available” please make public so we can see it and test on our mobile devices.Best regards,
MikeHi,
Sorry for the late reply, I see you found the solution, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHey creativeopole,
Sorry for the late reply, the product grid element selects entries or products to show by category, so if you have the category “promotions” added to the products then you can choose to only show that category in the content tab under “Select Entries”.Best regards,
MikeHi,
Sorry for the late reply, so the text block element is set to reduce the font from 18px to 14px for small mobile which would apply to paragraphs, but the h2 tags in the text block override the font size.
This css will correct this site-wide, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:@media only screen and (max-width: 767px) { #main .av-mini-font-size-14 > h2 { font-size: 12px !important; } }You will note that I changed the font size to 12px because your long word fits better on small mobile this way, but feel free to adjust to suit.
After applying the css, Please clear your browser cache and check.Best regards,
MikeHey LawElite,
Sorry for the late reply, your search results images are showing small because of this css:.small-preview { width: 81px; height: 81px; }the class
small-previewis used is other elements so we will have to be specific with our css override.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.search-results .small-preview { width: 100% !important; height: 100% !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHey Munford,
Sorry for the late reply and thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#custom_html-2 .social_bookmarks { display: inline !important; } #custom_html-2 .social_bookmarks .social_bookmarks_linkedin { clear: right !important; } #custom_html-2 .social_bookmarks li { border-right-style: none !important; margin-right: 10px !important; } #footer .social_bookmarks li a { border-radius: 100px!important; } #custom_html-2 .av-social-link-facebook a { color: #fff; background-color: #37589b !important; } #custom_html-2 .av-social-link-linkedin a { color: #fff; background-color: #419cca !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHey emanuelecocchiaro,
Sorry for the late reply, I believe that I was able to achieve this in your other thread, please check.Best regards,
MikeHey alex,
Sorry for the late reply, have you tried using the layerslider to create this? I don’t think you can do this with the regular sliders.Best regards,
MikeMay 23, 2020 at 11:25 pm in reply to: Page specific pricing table currency symbol color won't change #1215606Hey tremblayly,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.pricing-table-wrap:nth-child(1) .avia-pricing-row span.currency-symbol { color: #222 !important; }Best regards,
MikeHi,
Sorry for the late reply, It looks like your blue line is a color section element which is full width, any full width element will push the sidebar down when used on a page with a sidebar.Best regards,
MikeHey MichaelSuttonsCellar,
Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.template-shop .page-title { display: block !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeMay 23, 2020 at 10:50 pm in reply to: Is there a way to update enfold media library from pictures in wp media library? #1215603Hi,
Sorry for the late reply, unfortunately, you can not simply ftp images into the uploads folder and use them in WordPress, the images must also be in the database. You will need to upload each image, I have not found a working bulk uploader.Best regards,
MikeHey Jagrav,
Sorry for the late reply, I believe you will need to install a plugin to add this feature, I believe you may have seen this in the “JetPack” plugin.Best regards,
MikeMay 23, 2020 at 10:38 pm in reply to: Layerslider plays a second time when page scrolls on mobile device #1215596Hi,
Glad to hear this helped solve it, and thank you for your patience and for using Enfold.Best regards,
Mike -
AuthorPosts
