Forum Replies Created

Viewing 30 posts - 7,591 through 7,620 (of 67,463 total)
  • Author
    Posts
  • in reply to: Color section backgrounbd video on mobile #1418331

    Hey tammiviestinta,

    Thank you for the inquiry.

    Please note that background videos are disabled on mobile videos by default, which is why a Fallback Image option is available. The fallback image will display on smaller screens in place of the video.

    Best regards,
    Ismael

    in reply to: Style page title in header using Theme Options? #1418330

    Hi,

    So then it seemed obvious that all that CSS could go together. Result that works:

    Good to know that you found a working solution. However, not every element can be added in the Advanced Styling panel. For certain elements, you may need to apply some CSS modifications. Please feel free to reach out if you have any more questions.

    Best regards,
    Ismael

    in reply to: Input fields on the same line code is not working #1418328

    Hi,

    Glad to know that the solution is working. Please feel free to open another thread if you have inquiries about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to inspect the site in order to provide a proper solution. Please post the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Problem with page render #1418326

    Hey Antonio,

    Thank you for the inquiry.

    You can place the embed code within a Color Section and adjust the section’s container to full width. For more information, please refer to this documentation.

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    in reply to: Datepicker Format Not Changing #1418325

    Hi,

    Great! Good to know that the solution worked. Please do not hesitate to open another thread if you have more inquiries about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: menu left, logo center, widget right #1418324

    Hi,

    Glad to know that this has been resolved. Let us know if you need further help with this matter and 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: footer widget not visible and not editable in the backend #1418323

    Hi,

    Let us know if the issue persists once the theme has been upgraded.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Poertfolio Raster – Square (180×180) does not work #1418322

    Hey simmsen,

    Thank you for the inquiry.

    Did you install an image compression plugin in the dev site? We may need to access the dev site in order to understand the issue better. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Change related products (ähnliche Produkte) text #1418321

    Hi,

    Great! Glad to know that you have managed to find a working solution. Please feel free to open another thread when you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Main menu and footer #1418320

    Hey Lene,

    Thank you for the inquiry.

    You can adjust the height of the current menu indicator using the following css code.

    .avia-menu-fx {
        height: 4px;
        width: 100%;
    }
    

    And to add a custom social icon to the theme, please check the following documentation.

    // https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options

    Best regards,
    Ismael

    in reply to: enfold header with elementor footer #1418243

    Hi!

    Thank you for your patience.

    It appears that once you activate the Theme Builder templates, the plugin automatically replaces the header.php and footer.php files. This means that you won’t be able to display the default theme header, and you have to use the Header template within the Theme Builder panel. Editing the default template files from the theme won’t help in this scenario. Unfortunately, we couldn’t find any options to retain the theme’s header.php file, as the plugin automatically overrides both the header and footer when a template is chosen in the Theme Builder.

    Regards,
    Ismael

    in reply to: How to exclude current posts from related posts grid #1418241

    Hey gatehealing,

    Thank you for the inquiry.

    If you are using the default editor to create the content of the posts, you can just add this code in the functions.php file to add extra elements below the post content.

    add_action("ava_after_content", function() {
        if (is_singular('post')) {
            echo "<div class='av-back-to-blog-link'><a href='#'>Back to Blog</a></div>";
        }
    }, 10);
    

    Just replace the href attribute value with the actual blog URL.

    Best regards,
    Ismael

    in reply to: Placing captions UNDER images #1418239

    Hi!

    Glad to know that this has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Regards,
    Ismael

    in reply to: Style page title in header using Theme Options? #1418238

    Hi,

    Thank you for the update.

    There is no dedicated option to change the style of the title in the breadcrumb container, so you may have to add a few css modifications. You can start with the following css code.

    .title_container .main-title {
        margin: 0;
        font-size: 16px;
        position: relative;
        z-index: 2;
        min-height: 36px;
        line-height: 2.3em;
        top: 0;
        font-weight: 400;
        font-family: Open Sans;
    }

    To disable the link, we can set the pointer-events property to none.

    .title_container .main-title a {
        pointer-events: none;
    }
    

    Best regards,
    Ismael

    in reply to: Change Header styling #1418235

    Hi,

    Thank you for the update.

    The SVG background is not displaying when we re-enabled the css code in the Quick CSS field. Unfortunately, we are not yet sure why it’s not working on the site. The modification works as expected when we tested it on our end. What happens when you add the SVG image as header background using the theme options?

    Best regards,
    Ismael

    Hi,

    Secondly even if i used your way then i have to put 9 page ids and in future if same functionality is implemented in few other pages then I have to put the page ids of those pages in the given above function.

    Instead of using the is_page function, we can also check if the element queries for the post type “escorted-vacations”. This way, you won’t have to update the IDs in the array if another events page is created.

    if ( in_array('escorted-vacations', $query['post_type']) )  {
    

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    The account above lacks admin rights, so our ability to check the settings is limited. Is there a site backup or a restore point available? Please create a backup, then activate the latest theme version or remove the older version so we can investigate the issues properly. Another option is to clone the site to a subdomain, update the theme to the latest version, resolve any issues there, and then proceed with updating the live site.

    Best regards,
    Ismael

    in reply to: Datepicker Format Not Changing #1418232

    Hey blizzmarketing,

    Thank you for the inquiry.

    Did you adjust the $placeholder and $date_format values in the filter? Please try to use the following code.

    add_filter('avf_datepicker_dateformat', 'new_date_format');
    function new_date_format() {
        $date_format = "mm / dd / yy";
        return $date_format;
    }
    
    add_filter('avf_datepicker_date_placeholder', 'new_date_placeholder');
    function new_date_placeholder() {
        $placeholder = "MM / DD / YY";
        return $placeholder;
    }

    Best regards,
    Ismael

    in reply to: Image slider Tablet View #1418231

    Hey Diana,

    Thank you for the inquiry.

    For the display of an own tablet version (iPad cross) I proceeded as follows:

    Have you tried using the default Advanced > Responsive > Element Visibility settings instead of using custom css modifications to control the visibility of the elements? The visibility options should allow you to toggle the display of the element based on the screen size.

    Best regards,
    Ismael

    in reply to: Headings in capitals #1418134

    Hi,

    No problem. Please do not hesitate to open another if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    The characters or glyphs seem to be displaying correctly when we tested it. The font size is quite small for mobile phones, so the dots for example are not clearly visible but they are rendering properly. Have you tried increasing the font size for smaller screens?

    We also noticed that the site is using a font called “Amiri”, which is intended for Arabic text. Is this intentional?

    // https://fonts.google.com/specimen/Amiri

    Best regards,
    Ismael

    Hey!

    Thank you for the info.

    We made some modifications to the code in the functions.php file, and it’s now functioning as intended. However, we had to change the format of the journey_start_date from “mm/dd/yyyy” to “yyyymmdd,” which is the default format recognized by WordPress.

    To test these changes, we adjusted the journey_start_date for the posts “Shades of Ireland,” “Magdalen Islands & Gaspé Explorer,” and “Newfoundland & Labrador Discovery.” You can verify this by changing the “order” parameter from “ASC” to “DESC.” When you do this, you’ll notice that the mentioned posts will move to the very bottom of the list in their intended order.

    add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
    function avia_post_slide_query_mod( $query ) {
        if ( is_page(array(1132)) ) {
            $query['meta_key'] = 'journey_start_date';	
            $query['orderby'] = 'meta_value';
            $query['order'] = 'ASC';
        }
        return $query;	
    }

    All you need to do now is adjust the format of the event date.

    Cheers!
    Ismael

    Hi,

    Glad to know that this has been resolved. Please let us know us should you have any further questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: footer widget not visible and not editable in the backend #1418125

    Hey yvino,

    Thank you for the inquiry.

    The footer widgets should be editable in the Appearance > Widgets panel. If you can’t find the widgets there, please provide the login details in the private field so that we can inspect the issue thoroughly.

    Best regards,
    Ismael

    in reply to: Change Header styling #1418122

    Hi,

    Thank you for the update.

    You can start with the following css code.

    #main:before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 188px;
      background-image: url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M0,0 V9 Q50,6 100,9 V0 H0' fill='%230d8dc9'/><path d='M0,9 Q50,6 100,9' fill='none' stroke='%23faf18e' stroke-width='0.9'/></svg>");
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    .header_color .header_bg {
      background-color: transparent;
      border-color: transparent;
    }
    
    .html_header_top.html_header_sticky #main {
      padding-top: 186px;
    }

    You may need to add a few css media queries to adjust the background for different screen sizes.

    Best regards,
    Ismael

    in reply to: Different spaces or gaps between columns #1418121

    Hi,

    According to the screenshot provided, you can use the 1/2 Column elements to create a grid of four items. Afterward, you can manually insert HTML to generate an additional set of columns within either a Code Block or a Text Block. These columns will contain the image and other details shown in the screenshot. You may need to add a few CSS modifications to get everything in order.

    Please kindly share the site URL in the private field so that we can provide an appropriate solution.

    Best regards,
    Ismael

    in reply to: Problem with update from 5.6.4 to 5.6.6 #1418119

    Hi,

    Thank you for the update.

    According to the error above, a required permission is missing for the private token. Have you tried regenerating another private token to replace the current one? You might have to update the theme manually via FTP if the error continues.

    Best regards,
    Ismael

    in reply to: Image with hotspots; close onclick #1418117

    Hey Frans,

    Thank you for the inquiry.

    This is possible but you have modify one of the script files directly. Please check the following threads for more info.

    // https://kriesi.at/support/topic/close-a-hot-spot-by-clicking-anywhere-away-from-it/#post-1277247
    // https://kriesi.at/support/topic/image-hotspot-tooltips-with-click-again-again-2018/#post-1025216

    Best regards,
    Ismael

Viewing 30 posts - 7,591 through 7,620 (of 67,463 total)