Forum Replies Created

Viewing 30 posts - 151 through 180 (of 65,998 total)
  • Author
    Posts
  • in reply to: Customize blog grid #1485107

    Hi,

    If you need the buttons and post meta info (date, comments) to align, you can either apply a minimum height to the post title and excerpt, or make sure they have the same number of characters, which is probably not ideal. To do the former, you can add the following css code:

    #top .avia-content-slider .slide-entry-title {
        min-height: 118px;
    }

    In the end, the position of the “read more” button will depend on the length of the title and post excerpt.

    Best regards,
    Ismael

    in reply to: Where is “read more” section? #1485106

    Hey bbarasa,

    Thank you for the inquiry.

    You might be referring to the Fold/Unfold option. This is available in elements such as Text Block, Color Section and Grid Row. Please check the screenshot below.

    View post on imgur.com

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: shortcodes not rendered on frontpage #1485104

    Hi,

    The shortcodes [list-pages], [sibling-pages] and [child-pages] are not included in WordPress by default. To use these shortcodes, you’ll need to install a plugin called “List Pages Shortcode”.

    When we added a WPForms shortcode to the code block element, the contact form rendered correctly, confirming that shortcodes are functioning as expected.

    View post on imgur.com

    This a list of available WordPress shortcodes:

    https://wordpress.com/support/wordpress-editor/blocks/shortcode-block/#available-shortcodes

    Best regards,
    Ismael

    in reply to: Search Icon To Main Menu don’t work #1485103

    Hey Oriano,

    Thank you for the inquiry.

    We’re not able to reproduce the issue on our end. Have you tried overriding the css or the position property in the Quick CSS field?

    View post on imgur.com

    Please provide the site details in the private field so we can further check the issue.

    Best regards,
    Ismael

    Hi,

    At first, it’s probably a trade-off between quality and performance when it comes to images. The filter we suggested above was added to balance the two and give users the option to adjust them based on their requirements. If we’re not mistaken, setting the quality to the maximum didn’t previously result in thumbnails with overly large file sizes, or we would never have set it as the default. It’s only recently that this has been happening or reported. Please keep the quality around 70 for now, then use an image compression plugin (Smush, Shortpixel etc) to further optimize the images.

    We’ll forward this thread to our channel.

    Best regards,
    Ismael

    in reply to: Customize blog grid #1485101

    Hey itsjona,

    Thank you for the inquiry.

    Did you add this css code?

    .slide-image {
        display: block;
        height: 400px;
        line-height: 400px;
        overflow: hidden;
    }

    This stretches the height of the image container, creating space between it and the post title. Please remove the css or adjust the values of the height and line-height properties.

    Best regards,
    Ismael

    in reply to: Elements in rows /// desktop to mobile #1485100

    Hi,

    If you want the left image to be taller or larger on smaller screen sizes, try adding another image element with a taller aspect ratio. The current image is a bit square and gets squeezed disproportionately in height compared to the right widget because it’s inside a smaller column (1/4 width). After adding the other image, you can toggle the visibility of both images on different screen sizes using Advanced > Responsive > Element Visibility options.

    You can also add this css code to adjust the width of the column containing the image.

    @media only screen and (max-width: 1024px) {
    
      /* Add your Mobile Styles here */
      #top .flex_column.av-acgfsc-cb6752318e4619c3295e6429d893dcfc {
        width: 50%;
        margin-left: 0;
      }
    }

    After adding the css:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Editor field does not exist #1485099

    Hi,

    Where and how did you log in? We can’t access the server using the provided FTP login credentials.

    Best regards,
    Ismael

    in reply to: Image full width #1485098

    Hi,

    Thank you for the update.

    We didn’t toggle or adjust any options in the Fullscreen Slider. We completely replaced it with the Fullwidth Slider element instead. Please note that these are two different sliders.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Masonry Grid pulling all categories to filter #1485097

    Hi,

    For additional categories, you will need to manually add the sort category class name selectors (e.g., .commercial-retail_sort_button, .education_sort_button, etc.) to the css we suggested above.

    You can also try adding this filter to the functions.php file to return only parent terms or categories.

    function avf_masonry_term_args_mod( $term_args, $context, $params, $ajax ) {
        // retrieve parent terms only
        $term_args['parent'] = 0;
        return $term_args;
    }
    add_filter( 'avf_masonry_term_args', 'avf_masonry_term_args_mod', 10, 4 );
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Website will not keep contant #1485096

    Hey alvarannikki,

    Thank you for the inquiry.

    Did you add any html tags to the page? It’s possible that there are invalid or improperly closed tags, which may be breaking the content in the builder. Please make sure that all html tags are valid and properly closed. If the issue persists, provide the login details in the private field so we can check the builder.

    Best regards,
    Ismael

    in reply to: Content will not stay on our website #1485095

    Hey Andreas Indicatii,

    Thank you for the inquiry.

    Did you add any html tags to the page? It’s possible that there are invalid or improperly closed tags, which may be breaking the content in the builder. Please make sure that all html tags are valid and properly closed. If the issue persists, provide the login details in the private field so we can check the builder.

    Best regards,
    Ismael

    in reply to: Google Map Tooltip Size Issue #1485062

    Hi,

    Thank you for the screenshot.

    We may need to log in to the site so we can investigate the issue further. Please provide the login details in the private field. Did you install any plugins related to maps or Google services? What happens when you deactivate the plugins?

    Best regards,
    Ismael

    in reply to: Editor field does not exist #1485061

    Hi,

    Thank you for the update.

    We tried logging in to the server but we couldn’t connect using the login info provided above. Could you please check if it’s correct?

    Best regards,
    Ismael

    in reply to: Enfold Hotel #1485060

    Hey Andrea Haderer,

    Thank you for the inquiry.

    The Hotel demo uses the Woocommerce plugin along with the Woocommerce Bookings extension, which adds booking and reservation functionality. You can learn more about how it works in the following documentation.

    — https://woocommerce.com/document/introduction-to-woocommerce-bookings/

    Let us know if you need more info.

    Best regards,
    Ismael

    in reply to: shortcodes not rendered on frontpage #1485059

    Hey slikslok,

    Thank you for the inquiry.

    Are you using the Page-list plugin? Please provide the login details in the private field so we can check the issue further. Make sure that the Appearance > Theme File Editor is accessible.

    Best regards,
    Ismael

    in reply to: Disable Animation Above the Fold on Homepage #1485058

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: updating old Enfold theme #1485057

    Hey Duncan P Mandel,

    Thank you for the inquiry.

    Unfortunately, don’t provide assistance with theme updates, especially when the site has been heavily modified. Also, the current version is quite outdated, which may lead to unexpected errors during the update process. We recommend creating a site backup before proceeding with the update.

    You can refer to this documentation for instructions on how to update the theme manually via FTP:

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    If you need further help with this, you may consider Codeable for more assistance:

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: 7 Spalten Mega Menu #1485056

    Hi,

    Thank you for the update.

    We get this error when we try to access the PDF file.

    View post on imgur.com

    Unfortunately, we don’t offer support for this type of modification. You may need to hire a freelance developer or reach out to Codeable for assistance.

    https://kriesi.at/contact/customization

    Best regards,
    Ismael

    in reply to: Account Icon in Header – Link Problem #1485055

    Hi,

    Thank you for the screenshot. Did you create a “my-account” page and set it as the default account page in the Woocommerce > Settings > Advanced > My account page settings? Please check the screenshot below for reference.

    View post on imgur.com

    Best regards,
    Ismael

    Hey lucasgeuna,

    Thank you for the inquiry.

    In the Enfold > Privacy & Cookies > Cookie Handling panel, there’s a Display Modal Popup Actions setting where you can configure the modal to display only when triggered by a button click. Have you tried that selecting this option?

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thanks for reaching out.

    The theme automatically increases the image quality to 100%, but the WordPress default is only 82%. This can be adjusted by using the following filters in the functions.php file:

    add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); 
    add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); 
    function avf_set_quality_mod($quality) { $quality = 60; return $quality;}
    

    We recommend setting this to 70 or lower, then install an image compression plugin such as ShortPixel or Smush to further reduce file size and optimize the images. You may need to regenerate the thumbnails after the quality adjustment.

    https://wordpress.org/plugins/force-regenerate-thumbnails/

    Best regards,
    Ismael

    in reply to: Big issue with latest version #1485051

    Hey!

    As mentioned earlier, the theme is configured to set a higher image quality than the WordPress default, which explains why the generated thumbnails are larger in file size. It’s also worth clarifying that image uploading and compression are handled entirely by WordPress, not the theme. This should be the same across all WordPress installations, so what you’re seeing isn’t specific to this theme.

    Have you tried adjusting the default compression level to 60 or lower? This should help further lower the file size of generated thumbnails and optimize them.

    After lowering the quality value to 60 or below, you can further enhance site performance by installing an image optimization plugin such as ShortPixel, Imagify, or Smush. This is a fairly standard practice in WordPress optimization, so it’s a bit surprising it wasn’t already suggested by your technical team.

    For more information on site optimization, please feel free to refer to the following links.

    https://gtmetrix.com/wordpress-optimization-guide.html
    https://wpengine.com/resources/improve-wordpress-site-speed/

    Regards,
    Ismael

    in reply to: Conflciting Enfold style rule with LayerSlider #1485050

    Hey alexanderh131,

    Thank you for the inquiry.

    Which custom styles were they referring to? The animated texts in the slider were displaying correctly when we checked. Did you figure out the issue?

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Please refer to the following documentation for more information on how to update the theme via FTP. Make sure to delete or rename the current theme folder before uploading the new package.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Before proceeding, make sure to create a site backup or restore point.

    Best regards,
    Ismael

    in reply to: Google Map Tooltip Size Issue #1485048

    Hey ronduring,

    Thanks for reaching out.

    Would you mind providing a screenshot of the issue and a link to a test page so we can check it? 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: Cookie Consent: Setting before consent or rejection #1485003

    Hi,

    Great! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry Grid pulling all categories to filter #1485002

    Hi,

    The other sorting items are displayed because some portfolio items belong to multiple categories. For example, the item Harrisonburg Innovation Hub is assigned to “Commercial and Retail”, which is a selected category, but it also belongs to three additional categories, Anthony Barone’s Projects, Ben Reid’s Projects, and Kevin Gabel’s Projects.

    Please note that all categories associated with the items will display as sorting options. The “Which Entries Should Be Used” option only controls which items are shown in the masonry element, but it does not control or limit the sorting/filter categories.

    If you need to hide the other categories and only display the selected ones, try adding this css code:

    #top .av-sort-by-term a, #top .av-sort-by-term .text-sep {
        display: none;
    }
    
    #top .av-sort-by-term .commercial-retail_sort_button, #top .av-sort-by-term .education_sort_button, #top .av-sort-by-term .healthcare_sort_button, #top .av-sort-by-term .industrial_sort_button, #top .av-sort-by-term .municipal-civic_sort_button, #top .av-sort-by-term .religious_sort_button {
        display: inline-block;
    }

    Best regards,
    Ismael

    Hey Carolline,

    Thank you for the inquiry.

    Did you update the theme files via FTP? Please try to rename the current enfold theme folder, then replace it with the latest version from the package downloaded from your ThemeForest account. Let us know the result.

    You should also switch the installation to debug mode and enable the error log so we can identify where the error is occurring.

    https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/#example-wp-config-php-for-debugging

    Best regards,
    Ismael

    in reply to: Account Icon in Header – Link Problem #1484999

    Hey awasner,

    Thank you for the inquiry.

    Have you tried adding the “Account Details” menu item from the WooCommerce Endpoints in the Appearance > Menus panel?

    View post on imgur.com

    To better understand the issue, we may need to inspect the menu settings. Please provide the login details in the private field.

    Best regards,
    Ismael

Viewing 30 posts - 151 through 180 (of 65,998 total)