Forum Replies Created
-
AuthorPosts
-
Hi,
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 15, 2023 at 10:19 pm in reply to: Blog page in portrait orientation iPhone 14 max pro sticks #1422599Hi,
These are the “warnings” that I see in Firefox on Windows:

these would not keep your site from scrolling.
Above your wrote that you see: Uncaught ReferenceError: jQuery is not defined for a WordPress core file /wp-includes/js/mediaelement/wp-mediaelement.min.js this file is for videos and audios, so I don’t think it would be a scrolling issue, but it’s odd that I don’t see this error.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,
MikeHey Oriano,
Thanks for your patience and the link to your site, as I understand your request, you want the author names in the grid to show as inline so they are not on multiple lines, this can be achieved with this css:.pa_autore p { display: inline; }I added this for you:

The trouble is adding the commas between the names, but not if there is only one name, or after the last name, but I believe that I achieved this:

Please clear your browser cache and check.
This is the full updated code://Display_custom_attribute_in_product_grid add_action('woocommerce_after_shop_loop_item_title', 'display_custom_attribute_in_product_grid', 5); function display_custom_attribute_in_product_grid(){ // define the desired product attributes to be displayed $defined_attributes = array('autore'); global $product; $attributes = $product->get_attributes(); if ( ! $attributes ) { return; } $out = '<span class="product-attributes">'; foreach ( $attributes as $attribute ) { $attribute_slug = str_replace( 'pa_', '', $attribute->get_name() ); if ( ! in_array($attribute_slug, $defined_attributes) ) { continue; } if ( $attribute->get_variation() ) { continue; } $name = $attribute->get_name(); if ( $attribute->is_taxonomy() ) { $terms = wp_get_post_terms( $product->get_id(), $name, 'all' ); $tax = $terms[0]->taxonomy; $tax_object = get_taxonomy($tax); if ( isset ( $tax_object->labels->singular_name ) ) { $tax_label = $tax_object->labels->singular_name; } elseif ( isset( $tax_object->label ) ) { $tax_label = $tax_object->label; if ( 0 === strpos( $tax_label, 'Product ' ) ) { $tax_label = substr( $tax_label, 8 ); } } $out .= '<span class="' . esc_attr( $name ) . '"style="width:100%" >'; $tax_terms = array(); foreach ( $terms as $term ) { $single_term = array('name' => esc_html( $term->name ), 'url' => get_term_link($term->term_id, $name)); array_push( $tax_terms, $single_term ); } $author_names = array(); foreach ($tax_terms as $term) { $author_names[] = $term['name']; } $author_count = count($author_names); if ($author_count > 1) { $author_list = implode(', ', array_slice($author_names, 0, -1)) . ', ' . end($author_names); } else { $author_list = $author_names[0]; } $out .= '<p data-url="' . $term['url'] . '" class="attribute-value" style="margin:0">' . $author_list . '</p>'; } else { $value_string = implode( ', ', $attribute->get_options() ); $out .= '<span class="' . sanitize_title($name) . ' ' . sanitize_title( $value_string ) . '">'; } } $out .= '</span>'; echo $out; }Best regards,
MikeHey Celeranttechnologycorp,
Thanks for your patience and the link to your site, it looks like your blog page has beed created with a plugin or custom shortcode because it is shown in a code block element, I don’t see any reference to authors on this page. On your post I see that it has been created with the Advanced Layout Builder and the Post Metadata element, as you are using a Custom Post Type did you choose the post in the element options, or was the CPT not available in the options?

