Forum Replies Created

Viewing 30 posts - 13,441 through 13,470 (of 66,027 total)
  • Author
    Posts
  • in reply to: Mailchimp Newsletter Form #1300047

    Hey Snerp,

    Thank you for the inquiry.

    The space between the label and the input field is created by these space characters.

    
    
    First Name
    
    & nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;
    

    Do you have any idea where it may be coming from?

    Best regards,
    Ismael

    in reply to: Mailchimp Widget #1300045

    Hey Snerp,

    Thank you for the inquiry.

    You can use the avf_sc_mailchimp_form_elements filter to add new elements or fields in the form. Usage example can be found here.

    // https://kriesi.at/support/topic/get-variable-of-the-url-and-attach-it-on-subject-of-content-form-mail/#post-1010866

    Related thread: https://kriesi.at/support/topic/translate-mailchimps-form-with-wpml/#post-1224803

    Best regards,
    Ismael

    in reply to: Masonry Gallery not showing up #1300044

    Hi,

    Thank you for the update.

    The child theme relies on the parent theme and is currently on version 4.5.6, which is quite old. You have to upgrade the theme to version 4.8.2 manually via FTP just this once, because the auto updater will not work with your current version.

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

    Best regards,
    Ismael

    in reply to: Problem with Layer Sliper WP and content element #1300041

    Hey berste,

    Thank you for the inquiry.

    Did you add the contact form as a layer? You may need to adjust or increase the z-index of the layer by declaring the css property in the Styles > Custom CSS field. Or make sure that the contact form layer is at the very top of the Layers list.

    Best regards,
    Ismael

    in reply to: Webp support in Full screen slider and other places #1300037

    Hey Thomas Duerlund,

    Thank you for the inquiry.

    Yes, lightbox should be automatically applied to webp images, or automatically create a lightbox link for webp format. Where are you trying to use webp images? Are you using any builder elements?

    This plugin might help.

    // https://wordpress.org/plugins/webp-express/

    If you are using the full screen slider, try this plugin.

    // https://wordpress.org/plugins/allow-webp-image/

    It adds webp support for the media uploader.

    Best regards,
    Ismael

    in reply to: Modify the button styling in Band Template #1300035

    Hey Jason,

    Thank you for the inquiry.

    You can use this css code to adjust the border radius of the buttons and change its color.

    #top #wrap_all .avia-slideshow-button, #top .avia-button, .html_elegant-blog .more-link, .avia-slideshow-arrows a:before {
        border-radius: 5px;
        border-width: 1px;
    }
    
    .main_color .avia-color-theme-color-subtle {
        background-color: #f7f7f7;
        color: #383838;
        border-color: #f1f1f1;
    }

    Best regards,
    Ismael

    in reply to: galleries images can no longer be opened #1300031

    Hi,

    We do not know of any plugin that has the same functionality, but you can try to search for plugins that belongs to the same category or have the same tags.

    Example: https://wordpress.org/plugins/tags/smart-quotes/

    Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Mailchimp Newsletter Widget #1300029

    Hi,

    Glad it is working. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: How to add space between buttons #1300028

    Hi,

    Thank you for the inquiry.

    Looks like it is working properly now. Please check the screenshot below.

    Screenshot: https://imgur.com/zNMeEPO

    Try to purge the cache and toggle the file compression settings, then check the page again.

    Best regards,
    Ismael

    in reply to: Video in fullscreen slider is zoomed in #1299899

    Hey sehlerupdegraff,

    Thank you for the inquiry.

    You can retain the original aspect ratio of the video and display it completely inside the slider, but black borders might display around it or within the slider. In the slide’s Styling > Video Settings, set the Video Display to the first option.

    Best regards,
    Ismael

    Hey rmatus,

    Thank you for the inquiry.

    Looks like you have already managed to adjust the style of the events calendar. This is what we see on our end.

    Screenshot: https://imgur.com/P93l8Ky

    Please try to disable the Performance > File Compression settings and purge the cache afterwards.

    Best regards,
    Ismael

    in reply to: "Scroll up" button on mobile #1299888

    Hey a-l-p,

    Thank you for the inquiry.

    Yes, it is possible but probably not necessary because scrolling back to the top of the browser on mobile devices is already possible by tapping the top edge of the screen twice.

    @media only screen and (max-width: 767px) {
        .responsive #scroll-top-link {
            display: block !important;
        }
    }
    

    Best regards,
    Ismael

    in reply to: "Increase image on hover" effect issue #1299885

    Hi,

    You have to set the image element’s Image Hover effect to the third option (Yes, slightly zoom the image) to prevent the image from overflowing. It is probably set to the second option (Yes, slightly increase the image size) right now.

    Best regards,
    Ismael

    in reply to: Logo Centralised between two menus #1299880

    Hey pipedream,

    Thank you for the inquiry.

    You are probably looking for this customization.

    // https://kriesi.at/documentation/enfold/menu/#logo-centered-split-menu

    Just configure header settings as suggested in the documentation and add the css code. You may have to do some adjustment on different screen sizes using css media queries.

    Best regards,
    Ismael

    Hey Diana,

    Thank you for the inquiry.

    Have you tried wrapping the css modification inside a css media query so that it only applies on larger screens? You could also add extra css media queries to adjust the style on mobile view.

    @media only screen and (min-width: 989px) {
      /* Add your Desktop Styles here */
    
    }
    

    To remove the indentation of the button item, use this css code.

    @media only screen and (max-width: 767px) {
        #top .av-menu-button > a .avia-menu-text {
           padding: 0;
        }
    }
    

    Again, we use a css media query here to adjust the style of the button menu item when the screen width is equal or less than 767px.

    Best regards,
    Ismael

    in reply to: Magnificent popup is not a function #1299878

    Hi,

    Thank you for the update.

    This is not working correctly because as @Guenni007 pointed out, the /js/aviapopup/jquery.magnific-popup.min.js is nowhere to be found or it is not loading.

    Did you add anything in the functions.php file aside from the custom inline popup script? We tried to check the file but the Appearance > Editor panel is not accessible. Please enable the file editor so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: custom post archive #1299871

    Hey w_archer,

    Thank you for the inquiry.

    We cannot find the page containing the “advertisements” post type, so we created a temp page, added the Blog Posts element and selected the Blade Length taxonomy. All of the items that belongs to the selected taxonomy or term display properly in the page. Where can we see the issue?

    To display the ACF fields, you will have to use get_field function and add it directly in the archive.php or in the include > loop-index.php file.

    // https://www.advancedcustomfields.com/resources/get_field/

    Best regards,
    Ismael

    in reply to: Portfolio Masonry – polylang – 3 sprachen #1299808

    Hi,

    We may need the access to the file server in order to properly test the filter with your installation, which contains the actual tag translations. Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Remove WPML Flags (png-files) from html source code #1299806

    Hi,

    No problem. Glad we could help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Image banners stretching #1299804

    Hi,

    Thank you for the info.

    The two other pages are actually using the Fullscreen Slider instead of the Fullwidth Slider, which is the slider that the home page is using.

    Best regards,
    Ismael

    in reply to: Error with PayPal Express Checkout #1299803

    Hi,

    Glad to know that you have found the issue. It is possible that the privacy option blocks a certain script in which the plugin depends on, but we are not sure which script it is.

    We could set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first and second option to allow external services to load without the users’ explicit consent or without them interacting with the cookie bar. Hopefully, this will fix the issue with the paypal checkout.

    Best regards,
    Ismael

    in reply to: do_shortcode issue on visual builder #1299800

    Hi,


    @emilconsor
    : Please create a new thread and post the login details in the private field so that we can check the issue. Provide direct links to the dashboard panels where we can check the forms or the custom php code. Screenshots will help as well. We will close this one for now.

    Best regards,
    Ismael

    Hi,

    It seems like the issue is with the server configuration. For some reason a line break is created after the domain name, which breaks a lot of the specified URL. This issue is non-existent on other servers. Example:

    Uncaught SyntaxError: '' string literal contains an unescaped line break
     	avia_framework_globals.gmap_avia_api = 'https://site.com
    /wp-content/themes/enfold/framework/js/conditional_load/avia_google_maps_api.js';
            avia_globals.sc['avia_builder_button'].image = 'https://site.com
    /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/images/tiny-button.png';
    

    As you can see a line break is created right after the domain name. You may need transfer to a different host or a different server temporarily so that you can start with the site development. Or install a local server so that you can develop the site right in your machine and deploy it once it is ready.

    You should also contact GoDaddy and have them check the issue.

    Best regards,
    Ismael

    in reply to: Enfold theme & Memberpress #1299784

    Hi,

    Thank you for the info.

    The page where the issue is supposed to display is no longer available. Did you remove it? Please create another test page so that we could properly check the issue. Looks like the more tag is actually working when added inside a code block, but it breaks the layout of the page a bit because the plugin inserts another container in place of the hidden content.

    Best regards,
    Ismael

    in reply to: Layout Builder as default for custom types #1299638

    Hey emilconsor,

    Thank you for the inquiry.

    Why do you have to manually add the a:():{}? s6 refers to the number of characters inside the string entry. Please note that the _av_alb_posts_elements_state should contain names of the elements that actually exist in the page.

    Example:

    a:5:{s:10:"av_heading";b:1;s:16:"av_image_hotspot";b:1;s:11:"av_one_half";b:1;s:12:"av_textblock";b:1;s:13:"av_image_spot";b:1;}
    

    This tells us that there is at least one special heading element, a hotpot, a 1/2 column and a text block in a page.

    Best regards,
    Ismael

    in reply to: Breadcrumb issue #1299628

    Hi,

    Would you mind providing a screenshot of Google Console issue again? The image URL above is malformed. Please use imgur or dropbox for the screenshot.

    Could you ask the plugin developers if this is where issue lies? It’s part of the Yoast JSON-LD schema.

    {"@type":"BreadcrumbList","@id":"https://swisstraveler.net/swiss-traveler-luxury-travel-gourmet-blog/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"https://swisstraveler.net/swiss-traveler-luxury-travel-gourmet-blog/#webpage"}}]}]}
    

    We noticed that the position value of the ListItem stays to 1 even when we navigate to a different page. The plugin probably extracts the position value using the get_query_var(“page”) function or it parses the URL and return the pagination component. Please ask the authors if there is an available filter that we could use to manipulate the value of the itemListElement inside the BreadcrumbList.

    // https://developer.yoast.com/features/schema/pieces/breadcrumb/

    Best regards,
    Ismael

    Hey krkefalas,

    Thank you for the inquiry.

    Make sure that the custom css file depends on one of the theme css so that it is loaded after the default stylesheets. In the wp_enqueue_style, you can define the dependencies (deps) as an array of strings.

    // https://developer.wordpress.org/reference/functions/wp_enqueue_style/#parameters

    Try to add the shortcodes.css file as one of the deps for the custom css, handle is “avia-scs”.

    wp_enqueue_style( 'my-custom-style', "path/to/custom.css", array('avia-scs'), "0.1.0, 'all' );
    

    Make sure that the path to the css file is correct.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you remove the script? We cannot find it in the page anymore. Please post the login details in the private field so that we could check and test the script properly.

    Best regards,
    Ismael

    in reply to: Portfolio Masonry – polylang – 3 sprachen #1299614

    Hi,

    Thank you for your patience.

    We could also use the avf_ratio_check_by_tag_values filter to adjust the ratio_check_by_tag logic and include the tag translations so that the theme can still return the correct class name.

    Best regards,
    Ismael

    in reply to: Loading speed masonry galery #1299602

    Hey enzowillemstad,

    Thank you for the inquiry.

    Did you enable lazy loading? Did the client check the connection speed while testing the page? What is the actual specs of the device or machine which the client is using to test the page? Sorry for the questions, but all of these factors could affect how fast the images or the masonry items load and how fast the whole page is rendered.

    Site loads perfectly fine on our end. (see private field)

    Best regards,
    Ismael

Viewing 30 posts - 13,441 through 13,470 (of 66,027 total)