Forum Replies Created
-
AuthorPosts
-
April 5, 2020 at 7:22 pm in reply to: social share button in custom footer page showing wrong URL #1200990
Hey tronicszone,
The social share element automatically links to the post that it is on, but since you have added it to your footer which is a “page as footer” it will link to the footer page.
If your footer was normal the social share would link to the page and not a post as designed.
I recommend that you remove the footer social share.Best regards,
MikeHi,
The version of Entypo Icons that you linked to is 3 and the difference between this version of Entypo and previous ones is that the suite now only consists of SVG images. There is no fonts or PSD.
The Enfold iconfont manager requires the font files, so you can’t use this set. I see that the download link on this page is not working anyways.Best regards,
MikeHi,
In the extra elements in the header I see two different numbers depending on the language, please see the Private Content area, are these correct? Perhaps you need to login to a certain language to change the extra elements number.Best regards,
MikeHi,
Thank you for the screenshot, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.woocommerce small,.woocommerce .product-name a { font-size: 100% !important; }Best regards,
MikeHi,
Sorry for the late reply and thanks for the screenshot. You could add your categories to a “Blog element” or a “masonry element”, but we don’t have the menu sorting option for the categories in the grid that you have in your screenshot, to have both you will need to use a plugin.Best regards,
MikeHi,
Sorry for the late reply, to move the sidebar below the description for products on mobile, Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> (function($) { $(document).ready(function(){ var width = $(window).width() if ($(width <= 767)) { $('#top.single-product .sidebar').detach().insertAfter('#top.single-product .single-product-summary'); } else{} }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_script');Then clear your browser cache and check.
Best regards,
MikeHey braymond64,
Sorry for the late reply, I see that you are using v4.7.2
Please try updating as v4.7.3 included this fix: fixed: Blog multiauthor preview image links to author and not to post
Would you prefer that all of your featured images not be linked at all?Best regards,
MikeApril 5, 2020 at 1:55 pm in reply to: Blog: Doesn' t show post navigation and related posts #1200964Hey weblines,
Sorry for the late reply, it looks like your post has been created with the Advanced Layout Builder, the related posts are only added automatically to WordPress editor posts, otherwise you need to add it manually.
It looks like you have already done this as I see a related posts box on your page you linked to that it was not showing.
For the next & previous navigation to show your post needs to have “Tags”, this is how the other posts are picked.Best regards,
MikeApril 5, 2020 at 1:21 pm in reply to: Uppercase in H3 within the Footer, transparency Header / changing font colors #1200961Hi,
Thanks for the login, I added this css to your Quick CSS to set your text-transform to none.#footer .widgettitle { text-transform: none !important; }For your menu I added this css:
.header_color.av_header_transparency .main_menu ul:first-child > li.current_page_item > a { color: #ffffff; } .header_color.av_header_transparency .main_menu .current-menu-item > a > .avia-menu-fx { background-color: #ffffff; } .header_color.av_header_transparency .main_menu ul:first-child > li > a { color: #dadada; }Please clear your browser cache and check.
Best regards,
MikeApril 5, 2020 at 12:56 pm in reply to: Heading Font Sizes mobile – Special Heading / Spezielle Überschrift & HTML #1200958Hi,
Es hört sich so an, als müssten Sie auf Version 4.7.3 aktualisieren. Welche Version verwenden Sie?
Bitte fügen Sie im Bereich “Privater Inhalt” ein Administrator-Login hinzu, damit wir dies untersuchen können.— Translated with Google —
It sounds like you need to update to v4.7.3, which version are you using?
Please include an admin login in the Private Content area so we can investigate.Best regards,
MikeHey bobfurgo,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.tab,.tab.active_tab:focus { outline: -webkit-focus-ring-color none 0px; outline-color: -webkit-focus-ring-color; outline-style: none !important; outline-width: 0px !important; }Best regards,
MikeHi,
Leider verfügt unser Popup nicht über die Option für verzögertes Popup. Dazu müssen Sie ein Plugin verwenden. Eines, das anscheinend gut funktioniert, ist WP Popups , aber es gibt viele zur Auswahl.— Translated with Google —
Unfortunately, our popup doesn’t have the delayed popup option, for this you will need to use a plugin, one that seems to work well is WP Popups, but there are many to choose from.
Best regards,
MikeApril 5, 2020 at 5:02 am in reply to: Enfold Update to 4.7 not showing as update option in WordPress. #1200912April 5, 2020 at 4:49 am in reply to: Getting strange navigation results when scrolling down #1200907Hi,
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,
Sorry, you will have to build everything from scratch the two themes are quite different.Best regards,
MikeHi,
I see that you have the Enfold Theme Options > Performance > JS & CSS file merging and compression enabled so perhaps the original avia.js is still loading. Try disabling the file merging and compression and clearing your caches again.
I tested this on my localhost before posting so I’m sure it works, but it still took a few tries to clear the cache and load the new avia.jsBest regards,
MikeHi,
Sorry for the late reply, and thanks for the video. You have a .2s transition for the buttons, please try correcting with this css.
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.cd-shop-add-to-cart { transition: 0s !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHey NorthcoastProject,
Sorry for the late reply, I believe this is a duplicate post, I answered your other post about the lightbox anchor link, please check. As for your second part of your question, I believe it’s because the image title is not included in the html. I looked at your page and it looks like you are passing the file name to the mfp-title, the image alt is another option but I see your alt’s are empty right now.Best regards,
MikeHey NorthcoastProject,
Sorry for the late reply, thanks for the login but it didn’t work for me, please check. Unfortunately, you can not open a lightbox with an anchor link, but this script will trigger your slideshow lightbox when it scrolls into view, which can be done with the anchor link, so when you click the anchor link and scroll to the ID the lightbox is triggered. I had to add a 500ms delay because the lightbox opened too quickly and was positioned too high on the page, so it was not in view.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_script(){ ?> <script> function isOnScreen(elem) { if( elem.length == 0 ) { return; } var $window = jQuery(window) var viewport_top = $window.scrollTop() var viewport_height = $window.height() var viewport_bottom = viewport_top + viewport_height var $elem = jQuery(elem) var top = $elem.offset().top var height = $elem.height() var bottom = top + height return (top >= viewport_top && top < viewport_bottom) || (bottom > viewport_top && bottom <= viewport_bottom) || (height > viewport_height && top <= viewport_top && bottom >= viewport_bottom) } jQuery( document ).ready( function() { window.addEventListener('scroll', function(e) { if( isOnScreen( jQuery( '#slideshow-adventurer' ) ) ) { setTimeout(function () { jQuery('#slideshow-adventurer a').trigger('click'); }, 500); } }); }); </script> <?php } add_action('wp_footer', 'custom_script');Best regards,
MikeHey grivers99,
Sorry for the late reply, do you mean the drop down cart next to the menu, or the cart page?
I took a look at both on your site but I didn’t find any text that was 6px, but I found the description small, which text do you want to make larger?
For the cart on the cart page, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.woocommerce th,.woocommerce td,.woocommerce p { font-size: 20px !important; }Best regards,
MikeApril 5, 2020 at 1:57 am in reply to: How to auto-convert all Absolute (domain) links/url's into Root-Relative ones? #1200888Hi,
Sorry for the late reply, I have not seen any working solutions to this, I think WordPress is discouraging this.Best regards,
MikeHey pteryxreadyaid,
By default, the social icons don’t show on mobile, but if you add this css they will.
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: 479px) { .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block !!important; } }Best regards,
MikeHi,
I’m not sure what happened to your site before, but if you would like to remove your slugs please see this documentation and use the lite version of this plugin.Best regards,
MikeHey Merilla,
All of the images in our demos are free to use, CC0, which is passed on to you, so you should feel free to use them.
This image is from a while back now, 2015, and further information about other images I’ve asked about was not available so I think the same would be true for this one.Best regards,
MikeHey NiekvdB,
Sorry for the late reply, unfortunately, your screenshot now leads to a 404 so we can’t see this, but from your description you would like your woocommerce sidebar category menu to show as a drop down menu, but I don’t see an easy way to do this other than using css to hide the child items until the parent has the hover event, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.widget_product_categories li.cat-item-20.current-cat ul.children { display: none; } .widget_product_categories li.cat-item-20.current-cat:hover ul.children { display: block; border: solid 1px; }how it looks on-hover:

You can remove the border from the css if you wish.
Please note that the child items only show when you are on the page in the Private Content area.Best regards,
MikeHey payton_sil,
Sorry for the late reply, the “icon fonts” are actually font files like “.woff” they are not images or icons, so in the “Iconfont Manager” in the import/export theme options you will need to upload a zip file with the “iconfont”, fontello.com lets you download the font file.
You could download the .svg from flaticon and upload to fontello and then download the font file. Please note that you can only use the black & white svg images to create the font files.Best regards,
Mike -
AuthorPosts