Best regards,
MikeOctober 15, 2023 at 8:25 pm in reply to: Blog page in portrait orientation iPhone 14 max pro sticks #1422585Hi,
I don’t see any of those in the browser console when I check, are we still talking about the issue: iphone in portrait orientation, the blog page will not scroll beyond the image for the first post on your /blog/ page?
I only have an Android and I find no errors when scrolling your page, if you like I can ask the team to check your page with an iphone, perhaps it is a specific issue with iphones?Best regards,
MikeHey Sebastian,
For product category pages you would use is_product_category() I added this to your child theme functions.php for you, but I removed the breadcrumb shortcode as it didn’t make sense to show this on a category page, feel free to adjust to suit.
This is the code I added:function add_custom_header_image_to_categories() { if ( is_product_category() ) { ?> <div class="single-header-image-woo"><br><br></div> <?php } } add_action( 'woocommerce_before_main_content', 'add_custom_header_image_to_categories', 10 );Best regards,
MikeOctober 15, 2023 at 6:35 pm in reply to: Blog page in portrait orientation iPhone 14 max pro sticks #1422578Hi,
I mean in the browser console when you check in Dev Tools, I don’t think page speed insights would show these errors.Best regards,
MikeHi,
Thanks for your question, I tried to recreate this error with a Google Map iframe for Boston Ma in a code block element,
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d188820.5492695243!2d-70.97028399999999!3d42.31434995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e3652d0d3d311b%3A0x787cbf240162e8a0!2sBoston%2C%20MA!5e0!3m2!1sen!2sus!4v1697385152217!5m2!1sen!2sus" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
I also tested in a text element and tried to edit the page many times, make changes and save and view the frontend and then edit again, but I was not able to create an error.
My test site has no plugins, so perhaps yo can try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
Sometimes javascript in a code block element will run in the backend (editor) and cause errors, if you have any other code blocks on the page with javascript try removing them and checking again.
If you find it’s a plugin or something else that you can’t do without, you can try to add the map iframe as a shortcode as a workaround.
For example, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_iframe_shortcode($atts) { $iframe_src = esc_url($atts['src']); if (!$iframe_src) { return 'Please provide a valid src URL in the shortcode.'; } $iframe_html = '<iframe src="' . $iframe_src . '"width="100%" height="600px" frameborder="0" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>'; return $iframe_html; } add_shortcode('iframe', 'custom_iframe_shortcode');notice in the code above I set the iframe width to 100% and the height to 600px, you can adjust to suit.
Then in your code block add this shortcode:[iframe src="https://www.example.com"]I added my map url like this:
[iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d188820.5492695243!2d-70.97028399999999!3d42.31434995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e3652d0d3d311b%3A0x787cbf240162e8a0!2sBoston%2C%20MA!5e0!3m2!1sen!2sus!4v1697385152217!5m2!1sen!2sus"]
Perhaps this will help you.Best regards,
MikeOctober 15, 2023 at 5:48 pm in reply to: Bug: additional class for blog page nested pagination #1422570Hi,
Very good, thanks for your explanation, I’m sure it will have other users investigate these plugins further.Best regards,
MikeOctober 15, 2023 at 5:40 pm in reply to: Import: Agency – Enfold Parallax Demo , I’m getting demo installation error #1422569Hi,
Ok, Please include an admin login & FTP access in the Private Content area and I will try to install the Enfold Parallax Demo for you.Best regards,
MikeOctober 15, 2023 at 5:37 pm in reply to: Duplicated Burger Icon and more padding to each nav item #1422566October 15, 2023 at 5:34 pm in reply to: Bug: additional class for blog page nested pagination #1422564Hi,
Thank you for sharing your solution, it looks like Auto Infinite Scroll from WP Intense is a paid plugin, I didn’t find a free version for it, but I imagine that you have found it helpful due to the time you put into getting it to work with Enfold, thanks I’m sure others in the future will appreciate your effort. Do you want this thread to remain open to answer future questions, or shall we close it?Best regards,
MikeOctober 15, 2023 at 5:21 pm in reply to: Import: Agency – Enfold Parallax Demo , I’m getting demo installation error #1422561October 15, 2023 at 5:19 pm in reply to: Duplicated Burger Icon and more padding to each nav item #1422560Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #header_main_alternate .avia_mega_div .current-menu-item { background-color: #fff; } #top #header .av-main-nav > li > a { width: 100%; text-align: center; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeOctober 15, 2023 at 4:39 pm in reply to: Enfold Theme Problem: non-JS module / ERR_CONNECTION_CLOSED #1422556Hi,
Thanks for this login and the link to your page, I tried editing the last text block element with the test text and saved, but I didn’t see any errors, I was using the Chrome browser on Windows, what are you using?
I note that most all of your text blocks contain this strange code: <span data-sheets-value=”{” data-sheets-userformat=”{“> when you view the text blocks in the “text” tab:

and on the frontend this code doesn’t seem to add anything useful:

Did you know this code was added? Did you paste the text from somewhere else and the code from that source was added? I recommend removing the code and see if this solves your issue.Best regards,
MikeOctober 15, 2023 at 3:56 pm in reply to: Error translating the theme with Loco Translate plugin #1422552Hey mariosalgado80,
Thank you for your patience and the link to your site, I don’t have any experience with the Loco Translate plugin, but I looked at each section in your plugin settings and for your pages and I didn’t see your notice above anywhere, I believe this is just telling you that the automatic translation may be limited and you will need to manully need to translate some of your pages, this may be true for pages created with the Advanced Layout Builder as many plugins have trouble reading the shortcode.
Enfold supports WPML, please see our documentation here.
Perhaps this video will help you: Quick Steps To Translate Your Theme Using Loco TranslateBest regards,
MikeHey Daniel Patriasz,
Thanks for your patience, try enabling the option at Enfold Theme Options ▸ SEO Support ▸ Search Engine Optimization Support ▸ Preprocessing Shortcodes In Header typically this helps but there are some limitations with the Yoast Pro plugin and the pages created with the Advanced Layout Builder.Best regards,
MikeOctober 15, 2023 at 3:00 pm in reply to: Using blog post element with Grid Layout, images on mobile are not lazy-loaded #1422548Hey gatehealing,
Thanks for your patience, I see that the lazyload classes are present on the images, perhaps your caching plugin doesn’t recognize them, try disability your caching plugin and then check again, if this doesn’t help try following the Page Speed Insights recommendation of installing a lazy-load WordPress plugin and disable the theme lazyload option.
Another point could be that either your caching plugin or the option in the theme settings has disable jQuery Migrate or has deferred the loading of jQuery, this could prevent the teeme lazyload from working, so a good please to start testing would be to disable the caching plugin, and any other “optimizing” plugins, and then ensure the Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer and Enfold Theme Options ▸ Performance ▸ Disable jQuery Migrate are not enabled.
and then check again to see if that helps.Best regards,
MikeHi,
Please note that the /xmlrpc.php is not public use, see this post. So you don’t want it to show as a backlink, and it should correctly show as broken.
You didn’t say where you are seeing the backlink to /xmlrpc.php, I assume that it is in your Google search console, if so you can just ingore these.
If you follow the steps above then it will take time for Google to stop looking at this link.
According to this post the /xmlrpc.php 405 error doesn’t effect SERPS.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,
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,
Thanks for the login, I see that you have many plugins that are reporting updates available. On my test site Enfold is working correctly with PHP v8.2 with no errors.
On your staging site please try disabling all of your plugin and then update the PHP to v8.2 and see if this works for you.
If not check your PHP extensions and compare the v7.4 & v8.2 enabled extensions, some servers don’t have all of the extension needed enabled in v8.2 suce as the “zip” extension, so perhaps there is one that you need to enable, this is an example of the panel in a cPanel host, yours may be different.

If this doesn’t help perhaps a screenshot of the error that you see would help.Best regards,
MikeHey extraeyes,
/xmlrpc.php ▸ XML-RPC server accepts POST requests only. = this should not be a backlink
please see this article: How to Disable XML-RPC in WordPress
The card-cc-plain.svg is a 404, no image found, even though the payment works the image is not found, try using FTP to find the card-cc-plain.svg image in the woocommerce-square plugin and place in the correct path or ask the plugin author to give you a copy of it so you can add it to your site, perhaps they forgot to add it to the plugin?Best regards,
MikeOctober 15, 2023 at 12:06 am in reply to: Import: Agency – Enfold Parallax Demo , I’m getting demo installation error #1422503Hi,
Sometimes this is caused by the PHP ZipArchive Extension not enabled on the server, other times it is due to the WebHost has blocked our IP so the install can’t get the files (OVH) unfortunately OVH has told users they will not whitelist our IP.
If you are using OVH try installing the demo on a localhost and then use the Duplicator plugin to move to your webhost.
If the is not your case try following our documentation to manually install the demo, but please note that this still gets the files via the WordPress import xml file from our IP, so if your webhost has blocked our IP this won’t help.Best regards,
MikeOctober 14, 2023 at 11:55 pm in reply to: Backend issue: Avaia Layout Builder conceals WordPress settings bar #1422501Hi,
Glad to hear, it may take a couple of days to hear from the Dev Team as it is the weekend, but we will reply when we have a solution. Thank you for your patience.Best regards,
MikeOctober 14, 2023 at 11:45 pm in reply to: Enfold (5.6.6) – Empty divs creating large white gap between elements #1422500Hey CJG1979,
The extra div’s are in a text block element, perhaps they were added with the [Enter] key or if you pasted text into the element, try switching to the “text” tab and manually remove them:

When I check your site now I see a large white space after your slider, this looks the error caused by the Smush plugin, if you have this plugin installed try disabling the “lazy load” option or disable the plugin and check if this helps.
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
Mike -
AuthorPosts

