Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for the update.
1.) The value “mainContentOfPage” is a valid schema.org item property for indicating the main content of a webpage. For more information on schema.org’s WebPage type and its properties, you can refer to the official documentation at https://schema.org/WebPage.
2.) The theme doesn’t really impose strict limitations on how users build their pages, so they are not limited to elements that applies images as background. We recommend using elements that make use of HTML img tags, such as an Image element, rather than applying background images to Color Sections.
3.) If you’ve experienced a decline in your site’s search engine ranking, it may be best to seek assistance from an SEO consultant. While the theme includes basic schema markup to help search engines understand the structure of your content, you may need more specific schema markup for certain types of content or data. You might want to look for a dedicated schema markup plugin or extension for a more accurate schema markup suited to your site.
4.) We modified the filter a bit to make sure that it recognizes the value of the attachment attribute in the Image element.
// https://pastebin.com/hpZ7V3pU
With this modification, Yoast was able to recognize the Image, Gallery and Slider elements in the page as shown in the screenshots below. The page has 3 Image elements, a Gallery with 5 items, and an Easy Slider with 3 slides, total of 11 images: https://1drv.ms/f/s!AjjTfXSRbKTvgtxfLx7TxBKZnZrGyw?e=NgYxo2
Cheers!
IsmaelFebruary 22, 2024 at 7:43 am in reply to: searching for a topic in the forum results in critical error on this website #1435094Hey!
Good to know! Please feel free to open another thread if you can’t find what you’re looking for in the forum.
Have a nice day.
Regards,
IsmaelHi,
Good to know that the footer issue has been resolved. Regarding the formatting, the home page on the development site looks exactly the same as in the live site. If you encounter minor styling issues, try toggling or temporarily disabling the Enfold > Performance > File Compression settings, then purge the cache.
Best regards,
IsmaelHi,
Great! Good to know that the issue has been fixed. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Great to hear that the issue has been resolved! Please feel free to start a new thread if you have any further questions or need assistance with the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Would you mind elaborating more on the issue or providing a short clip? The main or side menu seems to be functioning as expected. If you’re trying to add items to the main menu, you can do so in the Appearance > Menus panel.
Best regards,
IsmaelHey NastaranMazloumi,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue or a link to the page containing the table element? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
Thank you for the link.
The column containing the Widget Area is being pushed down by the Special Heading element. You need to place the Special Heading element inside the content column or the adjacent column, beside the one containing the Widget Area.
Best regards,
IsmaelHey netztaucher,
Thank you for the inquiry.
You may need to edit the enfold/config-woocommerce/woocommerce-mod.js file and remove this code around line 131 to disable the custom quantity buttons:
avia_apply_quant_btn(); //if the cart gets updated via ajax (woocommerce 2.6 and higher) we need to re apply the +/- buttons $( document ).on( 'updated_cart_totals', avia_apply_quant_btn );Make sure to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.
Best regards,
IsmaelHi,
Thank you for the update.
Did you create another button for mobile view? You may need to adjust the side padding of the button to make room for the icon and text.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .dropdown { padding: 10px 20px; } }Best regards,
IsmaelHi,
No worries! Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
No problem! Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey carmen,
Thank you for the inquiry.
This is possible but you have to modify the enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.php file, look for this code around line 786:
$img_tag = "<img class='av-horizontal-gallery-img' width='{$img[1]}' height='{$img[2]}' src='{$img[0]}' title='{$title}' alt='{$alt}' />"; $img_tag = Av_Responsive_Images()->prepare_single_image( $img_tag, $attachment->ID, $lazy_loading ); $output .= $img_tag;Replace it with:
$img_tag = "<img class='av-horizontal-gallery-img' width='{$img[1]}' height='{$img[2]}' src='{$img[0]}' title='{$title}' alt='{$alt}' />"; $img_tag = Av_Responsive_Images()->prepare_single_image( $img_tag, $attachment->ID, $lazy_loading ); $image_caption = wp_get_attachment_caption( $attachment->ID ); $output .= '<div class="image-container">'; $output .= $img_tag; $output .= '<div class="image-caption">'; $output .= '<h4>' . get_the_title( $attachment->ID ) . '</h4>'; // Include title $output .= '<p>' . $image_caption . '</p>'; // Include caption $output .= '</div>'; $output .= '</div>';Best regards,
IsmaelHey northorie,
Thank you for the inquiry.
Have you tried increasing the top padding of the second cell containing the Blog Posts element? You can also add this css code.
.flex_cell.av-lsvwj3of-18478217b22834a47eecc5a153470720 { padding-top: 100px; }Best regards,
IsmaelHey holstchristoph,
Thank you for the inquiry.
You can add this css code to hide the sorting buttons.
.product-sorting { display: none; }And to remove the category thumbnails, add this code.
.tax-product_cat .page-thumb { display: none; }Best regards,
IsmaelHey sunhouse_ops,
Thank you for the inquiry.
Background videos on Slider or Color Section elements are disabled on mobile devices by default. You will need to apply a fallback image. If you really need the video to display on mobile view, you can replace the slider with a Video element or the Layer Slider element. Make sure that the video is muted to enable autoplay.
Best regards,
IsmaelHey northorie,
Thank you for the inquiry.
The padding is applied by this css rule.
.responsive #top #wrap_all .av-flex-cells .no_margin { display: block; margin: 0; height: auto !important; overflow: hidden; padding-left: 8% !important; padding-right: 8% !important; }You can override it with this css code.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .av-flex-cells .no_margin { padding-left: 0% !important; padding-right: 0% !important; } }Best regards,
IsmaelHey!
Regarding #4, there is a function called avia_filter_wpseo_sitemap_urlimages, which extracts mage IDs from image or slider elements in the ALB, and push them to the wpseo_sitemap_urlimages filter for registration in the Yoast sitemap. To register more ALB elements such as sliders, you can use the avf_add_elements_wpseo_sitemap filter in the functions.php file:
Related thread: https://kriesi.at/support/topic/how-to-make-images-in-masonry-gallery-to-be-indexed-in-seo-yoast-sitemap/
Thank you for your patience.
Regards,
IsmaelHi,
No problem! Please feel free to open another thread if you have more inquiries about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The post dates and categories should also display below the title when the Content > Captions > Element Title and Excerpt is enabled or when it is set to Display Title and Excerpt. Please check the screenshot in the private field.
Did you create a custom post type? If you did, then you can try this filter in the functions.php file:
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 ); function avf_masonry_loop_prepare_mod_cat( $key, $entries ) { $categories = get_the_category($key['ID']); $separator = ' '; $output = ' <div class="masonry-cat">'; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator; } } $output .= '</div>'; $post_date = get_the_date( '', $key['ID'] ); $output .= '<div class="masonry-date">' . $post_date . '</div>'; $author_id = $key['post_author']; $author_name = get_the_author_meta( 'display_name', $author_id ); $output .= '<div class="masonry-author">' . $author_name . '</div>'; $key['text_after'] .= trim( $output, $separator ); return $key; }Best regards,
IsmaelHi,
Thank you for the update.
We’ve noticed that the stylesheets are compressed or minified with a different file name (style-static). Did you install a different file compression plugin? This issue might be due to the file compression plugin or its settings. Please consider disabling the compression and cache plugin temporarily. Then, toggle the Enfold > Performance > File Compression or turn it off completely.
Best regards,
IsmaelHi,
Add this css code to remove the 2px border on hover.
div.avia-popup .mfp-close:hover { border: 0; }Best regards,
IsmaelHi,
Thank you for the update.
The Appearance > Theme File Editor is not accessible when we checked the dashboard, and we noticed that the site contains an older version of the theme. Please upgrade the theme to version 5.6.10, then provide the S/FTP details in the private field so that we check the issue properly.
Best regards,
IsmaelFebruary 21, 2024 at 9:56 am in reply to: enfold theme WordPress and not able to import demo sites #1434972Hey bob hense,
Thank you for the inquiry.
Do you encounter any errors when importing the demo? Please provide the admin information in the private field so that we can test the demo import. In the meantime, you can register a new account using your purchase code via the following link.
// https://kriesi.at/support/register/
Best regards,
IsmaelFebruary 21, 2024 at 9:53 am in reply to: Styling Issues after importing Enfold 2017 Theme Demo #1434971Hey Eric,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website. Let us know if this helps.
Best regards,
IsmaelHi,
Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The category and post date are already included in the masonry element, but the author info is not. If you want to include the author name, you can add this filter in the functions.php file.
add_filter("avf_masonry_entry_content", function($content, $entry, $config) { $author_name = get_the_author_meta('display_name', $entry["post_author"]); $separator = ' '; $output = ''; if ( ! empty( $author_name ) ) { $output = '<b><em>' . esc_html( $author_name ) . '</em></b>'; $content = $output . $content; } return $content; }, 10, 3);Best regards,
IsmaelHi,
@Nihru: If you’re using a cache plugin with compression enabled, consider disabling the Enfold > Performance > File Compression settings to prevent conflicts, or vice versa. If the issue persists, please start a new thread and provide login information in the private field.@gatica: Thank you for sharing the information! Glad to hear that you were able to resolve the issue. Please let us know if you have more questions.
Have a nice day!
Best regards,
IsmaelHi,
Thank you for the update.
The page is not loading on our end, and it doesn’t seem to exist.
when the site uses fullscreen and the custom widget, it doesn’t start at the top
What do you mean? Please provide a screenshot using Savvyify, Imgur, or Dropbox.
Best regards,
IsmaelHi,
Thank you for the update.
Please note that when you switch to the Advanced Layout Builder (ALB), all default elements, including the featured image, post meta info, etc., will no longer display. This is probably why you’re not seeing the preview or featured image. You have to add this content manually using the elements in the builder. For the featured image, you can use an Image element or any of the Slider elements in the Media Elements tab.
Best regards,
Ismael -
AuthorPosts
