Forum Replies Created

Viewing 30 posts - 31 through 60 (of 65,302 total)
  • Author
    Posts
  • in reply to: Booking System shortcode #1480613

    Hey envis,

    Thank you for the inquiry.

    Have you tried placing the shortcode inside a Text Block? You should be able to translate the content of the Text Block element in the WPML Translation Editor. If this doesn’t work, please provide the login details in the private field. For additional assistance, please contact the WP Booking System plugin developers.

    Best regards,
    Ismael

    in reply to: Sticky element #1480611

    Hi,

    Thank you for the update.

    Instead of placing the search widget inside a Color Section, try inserting it directly into the header using a widget or widget area. Please refer to this documentation for more info.

    https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    This is the html of the search element, which can be placed inside a Text widget: https://pastebin.com/K8x7qu9g

    Best regards,
    Ismael

    Hi,

    You need to place the loop-index.php file inside the “includes” folder. Follow the folder structure: child theme > includes > loop-index.php. Let us know the result.

    Best regards,
    Ismael

    in reply to: Height of headlines in boxes #1480609

    Hey Loveronika,

    Thank you for the inquiry.

    We were not able to check the site because it has an invalid SSL certificate. Please ask your hosting provider to renew the certificate or register a new one.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It’s not possible to directly apply a link to the Team Member element, but you can use the Content > Add/Edit Social Service or Icon Links settings to add icons or buttons that link to different URLs.

    Best regards,
    Ismael

    in reply to: magnific popup missing form #1480558

    Hi,

    Unfortunately, we’re not sure why the sender form is removed after toggling the popup. Please contact the script or plugin authors for additional assistance.

    Best regards,
    Ismael

    in reply to: Issue with Events Calendar Pro and categories #1480557

    Hi,

    We’re from all over the world — Austria, Philippines, Turkey, United States and Sweden. Let us know once it’s ready.

    Best regards,
    Ismael

    Hi,

    This modification is intended only for the Enfold theme — it will not work with other themes.

    Best regards,
    Ismael

    in reply to: Blog posts element – preview image size not working #1480554

    Hi,

    We removed the screenshot. Have you tried clicking “Purge All” in the LiteSpeed Cache plugin?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We may need to inspect the page and access the dashboard to properly check the modification. Please provide the site URL and login details in the private field.

    Best regards,
    Ismael

    in reply to: Scaling and aligning videos #1480552

    Hi,

    Great! Glad to know that this has been resolved. Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Content slider and ajax loading #1480551

    Hi,

    Glad to know you managed to make this work! Unfortunately, there is no list of scripts or functions like this, but you can always ask in the forum if you need anything. Have a nice day.

    Best regards,
    Ismael

    in reply to: preloader on 2 pages, loading issues. #1480550

    Hey Munford,

    Thank you for the inquiry.

    You can try the following modification — simply replace the lines above with this code.

    if (is_page([1147, 945])) {
        $preloader = avia_get_option('preloader') === "preloader" 
            ? 'av-preloader-active av-preloader-enabled' 
            : 'av-preloader-disabled';
    }
    

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Sticky element #1480549

    Hi,

    Could you provide a screenshot of the issue? We tried logging into the site, but the account details above are incorrect. Please provide another login account so we can check the live site.

    Best regards,
    Ismael

    in reply to: one-fourth columns 2 up on mobile #1480508

    Hey finchkelsey,

    Thank you for the inquiry.

    We may need to inspect the site and inspect the elements. Please post the site URL in the private field and provide a screenshot using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: Blog posts element – preview image size not working #1480507

    Hi,

    Thank you for the update.

    The image size settings were not being applied because of the post_thumbnail_size filter in the functions.php file. We adjusted the condition a bit.

    if( !is_singular('post') && is_page(1307) ) {
    

    (removed screenshot)

    Best regards,
    Ismael

    Hey Elena,

    Thank you for the inquiry.

    You can add this in the includes > loop-index.php file around line 471:

    echo '<span class="post-meta-infos">';
    

    Create a copy in your child theme, then do the modifications. You can also use the avf_post_metadata_array filter.

    Example:

    add_filter('avf_post_metadata_array', function($meta, $context) {
        global $post;
    
        if($context == 'loop-index') {
            $updated_date = get_the_modified_date('F j, Y', $post->ID); 
            $meta['updated_date'] = '<span class="blog-updated-date minor-meta">Updated on: ' . $updated_date . '</span>';
        }
    
        return $meta;
    }, 10, 2);

    Best regards,
    Ismael

    in reply to: Picture of the color section #1480504

    Hi,

    I don’t understand why the size of the model image (enfold gym) is 1500 x 720 and the actual height of the page banner is 420…

    Please note that the section size depends on the content, not the background image. We recommend uploading images at least the same size as the demo image, with a 16:9 aspect ratio. However, if you’re trying to focus on a specific part of the image, this will require a lot more adjustments. You may need to use css to adjust the background position and, as recommended, disable the parallax and fixed effects. We also noticed that the part you’re trying to focus on is not vertically or horizontally aligned in the actual image, so you may need to adjust this as well.

    And regarding the image quality, the theme already sets this to highest quality possible (100 or 100%) but if you need to adjust it, you can add this filter 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 = 100; return $quality;}
    

    Best regards,
    Ismael

    in reply to: Transparent header on mobile #1480503

    Hi,

    Thank you for the update.

    We removed the screenshot. Try to include thi css code to remove the top padding on pages with transparent headers:

    .html_header_top.html_header_sticky.html_header_transparency #top #wrap_all #main {
        padding-top: 0 !important;
    }

    Make sure to place this below the first css rule suggested above, inside the css media query.

    Best regards,
    Ismael

    in reply to: How to remove tab in Tab Section? #1480502

    Hi,

    Thank you for the inquiry.

    You need to click the X icon in the top right corner of the tab section content. Please check the screenshot below.

    View post on imgur.com

    If you need more assistance, please feel free to open another thread.

    Best regards,
    Ismael

    in reply to: remove video controls #1480501

    Hey AlpineWeb,

    Thank you for the inquiry.

    You can add the following css code to hide the play icon, but please note that this will affect all videos on the site:

    .mejs-layer.mejs-overlay-play {
        display: none;
    }

    Best regards,
    Ismael

    Hey mosaic,

    Thank you for the inquiry.

    Try to add this filter in the functions.php file to adjust the default magazine thumbnail size:

    function avf_magazine_defaults_mod( $defaults ) {
        $defaults['image_size']['small'] = 'portfolio';
    
        return $defaults;
    }
    add_filter( 'avf_magazine_defaults', 'avf_magazine_defaults_mod' );
    

    Best regards,
    Ismael

    in reply to: Scaling and aligning videos #1480499

    Hi,

    Thank you for the inquiry.

    You may need to remove the css rules that define specific dimension to the video on different screens sizes such as this:

    .bheAnimation {
        background-color: #fff !important;
        width: 807px !important;
        height: 504px !important;
    }

    Then, try to add this to make sure that the whole video is visible within the container:

    #top .avia-video .mejs-container, #top .avia-video .mejs-container video {
        object-fit: contain;
    }

    This might create black spaces around the video.

    Best regards,
    Ismael

    in reply to: Content slider and ajax loading #1480498

    Hi,

    Thank you for the inquiry.

    The content slider is activated using the AviaSlider function. You’ll find this in the enfold/js/shortcodes.js file around line 205. You may need to use the same function to re-initialize the slider inside the lightbox container.

    
    //content slider
    $( '.avia-content-slider-active', container ).aviaSlider({wrapElement: '.avia-content-slider-inner', slideElement: '.slide-entry-wrap', fullfade: true});
    

    The AviaSlider function can be found in the enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js file.

    Best regards,
    Ismael

    in reply to: Transparent header on mobile #1480323

    Hi,

    Thank you for the info.

    The breadcrumb container is present but is being covered by the header. Try to add this css code to adjust the top padding of the main container.

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 65px !important;
      }
    }

    (removed screenshot)

    Best regards,
    Ismael

    in reply to: Website Animation Not Working After Updating #1480322

    Hey my247restore,

    Thank you for the inquiry.

    The animations worked correctly when we checked the site. Please try to purge the cache before checking the page or switch to incognito mode. Let us know if the issue persists.

    Best regards,
    Ismael

    in reply to: Second menu colour #1480321

    Hey fanlokbun,

    Thank you for the inquiry.

    We should be able to define a different color for the menu on a specific page using css. Please provide a link to the page where you need a different menu color so we can inspect it.

    Best regards,
    Ismael

    in reply to: Pricing boxes – align button at bottom of box #1480320

    Hi!

    Glad we could be of help! Let us know if you have more questions. Have a nice day.

    Regards,
    Ismael

    in reply to: Website not updating – using Enfold theme #1480319

    Hi,

    Thank you for the update.

    The site is still using an older version of the theme. It’s possible that the automatic update is no longer working as expected. You may need to download the latest version (7.0.1) from your ThemeForest account and update the theme manually via FTP. Please check the documentation below for more info.

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

    Best regards,
    Ismael

    Hi,

    Try applying a Custom CSS Class name to the element where you need this applied, and replace the auto-generated class names .av-1v2pat2-53d1a210d34319a1e3263b9b4acfe09f .av-1tepg6e-5d320ae52f7edb1070659a131dbdac1d with it.

    https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 65,302 total)