Forum Replies Created

Viewing 30 posts - 6,571 through 6,600 (of 67,602 total)
  • Author
    Posts
  • 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

    in reply to: text block too wide for mobile #1428721

    Hi,

    Thank you for the info.

    We adjusted the html of the circles and edited the code in the Quick CSS field to center align the items and the main image. Please make sure to purge the cache and do a hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: doppeltes burger menu #1428720

    Hi,

    Thank you for the update.

    Adding this css code should hide the burger menu icon inside the main header container.

    @media only screen and (max-width: 1024px) {
      /* Add your Mobile Styles here */
      .html_header_top .av_bottom_nav_header .av-logo-container .main_menu li.av-burger-menu-main.menu-item-avia-special {
        display: none;
      }
    }

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterward.

    Best regards,
    Ismael

    in reply to: Spinning Wheel #1428719

    Hi,

    Thank you for the update.

    The Advance Layout Builder (ALB) seems to be loading correctly when we checked the Home page. We provided a screenshot in the private field. In which page can we reproduce the issue?

    Best regards,
    Ismael

    in reply to: Layout Architect #1428718

    Hi,

    Let us know if you have more questions. We will keep the thread open.

    Best regards,
    Ismael

    in reply to: Fonts #1428717

    Hi,

    Thank you for the update.

    Did you select the first or second option in the Default Cookie Behavior settings? You may need to purge the cache and perform a hard refresh before testing the page again. If the issue persists, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: White strip impossible to remove #1428716

    Hi,

    We can’t see the micro white line or border when we checked the site. Please refer to the screenshot below.

    Screenshot: https://1drv.ms/i/s!AjjTfXSRbKTvgs1v7e3iH1EqJevsRA?e=Sabave

    Best regards,
    Ismael

    in reply to: Text size and formatting is wrong on Mobile view #1428715

    Hi,

    Thank you for the update.

    This is how the site looks on our end.

    Screenshot: https://1drv.ms/f/s!AjjTfXSRbKTvgs1ufnjVlXViDcnFwQ?e=ez75zV

    As you can see, the “New Patient Offers” section has a background and border. Please try checking the site in incognito mode or perform a hard refresh.

    Best regards,
    Ismael

    in reply to: enfold minimal photos home page photos #1428714

    Hey wosky,

    Thank you for the inquiry.

    The layout of the items in the Masonry element changes automatically based on the size of the uploaded images. To maintain the same layout as in the demo, make sure that the uploaded images have the same size and aspect ratio as the demo images.

    Best regards,
    Ismael

    in reply to: PHP 8.2.13 update problem #1428713

    Hi,

    Thank you for the update.

    PHP Warning: Use of undefined constant \xe2\x80\x98ALTERNATE_WP_CRON\xe2\x80\x99

    We didn’t find any errors related to the theme. Most of the fatal errors are from the plugin bwp-recaptcha. The constant ALTERNATE_WP_CRON is also not generated by the theme, so this was probably added to the wp-config.php file manually.

    This is the fatal error generated by the bwp-recaptcha plugin.

    mod_fcgid: stderr: thrown in /var/www/vhosts/doshacen1.com.mx/httpsdocs/wp-content/plugins/bwp-recaptcha/bwp-recaptcha.php on line 40
    

    You may need to contact the plugin developers for more info.

    Best regards,
    Ismael

    in reply to: Bug Report #1428655

    Hey!

    We will include a fix in the next patch. If you would like to test it yourself, please edit the enfold/config-templatebuilder/avia-shortcodes/masonry_gallery/masonry_gallery.php and the enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php file, remove everything and replace it with the following code.

    masonry_gallery.php: https://pastebin.com/YudgryRc
    masonry_entries.php : https://pastebin.com/nyM4istw

    Best regards,
    Ismael

    in reply to: Tab Section – 1st Tab spacing with next element #1428653

    Hi,

    Thank you for the update.

    Did you set the Layout > Height > Content height settings of the Tab Section element to the first option (Same height for all tabs)? This will retrieve the height of the tallest section and apply it to other sections. You should also check each tab’s Styling > Alignment > Vertical align settings and adjust them from Middle to Top.

    Best regards,
    Ismael

Viewing 30 posts - 6,571 through 6,600 (of 67,602 total)