Forum Replies Created

Viewing 30 posts - 1,231 through 1,260 (of 67,079 total)
  • Author
    Posts
  • in reply to: Weird thing happening with categories in WooCommerce #1485254

    Hi,

    Yes, they should be safe to use, but to be sure, you can ask your hosting provider to create a backup or restore point. You can also use one of the following plugins.

    https://wordpress.org/plugins/updraftplus/
    https://wordpress.org/plugins/backwpup/
    https://wordpress.org/plugins/duplicator/

    Best regards,
    Ismael

    in reply to: Image full width #1485253

    Hi,

    It displays the same as the original image, with the head slightly cut off. (see private field)

    Best regards,
    Ismael

    in reply to: shortcodes not rendered on frontpage #1485231

    Hi,

    Thank you for the update.

    We cannot find the snippet “Child Pages Top Level Shortcode” in the list, only the “Shortcode: Child Pages List” which we enabled and added to the “verein” page. This seems to be working as expected.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Image full width #1485230

    Hi,

    The entire image is visible when we checked.

    View post on imgur.com

    Could you share a screenshot of the issue?

    Best regards,
    Ismael

    Hi,

    1.) You can adjust the width of the widgets inside the header to reduce the gaps between them and create space on the right side.

    Example:

    .responsive #top #header #header_main .inner-container .widget:nth-child(3) {
        order: 2;
        flex-basis: 10%;
    }

    Try to do the same for the other widgets, then apply a right margin to the last one.

    .responsive #top #header #header_main .inner-container .widget:nth-child(5) {
        margin-right: calc(50% - 570px) !important;
    }

    The value of 570px is based on the maximum container width of 1340px.

    2.) Try removing the padding from the menu container and set its width.

    .responsive #top #header #header_main .inner-container .main_menu .avia-menu.av-main-nav-wrap {
        padding: 0 50px;
        width: 1340px;
    }

    Best regards,
    Ismael

    in reply to: Change the Contact Form Captcha message #1485138

    Hey inovatifglobaltr,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the default label of the captcha.

    function avia_contact_form_elements_mod( $form_fields ) {
    	if ( isset( $form_fields['avia_age'] ) ) {
    		$form_fields['avia_age']['label'] = __( 'Verify you are human', 'avia_framework' );
    	}
    	return $form_fields;
    }
    
    add_filter( 'avia_contact_form_elements', 'avia_contact_form_elements_mod', 10, 1 );
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Customize blog grid #1485137

    Hi,

    Thank you for the update.

    You can also try this css code:

    #top .slide-entry .slide-content {
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    You may need to remove the previous css code and adjust the min-height on different screen sizes using css media queries.

    View post on imgur.com

    Best regards,
    Ismael

    Hey kontaktatadaffairs,

    Thank you for the inquiry.

    What do you mean by the “‘before-and-after” button? Could you provide a screenshot of the issue or a link to a test page? You can use platforms like Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Editor field does not exist #1485135

    Hi,

    Unfortunately, we’re still not able to connect to the server. It’s possible that access is restricted to certain countries or IP addresses. Please make sure that the server is accessible from the following countries: Austria, Philippines, Turkey, USA

    Best regards,
    Ismael

    in reply to: Website will not keep contant #1485134

    Hi,

    Thank you for the info. The very first Special Heading element contains an invalid strong tag.

    Tuition < strong >Cost
    

    Please correct this and kindly review the whole page for similar issues.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The Video element supports actual video formats such as mp4 and ogv, as well as YouTube or Vimeo URLs. The current URL you’re using is not supported, unfortunately. You may need to use the embed code provided by mediadelivery to display the video.

    https://wordpress.org/documentation/article/embeds

    Best regards,
    Ismael

    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

Viewing 30 posts - 1,231 through 1,260 (of 67,079 total)