Forum Replies Created

Viewing 30 posts - 6,031 through 6,060 (of 67,597 total)
  • Author
    Posts
  • in reply to: SEO Changes for core Enfold #1435115

    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!
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Footer not displaying #1435093

    Hi,

    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,
    Ismael

    in reply to: Pagination not working on mobile #1435092

    Hi,

    Great! Good to know that the issue has been fixed. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Non-valid Purchase Key for Support? #1435091

    Hi,

    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,
    Ismael

    in reply to: The internal pages do not enter from the menu #1435090

    Hi,

    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,
    Ismael

    in reply to: My Table isn’t shown truely in mobile #1435089

    Hey 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,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1435088

    Hi,

    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,
    Ismael

    in reply to: No + / – in Smart Quantity Woo Plugin #1435087

    Hey 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,
    Ismael

    in reply to: Dropdown alignment #1435086

    Hi,

    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,
    Ismael

    in reply to: Darstellung Beitrag Seitenbreite #1435085

    Hi,

    No worries! Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Duplizieren und Editieren von Blogbeiträgen #1435084

    Hi,

    No problem! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Carrusel images with title #1435083

    Hey 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,
    Ismael

    in reply to: Blog Layout #1435082

    Hey 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,
    Ismael

    in reply to: remove subcategory/image display above products #1435081

    Hey 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,
    Ismael

    in reply to: Enfold Fullwidth Easy Slider video #1435080

    Hey 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,
    Ismael

    in reply to: Picture and text in a row #1435079

    Hey 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,
    Ismael

    in reply to: SEO Changes for core Enfold #1435078

    Hey!

    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,
    Ismael

    in reply to: No animation in closing x #1434981

    Hi,

    No problem! Please feel free to open another thread if you have more inquiries about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry entries – add metadata #1434980

    Hi,

    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,
    Ismael

    in reply to: URGENT #1434979

    Hi,

    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,
    Ismael

    in reply to: No animation in closing x #1434976

    Hi,

    Add this css code to remove the 2px border on hover.

    div.avia-popup .mfp-close:hover {
        border: 0;
    }
    

    Best regards,
    Ismael

    in reply to: Footer not displaying #1434974

    Hi,

    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,
    Ismael

    in reply to: enfold theme WordPress and not able to import demo sites #1434972

    Hey 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,
    Ismael

    in reply to: Styling Issues after importing Enfold 2017 Theme Demo #1434971

    Hey 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,
    Ismael

    in reply to: Menu mouseover displaced #1434970

    Hi,

    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,
    Ismael

    in reply to: Masonry entries – add metadata #1434963

    Hi,

    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,
    Ismael

    in reply to: Styles don’t load on iPhone #1434960

    Hi,


    @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,
    Ismael

    in reply to: Adress fb and ig buttons in headerline #1434959

    Hi,

    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,
    Ismael

    in reply to: Darstellung Beitrag Seitenbreite #1434958

    Hi,

    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

Viewing 30 posts - 6,031 through 6,060 (of 67,597 total)