Forum Replies Created

Viewing 30 posts - 1 through 30 (of 64,533 total)
  • Author
    Posts
  • in reply to: Translation of Fold/Unfold text #1475713

    Hey dp-beheer,

    Thank you for the inquiry.

    We may need to access the site to check the issue properly. Please provide the login details in the private field. Did you adjust the read more text?

    Best regards,
    Ismael

    in reply to: Text on Form not showing #1475712

    Hey bemodesign,

    Thank you for the inquiry.

    Try to add this css code to display the placeholder.

    .sas-widget-body-single-input-box-inner .sas-widget-input-placeholder {
        display: flex !important;
    }

    Best regards,
    Ismael

    in reply to: Update Enfold-Child from 4.7.3 to current #1475711

    Hi,

    No problem! Let us know if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video in Header #1475710

    Hi,

    Thank you for the update.

    You can apply a large top-left border radius to the column element and position it relative to the parent container. Please create a test page, add a Color Section, insert two 1/2 Column elements inside the section, add Text or Special Heading in the first column and Video in the second. Then we’ll provide you with the modifications needed to create the shape and adjust the position of the video.

    Best regards,
    Ismael

    in reply to: enfold full width slider Caption Text size on mobile view #1475709

    Hey bemodesign,

    Thank you for the inquiry.

    You can adjust the font size of the slider caption in the Styling > Font Sizes panel. Please check the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Mobile view full width slider is cut off #1475708

    Hey bemodesign,

    Thank you for the inquiry.

    You can add this css code to adjust the height of the slider on mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .avia-slideshow.av-k5zwtv35-191253da2a907a8438f9e3ea5aa30763 .avia-slideshow-slide,
      .avia-slideshow.av-k5zwtv35-191253da2a907a8438f9e3ea5aa30763 .avia-slideshow-slide>div {
        min-height: 330px;
      }
    
      .avia-slideshow.av-k5zwtv35-191253da2a907a8438f9e3ea5aa30763 .avia-slideshow-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 330px;
      }
    
      #top #wrap_all .avia-slideshow .av-slideshow-caption.av-k5zwtv35-191253da2a907a8438f9e3ea5aa30763__0 .avia-caption-title {
        font-size: 30px;
      }
    
      #top .avia-slideshow .av-slideshow-caption.av-k5zwtv35-191253da2a907a8438f9e3ea5aa30763__0 .avia-caption-content p {
        font-size: 20px;
      }
    }

    Best regards,
    Ismael

    in reply to: Product Slider Issue #1475705

    Hey ballindigital,

    Thank you for the inquiry.

    Looks like the correct product images display once you navigate to the second set of products. We also noticed that the site continuously loads without end. Have you tried deactivating the plugins temporarily? Please clone the site to a staging environment so that we can check the issue properly.

    Best regards,
    Ismael

    in reply to: Extra large white spaces #1475702

    Hi,

    The issues don’t occur on the live site anymore — the images are visible, and there are no large gaps. Did you figure out the issue?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Woocommerce Germanized unit price display #1475701

    Hi,

    Thank you for the update.

    We still don’t have access to the dashboard — wp-admin redirects to the old site. The test product is no longer available. Please provide an admin account and create a test product so we can check the issue.

    Best regards,
    Ismael

    in reply to: How can I add Categories to a Post Slider #1475700

    Hi,

    Great! Glad it worked. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Video in Header #1475699

    Hey bemodesign,

    Thank you for the inquiry.

    You can use a Video element placed within a Column element. Make sure it is muted if you want it to play automatically.

    Best regards,
    Ismael

    in reply to: Please help to customize BLOG Page #1475633

    Hey Augeundso,

    Thank you for the inquiry.

    You may need to reset the option in the Settings > Reading to default. Make sure that Posts page is not set. If the issue persists, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Update Enfold-Child from 4.7.3 to current #1475632

    Hi,

    Thank you for the update.

    The automatic update in the dashboard will no longer work in the current version (4.7.3). You will have to download the latest version (6.0.9) from your Themeforest account and update the theme manually via FTP. Please check this documentation for more info: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: How can I add Categories to a Post Slider #1475621

    Hey DynamiteDesigns,

    Thank you for the inquiry.

    Please add this filter in the functions.php file to display the post categories:

    add_filter('avf_postslider_show_catergories', 'avf_postslider_show_catergories_mod', 10, 1);
    function avf_postslider_show_catergories_mod($category) {
        $show_cats = 'show_business';
        return $show_cats;
    }

    Best regards,
    Ismael

    in reply to: lightbox css no longer working with enfold theme update #1475620

    Hi,

    Unfortunately, you cannot target elements inside an iframe. They must be modified directly on the site loaded in the iframe or configured in the plugin that loads the iframe if an option is available. Please contact the plugin authors for more info.

    Best regards,
    Ismael

    in reply to: Disable Enfold generated images #1475619

    Hey designelefant,

    Thank you for the inquiry.

    After adding the code with the remove_image_size function, did you regenerate the thumbnails? Please note the function will not affect images that are already uploaded to the site. It will only work on newly uploaded images.

    You can use any of these plugins to regenerate the thumbnails.

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

    Make sure to create a site backup or restore point before proceeding.

    Best regards,
    Ismael

    in reply to: accessibility and av-font-icon #1475618

    Hi,

    Thank you for the update.

    Regarding the scroll-top-top button, you can override the footer.php file in your child theme. Look for this line of code and adjust as necessary.

    <a href='#top' title='<?php _e( 'Scroll to top', 'avia_framework' ); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?> tabindex='-1'><span class="avia_hidden_link_text"><?php _e( 'Scroll to top', 'avia_framework' ); ?></span></a>
    
    

    Best regards,
    Ismael

    in reply to: Hide items in backend if user is not admin #1475617

    Hi,

    If instead I wanted to create a layout in an article and allow an editor to change only the content,

    This is not possible by default, unfortunately. You may need to look for an extension or plugin to control the visibility of the page or content.

    Best regards,
    Ismael

    in reply to: Extra large white spaces #1475616

    Hi,

    This error occurs in the live site, but we are not yet sure where it’s coming from.

    VM701:7 Uncaught SyntaxError: Failed to execute ‘replaceChild’ on ‘Node’: Unexpected identifier ‘wphb’

    Can we deactivate the plugins temporarily?

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider caption #1475615

    Hey Richard,

    Thank you for the inquiry.

    You can adjust the color values in the Styling > Colors panel for each slider.

    Best regards,
    Ismael

    in reply to: Error when trying to update to version 6.0.9 #1475614

    Hi,

    Great! Glad to know that the issue has been resolved. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Strange inline height applied to Color Sections #1475613

    Hi,

    Thank you for the update.

    Did you change the login URL? We get this “This has been disabled” notice when using the default login or admin URL. Please include the custom login URL in the private field.

    Best regards,
    Ismael

    in reply to: reddit social media icon #1475542

    Hi,

    Thank you for the update.

    You can use this css code and adjust the values as needed:

    #top #wrap_all #footer .social_bookmarks {
        height: 80px;
    }
    
    #top #footer .social_bookmarks li {
        height: 100%;
        width: 80px;
    }
    
    #top #footer .social_bookmarks li a {
        font-size: 48px;
        height: 48px;
        width: 80px;
        line-height: 60px;
    }

    Best regards,
    Ismael

    in reply to: reddit social media icon #1475540

    Hi,

    Where can we check the social icons? Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: reddit social media icon #1475538

    Hi,

    Thank you for the inquiry.

    You can use this html to display the reddit icon:

    
     	<li class="social_bookmarks_reddit av-social-link-reddit social_icon_5"><a aria-label="Link to Reddit" href="#" aria-hidden="false" data-av_icon="" data-av_iconfont="entypo-fontello" title="Reddit"><span class="avia_hidden_link_text">Reddit</span></a></li>
    

    And to adjust the size of the icons, add this css code:

    #footer .social_bookmarks li a {
       font-size: 20px;
       line-height: 20px;
    }

    Best regards,
    Ismael

    in reply to: Extra large white spaces #1475537

    Hi,

    Thank you for the info.

    The issue is not reproducible on the staging site, regardless of whether we were logged in or not. The images are displaying correctly on the homepage, and there are no large white spaces below the first section. Please check the screenshot (Chrome) below:

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Undesired popup #1475536

    Hey Heino,

    Thank you for the inquiry.

    Looks like the popup also appears on page load. Did you add any scripts recently or install a snippets plugin? Please try to disable the modifications and deactivate the plugins temporarily. Let us know the result.

    Best regards,
    Ismael

    in reply to: easy slider hide image tag #1475535

    Hi,

    Great! Glad to know that you found a solution. Please note that the script will affect all images on the entire site. Let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Accessibility – Broken skip link #1475534

    Hi,

    Thank you for the update.

    You may need to replace #content with #main or apply the ID attribute content to the main section of the page. Have you tried adjusting the value of the “Skin to content link target” field?

    Best regards,
    Ismael

    in reply to: Custom Element Template on Grid Word #1475533

    Hey Manel,

    Thank you for the inquiry.

    Unfortunately, this option is not available for the Grid Row element. You may need to use a different element or work with the Grid Row element directly.

    Best regards,
    Ismael

Viewing 30 posts - 1 through 30 (of 64,533 total)