Forum Replies Created
-
AuthorPosts
-
March 29, 2020 at 2:47 pm in reply to: Adding top bar has affected the lineup of certain pages #1198824
Hi,
Sorry for the late reply, unfortunately, some of your images are not available, so I’m not quite sure what you are trying to do, the top bar looks the same to me in your examples.
Please try explaining again.Best regards,
MikeMarch 29, 2020 at 2:29 pm in reply to: how to get download button for each picture with masonry content elemens? #1198822Hi,
Sorry for the late reply, unfortunately, we don’t have an option for that, perhaps there is a plugin that will achieve this.Best regards,
MikeHey Carsten,
Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_betreff_script(){ ?> <script> (function($){ $(document).ready(function(){ $('#top.page-id-44 #avia_3_1 option:eq(0)').prop('selected', true) }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_betreff_script');Then clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, to increase the social icons and the “phone” text, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.phone-info > span { font-size: 20px !important; } #top .social_bookmarks li a { font-size: 30px !important; }Best regards,
MikeMarch 29, 2020 at 1:33 pm in reply to: Blank white space at the top of pages on mobile and tablet displays #1198811Hi,
Perhaps try clearing your browser cache, Please see the screenshots in Private Content area.Best regards,
MikeHi,
Glad you were able to tweak it, but I don’t see a “white bar” when I click the burger menu.
But perhaps the page looks different when logged in, unfortunately, I can’t login it leads to a 404.Best regards,
MikeHi,
Thank you for the feedback, I added this script to your functions.phpfunction projekty_unijne_script(){ ?> <script> (function($){ $(document).ready(function(){ $('.social_bookmarks_kriesi').after("Projekty Unijne"); $('.social_bookmarks_kriesi a').attr('title','Projekty Unijne') }); })(jQuery); </script> <?php } add_action('wp_footer', 'projekty_unijne_script');this adds the text and changes the icon title to match, feel free to adjust to suit.
Please clear your browser cache and check.Best regards,
MikeHey adxdigitalmarketing,
Sorry for the late reply, find the loop-search.php in enfold/includes and make a copy of it and upload it to your child-theme subfolder “includes” such as: “enfold-child/includes”
On line 33 look for:
echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
and replace with:$searchthumb = get_the_post_thumbnail( $the_id, 'large' ); echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";Best regards,
MikeHey enfoldMB,
Sorry for the late reply, there is two ways to do this and both will rely on polylang adding a language class to the site, which I pretty sure it does.
So for the first option, you will have one FB social icon in the header and socket and we will add a jQuery script that will change the url based on the language class.
The second option is you will have two different FB social icons next to each other with their own links, and we will hide them with css based on the language class.
We will need to see your site to write this for you, which option do you prefer?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 _studiotwelve,
To have the text menu show on load and the burger menu show on scroll, Try adding this code to the end of your functions.php file in Appearance > Editor:add_action('wp_footer', 'ava_burger_toggle_on_scroll'); function ava_burger_toggle_on_scroll(){ ?> <script type="text/javascript"> (function($) { function avia_scroll_top_menu() { var win = $(window), menu = $('.responsive #top .av-main-nav .menu-item'), burger = $('.responsive #top .av-main-nav .menu-item-avia-special, .responsive .av-burger-menu-main'), set_status = function() { var st = win.scrollTop(); if(st > 100) { menu.addClass('hide_menu_show_burger'); menu.removeClass('hide_burger_show_menu'); burger.removeClass('hide_menu_show_burger'); burger.addClass('hide_burger_show_menu'); } else if(menu.is('.hide_menu_show_burger')) { burger.addClass('hide_menu_show_burger'); burger.removeClass('hide_menu_show_burger'); menu.removeClass('hide_menu_show_burger'); menu.addClass('hide_burger_show_menu'); } }; win.on( 'scroll', function(){ window.requestAnimationFrame( set_status )} ); set_status(); } avia_scroll_top_menu(); })(jQuery); </script> <?php }Then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
.responsive #top .av-main-nav .menu-item { display: block; } .responsive #top .av-main-nav .menu-item-avia-special { display: block; } .responsive .av-burger-menu-main.hide_burger_show_menu { display: block; } #avia-menu .hide_menu_show_burger { display: none !important; } #header.av_header_transparency .av-burger-menu-main.hide_burger_show_menu { display: none !important; } #header.av_header_transparency .av-burger-menu-main:not(.hide_burger_show_menu) { display: none !important; }Then clear your browser cache and check.
I couldn’t login to add this for you because the login url leads to a 404
I tested this on a default menu setup, so some tweaks may be necessary for your setup.Best regards,
MikeHi,
To hide the text of the three images on the homepage on hover, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home .avia-image-container:hover .av-image-caption-overlay { opacity: 0 !important; }Best regards,
MikeHi,
Sorry for the late reply, to add the “home” icon to the beginning of the “my account” link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#menu-item-7836 > a:before { content: "\e821"; font-family: entypo-fontello; color: #fff; position: relative; padding-right: 5px; margin-left: -5px; }After applying the css, Please clear your browser cache and check.
Please feel free to change the icon to any that you wish.Best regards,
MikeHi,
Sorry for the late reply, to have gray icons in your footer on hover, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#custom_html-3 .av_font_icon a:hover { color:gray !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the late reply, this function will add the text character to the url of the TOC so the anchor links will work, unfortunately this will only work if the whole TOC is Chinese, because it brakes the English links.
Try adding this code to the end of your functions.php file in Appearance > Editor:function custom_toc_script(){ ?> <script> (function($){ $(document).ready(function(){ $(".avia-toc-container a.avia-toc-link").each(function(){ var character = $(this).find("span").text(); $(this).attr('href', function() { return "#" + character; }); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_toc_script');Please let us know if you want to use English and Chinese TOC’s on the same site, we can have this code only work on the pages to have the Chinese TOC.
Best regards,
MikeMarch 28, 2020 at 10:05 pm in reply to: Blank white space at the top of pages on mobile and tablet displays #1198702Hey hostworks,
Sorry for the late reply, I took a look at many of your pages but didn’t see the error, have you since made changes?Best regards,
MikeHey marcoabis81,
Sorry for the late reply, I took a look at your pages and I disabled the function above and found that not all post are the same, some don’t have the image div at the beginning of the posts, those that do, have the image inserted as shortcode.
Please ensure all posts have the same image shortcode.Best regards,
MikeHi,
Please try this:#top input[type=text] { display: inline-block !important; }After applying the css, Please clear your browser cache and check.
Best regards,
MikeHey goodmaneu,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top input[type=text] { display: inline-block !important; }Best regards,
MikeHey goodmaneu,
Sorry for the late reply, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top .main_color input[type=text] { background-color: #fff !important; }Best regards,
MikeHi,
Thank you for the login, I found the css above in the Quick CSS field, so I removed and this seems to correct the white space issue. Please clear your browser cache and check.Best regards,
MikeHi,
I tried debugging the javascript for the column and found this:
if( (0 == url.indexOf("#")) || ((url.indexOf(link) >= 0) && (url.indexOf("#") > 0) ) )on line 658 of\enfold\js\shortcodes.js
Perhaps if you were to comment out the “else” function of this rule the error will be corrected. Please see the screenshots in Private Content area.
After making this change you will need to clear your browser cache, and any other cache so the edited “shortcodes.js” will load, this can be a little tricky because the browser prefers to use the cache version of any .js file.
Unfortunately, I’m not able to reproduce your error so I can’t test if this will help, but this is where the link with the hashtag is getting modified.Best regards,
MikeHi,
Very good then, we will close this then. 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,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.responsive .container.av-logo-container { max-width: 100% !important; background-size: contain !important; }Best regards,
MikeHi,
So the column link works fine unless it’s on the “homepage”?
I tested on my localhost and it works correctly even if it’s the “homepage”, strange.Best regards,
MikeMarch 26, 2020 at 1:12 pm in reply to: How Can I Remove the Thumbnail from Displaying on Related Posts? #1198007Hi,
You could try removing the thumbnails from this file:
\enfold\includes\related-posts.php
Try line 124 and change from:$output .= $image;to//$output .= $image;Best regards,
MikeHi,
I see the flickering on this product with Chrome on Windows.
The image here is using the zoomImg class, as outlined here
It is also the only product that I find that has two other images in the product image set, but neither are shown on “onmouseenter” or “onmouseleave”, most of your products seem to be like this one with only one image and no hover effect.
When the option “WooCommerce 3.0 product gallery” is picked in the “Shop Options” the default action is the “zoomImg” when the “Default enfold product gallery” is picked then the product image has no hover effect but when clicked it opens in a lightbox.
So I don’t see any settings to add another set of images that uses a hover effect to your product images, are you sure this is not added via a plugin or script?
Perhaps this is a conflict with the latest Enfold and your older woocommerce which you said you can’t update or one of your scripts?
Have you tried activating the parent theme “enfold” to see if this continues without the extra scripts & files from your child theme?
Best regards,
Mike -
AuthorPosts



