Forum Replies Created

Viewing 30 posts - 6,421 through 6,450 (of 67,463 total)
  • Author
    Posts
  • Hey 2N2constructions,

    Thank you for the inquiry.

    The site is on maintenance mode so we were not able to check it. Would you mind providing a screenshot of the issue and posting the login details in the private field? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    in reply to: Fixed Video Background #1429507

    Hey Paul,

    Thank you for the inquiry.

    You can apply a background video to a Color Section or a Slider element. With a Color Section, just go to the Styling > Background Video toggle and define the video URL in the provided field. If you need more options, you can also use the Layer Slider element.

    Best regards,
    Ismael

    in reply to: Standard open all accordeon toggles on desktop #1429323

    Hey Enfoldfanatic,

    Thank you for the inquiry.

    Edit the Accordion element and make sure that the Content > Behavior > Behavior is set to Multiple toggles open allowed. You can then add this script in the functions.php file to programmatically open all toggles only on desktop view.

    function av_custom_inline_script()
    {
        wp_add_inline_script( 'jquery', 
        "
        (function($) {
            var windowsize = $(window).width();
    
            if (windowsize > 1024) {
                $(window).on('load', function() { 
                    $('.toggler').trigger('click');
                    $('.toggler').addClass('activeTitle');
                    $('.toggle_wrap').addClass('active_tc');
                });
            }
        })(jQuery);
        "
        );
    }
    add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );

    Best regards,
    Ismael

    in reply to: Object-fit for images in grid #1429321

    Hey nickfarrelluk,

    Thank you for the inquiry.

    You can define a specific height for the grid-image containers to align the masonry items properly. To apply the object-fit property to the image itself, set its width and height to 100%. Please start with the following css code.

    .responsive .fullsize .grid-col-4 .grid-image {
      height: 264px !important;
    }
    
    .responsive .fullsize .grid-col-4 .grid-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    

    Best regards,
    Ismael

    in reply to: Subheading fontsize in relation to heading #1429320

    Hey fabienneRedUmb,

    Thank you for the inquiry.

    You can leave the Heading Font Sizes and Subheading Font Sizes of the Special Heading elements set to Default, and define the font size for headings (h1, h2, h3, etc.) in the Enfold > Advanced Styling panel. Afterward, you can add the following css code to adjust the default size of the subheading element relative to the configurations or style adjustments made in the Advanced Styling panel.

    #top .av-subheading {
        font-size: 1.2em !important;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    You can add this css code to adjust the color of social icons inside the footer container.

    #footer-page .av-share-box ul li a {
        color: #ffffff;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after applying the modification.

    Best regards,
    Ismael

    in reply to: Video Not Appearing Properly As Color Section Background #1429316

    Hey clbdcnpafe,

    Thank you for the inquiry.

    Did you add other elements in the Color Section element other than applying the background video? Please try to upgrade the theme from 5.6.6 to version 5.6.9, then post the login details in the private field so that we can check the issue further.

    Best regards,
    Ismael

    in reply to: Replacement for Angular #1429315

    Hey Jason L. Outlaw,

    Thank you for your interest in the theme.

    We recommend the Enfold as an excellent choice for creating modern and responsive websites, especially for profiles of individual people. Enfold is a versatile and feature-rich theme that includes its own Advanced Layout Builder, which should allow you to create clean and professional designs suited for any kind of websites. If you want to learn more, please check the links below.

    // https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990
    // https://kriesi.at/documentation/enfold/

    Best regards,
    Ismael

    in reply to: Theme conflict with plugin Foo Bookings #1429314

    Hi,

    Glad to know that the issue has been resolved. Thank you for sharing the solution. If you have any more questions or need further assistance, please feel free to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    Hi!

    Thank you for the inquiry.

    You can add this css code to disable scrolling when the burger menu overlay is active.

    .av-burger-overlay-active {
        overflow: hidden;
    }

    You may need to temporarily disable the Enfold > Performance > File Compression settings afterward.

    Cheers!
    Ismael

    in reply to: Duplicate link in WooCommerce Orders #1429235

    Hi!

    Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Regards,
    Ismael

    in reply to: Mobile cart product-quantity #1429232

    Hey bonsaimedia,

    Thank you for the inquiry.

    You can add this css code to display the quantity column back on mobile view or smaller screens.

    @media only screen and (max-width: 767px) {
      .responsive .shop_table .product-quantity {
        display: block;
      }
    }

    Best regards,
    Ismael

    in reply to: contact form #1429231

    Hey!

    Thank you for the inquiry.

    Did you adjust the email address in the contact form element’s Content > Backend > Your E-Mail Address field? Please edit the page with the contact form element and look for the field that we mentioned above.

    Best regards,
    Ismael

    in reply to: Bug in TAB section #1429230

    Hi,

    Thank you for the update.

    Did you remove the page? It redirects to a 404 page. Please review the page and make sure that all html tags are closed properly, or use one of the following html validator tools.

    // https://jsonformatter.org/html-validator
    // https://www.freeformatter.com/html-validator.html

    Best regards,
    Ismael

    in reply to: filter post slider entries for sticky posts #1429228

    Hey drahdiwaberl,

    Thank you for the inquiry.

    There is no option for this by default, but you can add the following code in the functions.php file to adjust the post slider query and display only sticky posts.

    function ava_sticky_posts_only($query)
    {
        if (is_page(123)) {
            $sticky = get_option('sticky_posts');
            if (!empty($sticky)) {
                $query['post__in'] = $sticky;
            }
        }
    
        return $query;
    }
    add_action('avia_post_slide_query', 'ava_sticky_posts_only', 10, 1);
    

    Adjust the ID or number in the is_page function with the ID of the page containing the post slider element.

    Best regards,
    Ismael

    in reply to: Layerslider7 Will Not Autoplay YouTube Video #1429227

    Hi,

    Great! Glad to know that the issue has been resolved. Please feel free to let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Text format and settings in Learndash Lessons #1429226

    Hi,

    Thank you for the update.

    I will try with this CSS but my “dream” would be to be able to use the advanced Enfold editor or page builder with Learndash.

    This is possible, but we don’t recommend it because the Advance Layout Builder doesn’t contain elements for the LearnDash post type. You may lose some of the plugin’s functionality if you switch to the Advance Layout Builder.

    Best regards,
    Ismael

    in reply to: Some special needs: menue item, zoom/hover on image etc. #1429224

    Hi,

    Thank you for the update.

    Perhaps can we have a little less height for the “portfoliobeschriftung”? The height of the red area is a bit too much.

    You can adjust the space around the portfolio title with this css code.

    .grid-content {
        padding: 10px;
    }

    The only thing that still causes trouble is ‘Anfahrt’.

    Please edit the menu items in the Appearance > Menus panel and try to replace the anchor #anfahrt with #footer. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Main Menu Search Form Placeholder Text Color #1429223

    Hey Jody,

    Thank you for the inquiry.

    You can use the following css code to adjust the style of the placeholder text.

    ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color:    #909;
    }
    :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
       color:    #909;
       opacity:  1;
    }
    ::-moz-placeholder { /* Mozilla Firefox 19+ */
       color:    #909;
       opacity:  1;
    }
    :-ms-input-placeholder { /* Internet Explorer 10-11 */
       color:    #909;
    }
    ::-ms-input-placeholder { /* Microsoft Edge */
       color:    #909;
    }
    
    ::placeholder { /* Most modern browsers support this now. */
       color:    #909;
    }

    And to change the placeholder text itself, add this code in the functions.php file.

    
    /* AJAX SEARCH */
    if ( ! function_exists( 'avia_append_search_nav_mod' ) ) {
        //first append search item to main menu
        remove_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 9997, 2 );
        remove_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 9997, 2 );
        add_filter( 'wp_nav_menu_items', 'avia_append_search_nav_mod', 9997, 2 );
        add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav_mod', 9997, 2 );
    
        /**
         *
         *
         * @param string $items
         * @param array $args
         * @return string
         */
        function avia_append_search_nav_mod ( $items, $args )
        {
            if ( avia_get_option( 'header_searchicon', 'header_searchicon' ) != 'header_searchicon' ) {
                return $items;
            }
    
            if ( avia_get_option( 'header_position', 'header_top' ) != 'header_top' ) {
                return $items;
            }
    
            if ( ( is_object( $args ) && $args->theme_location == 'avia') || ( is_string( $args ) && $args = 'fallback_menu' ) ) {
                ob_start();
                get_search_form();
                $form = ob_get_clean();
    
                $form = str_replace( '<form ', '<form role="search" ', $form );
                $form = htmlspecialchars( $form );
    
                /**
                 * Avoid duplicate indexing or empty search page
                 *
                 * @since 4.5.3
                 * @param string $items
                 * @param array $args
                 * @return string
                 */
                $nofollow = apply_filters( 'avf_nav_search_icon_nofollow', 'rel="nofollow"', $items, $args );
    
                $aria_label = __( 'Search', 'avia_framework' );
                $aria_label = apply_filters( 'avf_nav_search_aria_label', $aria_label, $items, $args );
    
                $items .=	'
     	<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special" role="menuitem">';
                $items .=		'<a aria-label="' . $aria_label . '" href="?s=" '. $nofollow . ' data-avia-search-tooltip="' . $form . '" ' . av_icon_string( 'search', false ) . '>';
                $items .=			'<span class="avia_hidden_link_text">' . __( 'ADJUST THIS TEXT', 'avia_framework' ) . '</span>';
                $items .=		'</a>';
                $items .=	'</li>
    ';
            }
    
            return $items;
        }
    }

    Replace “ADJUST THIS TEXT” with your own text.

    Best regards,
    Ismael

    in reply to: “undefined” popup when open pages #1429222

    Hi,

    Glad to know that this has been resolved. Please let us know in another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hey egouldmedia,

    Thank you for the inquiry.

    You should not switch to the default editor while building content with the Advance Layout Builder. If you need to add element from a page to another, you could save the content as template, create a CET or enable the debug mode. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/custom-element-templates/
    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#templates

    To switch the builder to debug mode and be able to manually copy and paste the builder shortcodes, please check the link below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Ismael

    in reply to: Title changes #1429220

    Hi,

    Thank you for the update.

    Looks like the post css file was not generated for the other portfolio item. Please try to temporarily disable the cache and compression plugin, then update the portfolio item.

    Best regards,
    Ismael

    in reply to: updating old version #1429069

    Hey Bjørn Clausen,

    Thank you for the inquiry.

    A lot has changed since version 4.2, so you may encounter a few errors after upgrading. We recommend cloning the current site to a staging environment, upgrade the theme, and then address any errors before making it live. After the update, make sure to the temporarily disable the Enfold > Performance > File Compression settings and purge the cache to regenerate the scripts and stylesheets.

    Best regards,
    Ismael

    in reply to: Posts Titles #1429068

    Hey Maggie,

    Thank you for the inquiry.

    You should be able to adjust the font size in the Enfold > General Styling > Typography tab or in the Enfold > Advanced Styling panel. Edit the h3 element.

    Best regards,
    Ismael

    in reply to: Removing Placeholder Images from Blog Entries #1428872

    Hi,

    Sorry about that. Try to replace the previous css with the following code.

    .fake-thumbnail .slide-image {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Custom icons are showing as blank #1428838

    Hi,

    Thank you for the inquiry.

    Where did you get the SVG files? Please note that only monocolored icons are allowed in the Iconfont Manager. And as mentioned by @Guenni007 earlier, make sure that the icon font conversions are visible in the fontello preview before downloading the set.

    Best regards,
    Ismael

    Hey Jürgen,

    Thank you for this info. We will forward it to our channel for further consideration.

    Best regards,
    Ismael

    in reply to: Tripadvisor icon is not displayed #1428727

    Hey christian.wien,

    Thank you for the inquiry.

    You may need to download the Trip Advisor icon from fontello.com and upload it to the Iconfont Generator. We can then adjust the avf_default_icons filter afterwards. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-

    Best regards,
    Ismael

    in reply to: General Styling theme color change not responding on pages #1428724

    Hey Eric,

    Thank you for the inquiry.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings, and disable the cache plugin in order to ensure that the changes take effect. By disabling the file compression settings, you will be able to make the necessary adjustments and updates without any conflicts. Once you have made the required modifications, you can re-enable the file compression settings to optimize the performance of your website.

    Best regards,
    Ismael

    in reply to: Fullscreen menu loading too slow #1428722

    Hi,

    Thank you for the update.

    We edited the code a bit. Please remove the previous code and replace it with the following.

    #top #wrap_all #av-burger-menu-ul>li {
        opacity: 100;
        position: relative;
        top: 0;
        transition: none;
        transform: none;
        left: 0;
        right: auto;
        text-align: left;
        border-bottom: 0.1em solid #fff!important;
        text-align: left;
        font-weight: 800;
        font-size: 28px;
        text-transform: uppercase;
    }
    
    #top #wrap_all #av-burger-menu-ul>li:first-child {
        border: none !important;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 6,421 through 6,450 (of 67,463 total)