Forum Replies Created
-
AuthorPosts
-
October 28, 2023 at 5:19 pm in reply to: Accessibility issue with image gallery/masonry image gallery #1423978
Hi,
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,
MikeHi,
Glad to hear that you have this sorted out, with Nikko’s 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 23, 2023 at 7:51 pm in reply to: Installing Enfold theme fails due to mising metadata theme name. #1423466Hey abix,
I believe that you have uploaded the Enfold Theme and documentation zip file, please either check your Theme Forest account for the Installable WordPress file only zip file, or extract your current zip file and file the “enfold.zip” inside and installthat file.
Also ensure that your cPanel have the PHP ZipArchive Extension enabled so the zip file can be extracted, it seems some cPanels with PHP v8, don’t have this enabled by default.Best regards,
MikeHey Timothy,
Your error points to this line:$enqueued->registered[ $remove ]->src = '';
in /config-templatebuilder/avia-template-builder/php/class-asset-manager.php
This was also reported by a user that was using the plugin: Asset CleanUp: Page Speed Booster are you using this plugin?
I recommend disabling all of your plugins, besides your Memberpress and see if this helps, if so enable your plugins one at a time to isolate the conflict.
Or you can try the solution in this thread, it seemed to help in 2021, perhaps it will also help you.Best regards,
MikeHey jaimemerz,
Thanks for the link to your page, the browser console shows this error:Google Maps JavaScript API error: ExpiredKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#expired-key-map-error
ExpiredKeyMapError
Please follow the link above, it looks like your API key has exprired, please check and ensure that you have a active payment card on file with Google Maps, perhaps your payment method has expired.Best regards,
MikeOctober 23, 2023 at 7:19 pm in reply to: Is it possible to hide the “All” sorting tag on the accordion? #1423461Hi,
Please try the setting in Guenni007‘s screenshot, thank you Guenni007 :)Best regards,
MikeOctober 23, 2023 at 7:16 pm in reply to: Anchor link from header link to a Slider Revolution slider #1423460Hi,
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,
Glad we were able to help, and thank you for the kind words, 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,
Mike -
AuthorPosts