Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the link to your site and your patience, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.html_elegant-blog #top.category .post-entry .post-meta-infos { float: none; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for your patience, currently your shopping cart is on the right edge of the screen on desktop and mobile, so I’m not sure what you mean by you want it directly behind the instagram, but you can make the background color of the cart blue with this css:#top .header_color .cart_dropdown_link { background-color: #0098d2; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
The issue seems to be that the google badge message on your form has a min width of 300px and on very small screens this is too large.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 400px) { #top .avia_ajax_form .av-google-badge-message { min-width: 100%; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Unfortunately there is not a way to order the categories in a specific order in the portfolio grid.Best regards,
MikeHi,
Is this the same issue as this thread?
I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:#top .main_color .single_toggle:focus { outline: 0 !important; outline: 0 -webkit-focus-ring-color !important; }Best regards,
MikeHi,
Is this the same issue as this thread?
I’m not seeing a blue line on a Android device, so I believe that what you are seeing is set by your iPhone, I’m not sure where exactly you are seeing this because your video is private, but perhaps this css will help:#top .main_color .single_toggle:focus { outline: 0 !important; outline: 0 -webkit-focus-ring-color !important; }Best regards,
Mike-
This reply was modified 2 years, 1 month ago by
Mike.
Hi,
Glad Ismael could help, please let us know if you need further help or if we should close this thread.Best regards,
MikeHi,
Glad Günter could help, we will go ahead and close this thread as you requested, 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,
MikeOctober 28, 2023 at 5:19 pm in reply to: Accessibility issue with image gallery/masonry image gallery #1423978Hi,
Thank you for your patience, your question seems to be about the masonry image gallery giving an error for “list items” since I’m not able to access this report or the tool, I assume that the tool is referring to a “li” on your page, but the only “li” I find is in the timeline element, perhaps this is the element your report is referring to?
If so I’m not sure what the report means by “semantically as a list”, I tried Googling this but didn’t find an explication of the expected results.
Please check if this is referring to the timeline element and explain what the expected results would be.
I note that the timeline element is not a normal “list item” so I’m not sure that we can change the element to something else like a “div” very easily, if that is wahat the solution will be.Best regards,
MikeHi,
Thank you for the link to your site, when you ask to chang the text color of “Customer”, do you mean after click, or always?
Please try to be specific so we will understand well.Best regards,
MikeOctober 28, 2023 at 3:09 pm in reply to: Linking external images within – product grid, product slider or product list #1423972Hi,
Thank you for your patience and the link to your site, I was able to show the custom field product images (thumbnail_image) on the shop page with this function in your child theme functions.php:function custom_thumbnail_display() { global $product; // Get the "thumbnail_image" custom field value $thumbnail_image_url = get_post_meta( $product->get_id(), 'thumbnail_image', true ); if ( ! empty( $thumbnail_image_url ) ) { // If the custom field has a value, display that image echo '<img class="bcs-thumbnail" src="' . esc_url( $thumbnail_image_url ) . '" alt="' . esc_attr( $product->get_name() ) . '">'; } else { // Otherwise, display the default WooCommerce placeholder image (optional, as WooCommerce will handle it) echo wc_placeholder_img(); } } add_action( 'woocommerce_before_shop_loop_item_title', 'custom_thumbnail_display', 10 );and then I added this css to remove the duplicate woocommerce-placeholder.png when the custom field product image is shown on the shop page
.woocommerce-shop .product .woocommerce-LoopProduct-link .bcs-thumbnail ~ .thumbnail_container { display: none; }So now the result is:

Since you are using the BCS BatchLine Book Importer plugin, the single custom field product main image is shown (main_image) by the plugin, if someone was not using this plugin the custom field product main image could be shown with this function://for the single product main image function custom_single_product_image_html( $html, $attachment_id ) { global $product; // Get the "thumbnail_image" custom field value $thumbnail_image_url = get_post_meta( $product->get_id(), 'main_image', true ); if ( ! empty( $thumbnail_image_url ) ) { // If the custom field has a value, return that image as the main product image $html = '<img src="' . esc_url( $thumbnail_image_url ) . '" alt="' . esc_attr( $product->get_name() ) . '">'; } return $html; } add_filter( 'woocommerce_single_product_image_thumbnail_html', 'custom_single_product_image_html', 10, 2 );perhaps this will be helpful to someone in the future.
Please check your site and let us know if you find this working as my screenshots above, so we can close this thread :)Best regards,
MikeHey navindesigns,
Please update to v5.6.8 and then clear all of your caches, this was addressed in our latest update.Best regards,
MikeOctober 27, 2023 at 5:14 pm in reply to: Link to a Vimeo video should open in a new tab instead of iframe #1423923Hi,
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,
Glad Nikko was 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,
MikeHi,
Very good, if you need further assistance please provide a link to your page so we can examine and assistance further.Best regards,
MikeHi,
Very good, if you find that you need further help then please provide a link to your page so we can examine and assist further.Best regards,
MikeHi,
Glad Nikko was 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,
MikeHi,
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,
MikeOctober 27, 2023 at 12:36 am in reply to: OSM Leaflet Map: only one marker pop-up displaying #1423848Hi,
Thank you for your patience, I tried the WP MapIT plugin with the theme Leaflet option disabled and the MapIT seems to show the same as when the Twenty Twenty-Threetheme is enabled.
On page load the map popups do not show, when to click on the markers the popups show:


I linked to my test page below, please check.Best regards,
MikeHi,
Thank you for your patience and the link to your page, when I look at your #av_section_9, the section that begins with the title: ACCESS the only issue that I see is that the section is not centered, this is because of some custom css that you have added:#av_section_9 .container { max-width: 100% !important; margin: 0 !important; padding: 0 !important; }If you remove this the section will show correctly.
If this is not the issue that you are talking about, please explain further and include a screenshot and admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
The option would look like this:

If you continue to have trouble with this issue please open a new thread and post your admin login in the Private Content area so we can assist, as this is not your thread posting your login here will not be private and you will not see our comments in the Private Content area.
Thank you for your patience and understanding and using Enfold.Best regards,
MikeOctober 26, 2023 at 5:38 pm in reply to: ENFOLD GDRP / General Data Protection Regulation Cookie Settings Multilang #1423816Hi,
Thanks for reporting back the solution you found for Polylang, I’m sure other users may find this helpful. 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,
MikeOctober 25, 2023 at 6:52 pm in reply to: Linking external images within – product grid, product slider or product list #1423727Hi,
Thank you for your patience and for the link to your site, I see that your product imports do not include a “featured image”.
When I check your “custom fields” I see your images for main_image & thumbnail_image, but from what I can see on my demo, the featured image is not stored as a “custom field” but as the thumbnail_id and are refured to by the attachment ID, and since these images are not in your media library they won’t have a attachment ID.
Unfortunately I don’t have a way to test this situation because the standard WordPress import/export file (xml) imports the images into the media library, but your import method doesn’t.
Does your import tool offer any other fields like the thumbnail_id?Best regards,
MikeOctober 25, 2023 at 6:22 pm in reply to: Blog page in portrait orientation iPhone 14 max pro sticks #1423726Hi,
Sorry, but I don’t use any CDNs, so I can’t make any recommends, I think that Guenni007 is pointing out that the domain cloudflareinsights.com is on a AD tracking list, perhaps from some of their users, I’m not sure. As for fixing the CORS issue with them you will need to ask them and your webhost, as I pointed out above. Or you could try not using the CDN at all and see if this helps. Once you stop using them and clear your server cache, it might take a day or so for the files to stop being serve by them.Best regards,
MikeHi,
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,
MikeHi,
If you are not using the LayerSlider pro plugin, please re-enable the theme settings for the built-in layerslider to be used and then try updating the theme to v5.6.8, which came out today (10-24) as it has Layerslider 7.9.1, perhap it will solve the LayerSlider error you are seeing.Best regards,
MikeHi,
Glad that this helped, your new issue seems to be pointing at core WordPress js files in /wp-includes/js/ and may be related to jquery-migrate,
Try checking that Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate is not enabled, if you don’t see the option then your server has disabled it and you should try enabling it. If you don’t see the option then typically you will not see the Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer either, when a server trys to force jQuery to the footer then both of these options are missing from the theme settings.
If you have a caching plugin that trys to Disable jQuery Migrate & Load jQuery in your footer, then disable these options or disable the plugin completely for testing.
It is possible that another plugin is causing a confident, so again try to disable all of your plugins to rule this out.Best regards,
MikeOctober 24, 2023 at 6:24 pm in reply to: Accordion in grid row mobil doesn’t close properly #1423613Hi,
Thank you for your patience, on your /dachdecker/ page I changed the element to Accordion mode and added this css:.togglecontainer .single_toggle { float: none; }and tested on desktop and mobile Android and the issue seems to be solved now.
Please note that if you are testing with an iPhone it can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
Please check.Best regards,
Mike -
This reply was modified 2 years, 1 month ago by
-
AuthorPosts




