Forum Replies Created

Viewing 30 posts - 31 through 60 (of 67,003 total)
  • Author
    Posts
  • in reply to: Recent Posts-Widget #1492383

    Hey xela,

    Thank you for the inquiry.

    The default Recent Posts widget doesn’t include this option, but you can install plugins like the ones listed below to display posts from selected categories.

    https://wordpress.org/plugins/category-posts/
    https://wordpress.org/plugins/widget-recent-posts-with-category-choice/

    Hope this helps.

    Best regards,
    Ismael

    in reply to: Menu Element height and active / hover broken #1492382

    Hi,

    Thank you for the update.

    Please add this code to fix the “uber mich” issue.

    .header_color .main_menu ul:first-child > li > a {
        color: var(--enfold-header-color-color) !important;
    }
    
    .header_color.header-scrolled .main_menu ul:first-child > li > a {
        color: var(--enfold-header-color-meta) !important;
    }

    Then use this code to adjust the color of the active menu on scroll.

    .header_color.header-scrolled .main_menu ul:first-child > li.current-menu-item > a {
        color: #0d3c63 !important;
    }

    Make sure to add this code to the bottom of the previous code.

    Best regards,
    Ismael

    in reply to: enfold version support #1492337

    Hey aboderc,

    Thank you for the inquiry.

    The automatic update in the current version (5.6.9) will no longer work, so you will have to download the latest version from your Themeforest account and upload it manually to your server via FTP. Please check the documentation below for more info.

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

    Please make sure to create a site backup or restore point before proceeding. It’s also recommended to perform the update on a staging site and fix any issues that may arise before transferring it to the live site.

    Let us know if you have more questions.

    Best regards,
    Ismael

    in reply to: WCAG (Web Content Accessibility Guidelines) #1492336

    Hey formvermittlung,

    Thank you for the inquiry.

    The theme should be fully accessible, allowing navigation using keyboards or tabbing. It also has dedicated accessibility support in Enfold > Theme Extensions > Accessibility. Please read the notes in the options panel. Some features, such as “Skip to content”, are not available by default but can be easily added using accessibility plugins like the ones listed below and element animations can be disabled if necessary.

    https://wordpress.org/plugins/search/accessibility/

    Hope this helps.

    Best regards,
    Ismael

    in reply to: Post fonts are larger on mobile #1492334

    Hi,

    Thank you for the update.

    We moved the screenshot to the private field. Unfortunately, your screenshot is not accessible. Please try to use freeimage.host or postimages.org and share the screenshot in the private field if you want it to remain private.

    Best regards,
    Ismael

    in reply to: Center Footer Items On Mobile #1492333

    Hey envisageiam,

    Thank you for the inquiry.

    The footer widgets are center-aligned on mobile view when we checked. Did you figure this out? (see private field)

    Best regards,
    Ismael

    in reply to: Mobile Sticky Header Not Working #1492332

    Hi,

    Thank you for the update.

    Please create a test page and provide the page URL — screenshots will also help. You can use platforms like Freeimage, ImgBB, PostImages or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: JS für ProvenExpert funktioniert nicht mehr #1492328

    Hi,

    Thank you for the update.

    We can now access the login page, but the account above is invalid. Please check the login info carefully. (see private field)

    Best regards,
    Ismael

    in reply to: Background image on Content Slider #1492326

    Hi,

    Thank you for the update.

    We can’t find the corresponding css styles for the layout. Did you add the css code? Please try to toggle or temporarily disable the Enfold > Performance > File Compression settings and provide the login details in the private field so we can check further.

    Best regards,
    Ismael

    in reply to: Menu Element height and active / hover broken #1492324

    Hi,

    Thank you for the screenshot.

    To adjust the color of the active language menu item and the hover state of the default menu items, add this css code.

    .header_color .main_menu ul:first-child > li a:hover {
        color: #ffffff;
    }
    
    .menu-item-language-current a:after {
        color: #ffffff;
    }
    
    .header-scrolled .menu-item-language-current a:after {
        color: #0e3c63;
    }

    For the Kontakt menu item, go to Appearance > Menus and set the Menu Style to Button Style (colored).

    fRXBLRn.md.png

    Let us know the result.

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider on Main Page #1492323

    Hi,

    Thank you for the inquiry.

    You can set them as follows:

    Background Attachment: Fixed ( this won’t matter on mobile view because it will default to scroll )
    Background Image Position: Center Center ( adjust depending on which part of the image you want to focus on )
    Background Repeat: Stretch to fit ( set to Stretch to fit (cover) to make sure the image fills the entire container, or Scale to fit (contain) if you want the entire image to remain fully visible )

    Hope this helps.

    Best regards,
    Ismael

    in reply to: Top image height doesn’t load immediately on mobile #1492321

    Hey Tanja,

    Thank you for the inquiry.

    The image in the first section seems to be displaying correctly in full on mobile view — screenshot below.

    We tried checking your screenshot above, but it’s private. Please make the screenshot accessible or use other platforms like FreeImage, PostImages or Imgur.

    Best regards,
    Ismael

    Hey Oriano,

    Thank you for the inquiry.

    Adding this css code should remove the sticky placeholder in the mobile view.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .sticky_placeholder {
        display: none;
      }
    }
    

    Best regards,
    Ismael

    in reply to: File field in contact form #1492319

    Hey mdeboli,

    Thank you for the inquiry.

    This option is not available by default, unfortunately. We recommend installing a plugin like Contact Form 7 or WPForms if you need more advanced form input fields. Hope this helps.

    Best regards,
    Ismael

    in reply to: CPT Sticky Posts in Masonry #1492318

    Hi,

    Thank you for the info.

    You can also try this code — it’s the same, just slightly modified.

    add_filter( 'avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2 );
    function avia_masonry_entries_query_mod( $query, $params ) {
    
        if ( empty( $params['taxonomy'] ) ) {
            return $query;
        }
    
        $sticky = get_option( 'sticky_posts', array() );
    
        $posts = get_posts( array(
            'post_type'      => 'any',
            'posts_per_page' => -1,
            'tax_query'      => array(
                array(
                    'taxonomy' => $params['taxonomy'],
                    'field'    => 'term_id',
                    'terms'    => $params['terms'] ?? array(),
                )
            ),
            'post__not_in'   => $sticky,
            'fields'         => 'ids',
        ) );
    
        $include = array_unique(
            array_map( 'intval', array_merge( $sticky, $posts ) )
        );
    
        $query['post__in']       = $include;
        $query['posts_per_page'] = 6;
        $query['orderby']        = 'post__in';
    
        return $query;
    }
    

    Best regards,
    Ismael

    in reply to: Mobile Sticky Header Not Working #1492281

    Hi,

    Thank you for the update.

    It seems to be working correctly on our end. Please provide the site URL in the private field so we can check this further –screenshots would also be helpful.

    Best regards,
    Ismael

    in reply to: weiterlesen link, read more.. #1492280

    Hey rixi,

    Thank you for the inquiry.

    The Text Block element has an option called Fold/Unfold, which can be enabled in the Content > Fold/Unfold panel, just below the text editor. You can use this to hide part of the text, display only a portion and add a “read more” link. Let us know if this works for you.

    fA4Cucv.md.png

    Best regards,
    Ismael

    in reply to: Menu Element height and active / hover broken #1492279

    Hi,

    Thank you for the info.

    We get the following error when we try to access the wp-admin or wp-login page. Did you change the login URL? Please include it in the private field.

    Du bist leider nicht berechtigt, auf diese Seite zuzugreifen.

    Would you mind posting the screenshot again using freeimage.host? The one above is not loading on our end.

    Best regards,
    Ismael

    in reply to: border and distance #1492278

    Hey schweg33,

    Thank you for the inquiry.

    Please add this css code to reduce the height of the submenu and apply a border to it.

    #top .sticky_placeholder {
        height: 30px !important;
        max-height: 30px !important;
    }
    
    #top .av-submenu-container {
        min-height: 30px;
        line-height: 1em;
        border-color: #b1b1b1;
    }
    
    #top .av-subnav-menu > li {
        padding: 8px 0;
        display: inline-block;
    }

    fAryquf.th.png

    Best regards,
    Ismael

    in reply to: JS für ProvenExpert funktioniert nicht mehr #1492277

    Hey agentur2c,

    Thank you for the inquiry.

    We tried logging in to the site but received a 403 Forbidden error. Are you restricting access to the site based on certain countries or IP addresses? Please remove the restriction and provide a screenshot of the issue so we can investigate it properly.

    Best regards,
    Ismael

    in reply to: Table – Column\ Row highlight #1492276

    Hey invulon,

    Thank you for the inquiry.

    This is possible with a custom script and a few styling changes. Please add the following code to your functions.php file:

    add_action('wp_footer', function() {
    ?>
    <script>
    jQuery(function($){
    
        $('.avia-heading-row th').each(function(){
            var text = $(this).text();
            $(this).html('<span class="av-
    rotated-text">' + text + '</span>');
        });
    
    });
    </script>
    <?php
    

    Then add this css code to rotate the text inside the heading row.

    #top .avia-table th {
        height: 200px;
    }
    
    #top .avia-table th .av-rotated-text {
        display: inline-block;
        transform: rotate(90deg);
        transform-origin: left bottom;
        white-space: nowrap;
    }

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider on Main Page #1492275

    Hi,

    Thank you for the inquiry.

    Yes, you can use the Color Section element instead of the slider if you need to include additional content inside. The image can be applied as a background in the Styling > Background Image panel.

    fArYmFI.md.png

    Hope this helps.

    Best regards,
    Ismael

    in reply to: Purchased extended support but can't post #1492274

    Hey James Halk,

    Thank you for the inquiry.

    You will have to register an account using your purchase code on the following page.

    https://kriesi.at/support/register/

    Once registered, you can open an inquiry in the forum using the form below.

    https://kriesi.at/support/forum/enfold/#new-post

    Let us know if you have more questions.

    Best regards,
    Ismael

    Hey Krotona_Institute777,

    Thank you for the inquiry.

    This seems to be an issue with the LayerSlider plugin. Are you using any sliders from this plugin? If not, you can disable it under Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin. Please let us know the result.

    Best regards,
    Ismael

    in reply to: Post fonts are larger on mobile #1492272

    Hey Tanja,

    Thank you for the inquiry.

    The font displays normally on our end when tested on mobile devices.

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, ImgBB, PostImages or Dropbox to upload and share the screenshot.

    Best regards,
    Ismael

    in reply to: Theme crashes site #1492271

    Hey SimplifiedIdeas,

    Thank you for the inquiry.

    Looks like there’s a custom Enfold plugin called “enfold-wp-plugin” installed in the site, which is where the error is generated from. You may need to disable this plugin temporarily either by renaming the folder in the wp-content > plugins folder or completely deleting it. Please make sure to create a site backup before proceeding.

    Best regards,
    Ismael

    in reply to: Breadcrumbs portfolio grid alignment #1492243

    Hey lara666,

    Thank you for the inquiry.

    You may have forgotten to include the link in the private field. Please provide the site URL so we can check the page. If you need to adjust the position of the default breadcrumb in the title container, try this css code:

    .title_container .breadcrumb {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    Best regards,
    Ismael

    in reply to: Menu Element height and active / hover broken #1492240

    Hi,

    Thank you for the screenshot.

    Have you tried removing this css code?

    #top #header.header-scrolled a {
        color: #ffffff !important;
    }

    If you can provide the login details in the private field, we’ll take a closer look.

    Best regards,
    Ismael

    in reply to: Woocommerce Produkte ausblenden #1492239

    Hi,

    Thank you for the info.

    Are you referring to the search icon in the header? If so, please replace the previous code with the following filter:

    function ava_avf_ajax_search_query_mod( $query_string ) {
        parse_str( $query_string, $query_args );
    
        if ( class_exists( 'WooCommerce' ) && ( isset( $query_args['post_type'] ) && $query_args['post_type'] === 'product' ) ) {
            $meta_query = isset( $query_args['meta_query'] ) ? (array) $query_args['meta_query'] : array();
    
            $meta_query[] = array(
                'key'     => 'catalog_visibility',
                'value'   => array( 'hidden', 'exclude-from-search' ),
                'compare' => 'NOT IN',
            );
    
            $query_args['meta_query'] = $meta_query;
            $query_string = http_build_query( $query_args );
        }
    
        return $query_string;
    }
    add_filter( 'avf_ajax_search_query', 'ava_avf_ajax_search_query_mod' );
    

    Best regards,
    Ismael

    in reply to: form: visualisation difference #1492237

    Hi,

    Thank you for the inquiry.

    Please try this css code:

    #top .av-custom-form-color * {
        color: #333;
    }

    Result:

    Screenshot 2025 12 08 at 3 10 28 PM

    Best regards,
    Ismael

Viewing 30 posts - 31 through 60 (of 67,003 total)