Forum Replies Created
-
AuthorPosts
-
Hey zylphe,
Thank you for your patience, I see many javascript errors on your pahe please try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enabling Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and your EWWW Image Optimizer plugin and then clear your browser cache and check.
If this doesn’t correct please include admin login in the Private Content area so we can investigate.Best regards,
MikeHey Manel,
Thank you for your patience, the taxonomy name would be a category, portfolio items are a post type.
If you need further assistance please log in to the support forum and open a new thread If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
Please note that using the contact form is not appropriate for support questions.Best regards,
MikeHi,
Please try clearing and disabling your caching plugin and then check again. If this doesn’t correct please include admin login in the Private Content area so we can investigate.Best regards,
MikeHey seomar,
The white bar at the top was due to your LayerSlider having a space above the background image, I changed the background to “cover” and now it is fixed:
To have a different logo on mobile, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { if(wp_is_mobile() ) { $logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png"; } return $logo; }
change the url to your new logo image
The reason your LayerSlider is not showing until someone interacts wih it is due to your WPRocket lazy load, you need to add a exclusion
Your EWWW Image Optimizer is also dong the same thing:
I added these for you please clear your browser cache and check, if you still have trouble clear your server cache or disable both plugins.
for your last question, do you mean this:
it is in your LayerSlider, please change there.Best regards,
MikeHi,
It sounds like this is sorted out now, shall we close this thread then?Best regards,
MikeHi,
When I check your site I see four portfolio categories:
and the breadcrumbs seem correct for each category:
please explain the error that you see further, perhaps a screenshot would help.Best regards,
MikeHi,
Thanks for the feedback, remove the css above and keep the caption in your featured image in the media library, and then try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_post_featured_image_link( $image_link ) { if(is_single() && has_post_thumbnail()) { $image_link = get_the_post_thumbnail(); $thumbnail_id = get_post_thumbnail_id(); $thumbnail_caption = wp_get_attachment_caption($thumbnail_id); $caption_div = '<div class="featured-image-caption" style="text-align: center;">' . esc_html($thumbnail_caption) . '</div>'; $image_link = $image_link . $caption_div; } return $image_link; } add_filter( 'avf_post_featured_image_link', 'custom_post_featured_image_link', 10, 3 );
the caption should show like this:
I’m not sure how it will show for your different layouts as the WordPress login above didn’t work for me so I couldn’t test, so give it a try.Best regards,
MikeMay 11, 2024 at 4:46 pm in reply to: Shadow missing from timeline / milestones with content box #1442985Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeMay 11, 2024 at 4:08 pm in reply to: Shadow missing from timeline / milestones with content box #1442973Hey florian_WIO,
Thank you for the link to your site, this is because it is on the left edge of the page container, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to move it over a little bit:#avia-timeline-1 .av-milestone:first-child { left: 10px; }
Best regards,
MikeHi,
Thank you for your patience, please try following these steps, first add a caption to your featured image in the media library:
Then add this css to your child theme stylesheet or the theme option Quick CSS:.single-post .single-big a:after { content: attr(title); }
and the caption should show like this:
Best regards,
MikeMay 11, 2024 at 3:27 pm in reply to: Google Maps error: Maps were disabled by the visitor on this site. Click to open #1442966Hi,
Thanks for the feedback, I did mis that. I noticed another error on your page:
[AVIA-MAP-ERROR] Latitude or Longitude missing. Make sure you did not only enter an address. You need to fetch the coordinates too.
your map address doesn’t have a city or state, try adding these and then fetch the coordinates:
Best regards,
MikeHey Illingco,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function turn_search_widget_into_ajax_search() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ $("#search-6 #searchform").removeClass("av_disable_ajax_search"); })(jQuery); }); </script> <?php } add_action( 'wp_footer', 'turn_search_widget_into_ajax_search', 99 );
Best regards,
MikeMay 11, 2024 at 1:28 pm in reply to: Video fallback image causing enormous performance issues on mobile devices. #1442953Hi,
You can try and since most of these you are not using on your site you can disable them at Enfold Theme Options ▸ Performance ▸ Disable Template Builder Elements
Blue means that it is disabled, you should see text next to the button unused or in use to help you so you don’t disable elements in use:
Best regards,
MikeMay 11, 2024 at 1:09 pm in reply to: How to Change Dropdown List For Sort By in Shopping Cart Home Page #1442950Hey robertbwc,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function my_woocommerce_catalog_orderby( $orderby ) { unset($orderby["default"]); unset($orderby["menu_order"]); unset($orderby["price"]); unset($orderby["date"]); unset($orderby["popularity"]); unset($orderby["rating"]); unset($orderby["rand"]); unset($orderby["relevance"]); return $orderby; } add_filter( "avf_wc_product_order_dropdown_frontend", "my_woocommerce_catalog_orderby", 20 );
it will remove all except Name & ID
Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thanks, it looks like it has been changed to “Join Us” so I assume that you have sorted it now now?Best regards,
MikeHi,
Try adding the custom class larger-thumbnails to the magazine element that you are using on the page and then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_larger_thumbnails_script() { ?> <script> (function($){ $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('width', '180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('height', '180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry img').attr('sizes', '(max-width: 180px) 100vw, 180px'); $('.av-magazine.larger-thumbnails .av-magazine-entry .av-magazine-thumbnail').css({'height': '180px','width': '180px'}); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_larger_thumbnails_script', 99 );
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHey SandraSquires,
Thank you for the link to your site, I assume that you want to change the text “Join us for Lent 2024” but I’m not sure how you would like to change it, the css snippet above doesn’t offer any clues, please advise.Best regards,
MikeMay 10, 2024 at 5:22 pm in reply to: ASKING FOR A CLIENT We cannot get registered and I have a valid purchase code from Theme Forest #1442892Hey Susan Desko,
Thank you for your patience, in order to register for the support forum the first step is to register here, I assume that you have already tried this, when I check your Purchase Code the check returns: ITEM PURCHASE CODE IS INVALID
perhaps your Purchase Code is incompete, I recommend checking again.
From your post above it sounds like you can not login to your account, if this is true then you will need to contact Envato because they are the only ones that can create licenses, we can not create or provide licenses and our system only checks with Envato if a purchase code is valid, we don’t have access to the Envato backend.Best regards,
MikeMay 10, 2024 at 11:51 am in reply to: Google Maps error: Maps were disabled by the visitor on this site. Click to open #1442878Hi,
Thanks for the login, I’m not sure what could be causing this, but I see that you are using WPRocket, sometimes this has blocked elements if not enough exclusions were added to it’s exclusion field, so to text try disabling this and your lazy load plugin to see if this helps.
I also see that you have a header.php & footer.php file in your child theme, if these do not match the current footer.php & header.php, it will cause errors in your theme, it is the most common reason for errors after updating. Please try enabling the parent theme and see if the map then shows.
I also note that you don’t have a Privacy Policy page enabled and your Privacy and Cookies tabs are missing one:
this is what you should see:
try enabling a Privacy Policy page.Best regards,
MikeHi,
Perhaps we will need to try a different solution, please remove the solution above.Best regards,
MikeHi,
Please include an admin login in the Private Content area so we can examine.Best regards,
MikeHey Pierre,
Thank you for your patience, unfortunately the theme doesn’t have this option, I did find that the Easy Accordion Pro has this feature as shown in this video There may be other plugins that offer shortcodes to do this I’m not sure.
If you would like to request this feature, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.Best regards,
MikeHey Peter,
I’m not sure what could be causing this, but you can try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av-burger-overlay { opacity: 1; }
If you need further assistance please log in to the support forum and open a new thread.
If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.Best regards,
MikeHey williamslyd,
Can you explain more about what you would like to achieve, a caption under the featured image, or over the image like a overlay? Perhaps a mockup would help.Best regards,
MikeHi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey robertbwc,
The thumbnails under the product image is added via the metabox in the edit page:
To add a video under the product image, this space is the product sidebar, so you can add a sidebar widget with a video, if you want this for only one product or a different video for each product the Widget Options plugin will allow you to select which product pages will show which widget elementsBest regards,
Mike -
AuthorPosts