Forum Replies Created

Viewing 30 posts - 5,881 through 5,910 (of 67,463 total)
  • Author
    Posts
  • in reply to: Mobile View Image Display Issue in Grid View #1435401

    Hi,

    Thank you for the info.

    We cannot find any Grid Row element or cells in the page. Where did you add the element? Would you mind providing a screenshot of the issue? 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: Masonry entries – add metadata #1435398

    Hi,

    Have you tried applying a minimum height to the caption content? Please try to add this code in the Quick CSS field.

    .av-masonry-entry .av-inner-masonry-content {
        min-height: 130px;
    }
    

    Best regards,
    Ismael

    in reply to: Few questions with Minimal Portfolio theme #1435397

    Hey joschro,

    Thank you for the inquiry.

    1.) You can set the Content > Sorting > Order settings to Page Order, then add this code to the functions.php file to enable the Order field for the portfolio items. You can then manually adjust the order of the items in the grid by modifying the Order field.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    // https://wordpress.com/support/pages/page-attributes/#access-page-attributes

    2.) The recommended size is 450x450px, but it may vary depending on the number of columns.

    3-4.) Yes, you have to use the Portfolio Grid element in the Advance Layout Builder to display your portfolio items.

    Best regards,
    Ismael

    in reply to: Can’t load the page #1435393

    Hey Erin,

    Thank you for the inquiry.

    You need to set the home or front page in the Enfold > Theme Options > Frontpage Settings. Please reset the options in the Settings > Reading or the Appearance > Customize panel to default, then configure the settings as described.

    Best regards,
    Ismael

    in reply to: Masonry: AND rule for category selection returns no results #1435388

    Hey enoversum,

    Thank you for the inquiry.

    Please note that when you set the Terms Relation to AND, your posts must belong to the selected categories for them to display in the list. If you have two categories, for example, the posts should belong to both categories. Is this how your posts are set up? If not, you have to set it back to OR.

    Best regards,
    Ismael

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

    Hi,

    Thank you for the update.

    You can upload the image for the banner in the Products > Categories panel. Edit a category, then look for the Thumbnail section.

    Best regards,
    Ismael

    in reply to: Blog: Add header (transparent) to Archive page #1435176

    Hey!

    You can add this filter to disable the sidebar on search pages.

    function avia_change_sidebar_layout($layout, $post_id)
    {
        if ( is_search() ) {
            $layout['current'] = $layout['fullsize'];
            $layout['current']['main'] = 'fullsize';
        }
        return $layout;
    }
    add_filter('avia_layout_filter', 'avia_change_sidebar_layout', 10, 2);

    Regards,
    Ismael

    in reply to: Blog Layout #1435175

    Hi,


    @northorie
    : Would you mind providing a screenshot of the changes that you’d like to make? 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

    Hey liuxuewu,

    Thank you for the inquiry.

    The support forum is a modified version of bbPress. Unfortunately, these modifications are not included in the theme by default and would require a significant amount of time and modifications to implement. Regrettably, this level of customization is not covered by our support. However, if it is crucial for you to have this functionality implemented, you have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.

    If you have any other questions or require further assistance, please feel free to let us know.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    As suggested above, you can apply a custom class name to the Accordion elements and re-initialize the lightbox script in order to group the items. Please edit all Accordion elements in the page, then go to the Advanced > Developer Settings. In the Custom CSS Class name field, place the value ‘accordion-lightbox-group’. After editing all Accordion elements, add this code in the functions.php file.

    function ava_custom_script_group_lightbox()
    {
        ?>
        <script>
        (function($){
            function g() {
                var accordion = $('.accordion-lightbox-group')
    
                accordion.each(function() {
                    var srcList = [];
                    var slider = $(this)
    
                    slider.find('li a').each(function() {
                        var src = $(this).attr('href');
                        var title = $(this).attr('title');
                        var alt = $(this).attr('alt');
                        srcList.push({ src: src, type: 'image', title: title, alt: alt });
                    });
    
                    slider.magnificPopup({
                        items: srcList,
                        type: 'image',
                        gallery: {enabled: true}
                    });         
                });
            }
        
            $(document).ready(function() {
                g();
            });
        })(jQuery);
        </script>
        <?php
    }
    add_action('wp_footer', 'ava_custom_script_group_lightbox');
    

    If this doesn’t work as expected, try to edit the enfold/js/avia-snippet-lightbox.js, look for this code:

    var alt = item.el.attr('alt');
                        if (typeof alt == "undefined")
                        {
                            alt = item.el.find('img').attr('alt');
                        }
    
                        if (typeof alt != "undefined")
                        {
                            img.attr('alt', alt);
                        }
    

    Replace it with:

    if (item.el)
                    {
                        var alt = item.el.attr('alt');
                        if (typeof alt == "undefined")
                        {
                            alt = item.el.find('img').attr('alt');
                        }
    
                        if (typeof alt != "undefined")
                        {
                            img.attr('alt', alt);
                        }
                    }
    

    Best regards,
    Ismael

    in reply to: Technical issue #1435164

    Hey Benoit Roussialz,

    Thank you for the inquiry.

    Where can we view the site? Please share the site URL in a private field. Have you tried to run tests using Google PageSpeed Insights or GTmetrix?

    Best regards,
    Ismael

    in reply to: social icon in header on mobile #1435163

    Hi,

    Thank you for the inquiry.

    Social bookmark icons are hidden on mobile devices by default. If you want to display it back, please add this css code.

    @media only screen and (max-width: 479px) {
    
      .responsive #top #wrap_all #header_meta .social_bookmarks {
        display: block;
        float: left;
        width: 30%;
        padding: 0;
        margin: 0;
      }
    
      .responsive #top #header_meta .social_bookmarks li {
        border: 0;
      }
    
      .responsive #top #wrap_all #header_meta .phone-info {
        width: 70%;
        float: left;
        clear: none;
      }
    }

    Best regards,
    Ismael

    in reply to: Accordion Slider Breite #1435162

    Hey Andrea,

    Thank you for the inquiry.

    You can add this code in the Enfold > General Styling > Quick CSS field to apply borders to the accordion slider.

    .aviaccordion.avia-accordion.av-20kk09-5e9d8a8cecdc150ba53caa6aa5560059 {
        border-left: 3px solid red;
        border-right: 3px solid red;
    }

    Best regards,
    Ismael

    in reply to: menu help #1435161

    Hey josh,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the button that you’d like to remove? 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: Styling Issues after importing Enfold 2017 Theme Demo #1435160

    Hi,

    Thank you for the update.

    Have you tried uploading the child theme via S/FTP? Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install
    // https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-theme

    Best regards,
    Ismael

    in reply to: Spinning Circle When Adding HTML #1435159

    Hey sophiasbiti,

    Thank you for the inquiry.

    Are you inserting scripts or input tags within the Code Block element? Please note that such tags could break the builder’s functionality and are not recommended. You might have to create a custom shortcode for handling these script and input tags, instead of adding them directly to the builder.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    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

Viewing 30 posts - 5,881 through 5,910 (of 67,463 total)