Forum Replies Created

Viewing 30 posts - 9,121 through 9,150 (of 67,443 total)
  • Author
    Posts
  • in reply to: Reversing elements in colour section on mobile #1378349

    Hi,

    The items in the rows are correctly reversed on mobile view. Did you find the Column Behaviour When Fullwidth settings in the Row Settings > Row Screen Options toggle?

    Best regards,
    Ismael

    in reply to: Flipbox – minimum height not work #1378347

    Hi,

    Did you override any templates in the child theme? The minimum height value should be automatically applied to the article-icon-entry element, but this is not happening in your installation. Please try to update the theme from version 5.2.1 to the latest version 5.3.1.1. Let us know if the upgrade helps.

    Best regards,
    Ismael

    in reply to: Mobile look cuts off some Headlines #1378346

    Hi,

    Thank you for the update.

    Have you tried decreasing the font size a bit more? To remove the date from the masonry blog, please try to add this css code.

    .av-masonry-date {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: shop edit #1378239

    Hey Margrubi,

    Thank you for the inquiry.

    Are you referring to the custom shop page? You can edit it using the Advance Layout Builder (ALB). (see private field)

    If you want to modify the default shop page, please check the following article.

    // https://woocommerce.com/posts/customize-product-page/

    Best regards,
    Ismael

    in reply to: Nach Update auf PHP8.0 Website Down #1378236

    Hi,

    Please provide the login details in the private field so that we can check the issue further. Did you try disabling the file compression settings as suggested? You can find it in the Enfold > Performance panel.

    Best regards,
    Ismael

    in reply to: Avia Layout Editor on Posttype The Events Calendar #1378219

    Hey Tobias,

    Thank you for the inquiry.

    You have to use the avf_alb_supported_post_types filter instead.

    function avf_alb_supported_post_types_mod( array $supported_post_types )
    {
      $supported_post_types[] = 'tribe_events';
      return $supported_post_types;
    }
    add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);
    

    Please note that enabling the ALB for the events has some limitations. Some elements for events are not available in the builder and a few of the default features of the event post type might not work as expected.

    Best regards,
    Ismael

    in reply to: change post title font color #1378218

    Hey Portizar,

    Glad to know that this issue has been resolved! Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: I can't install the theme #1378217

    Hey Aldopo1973,

    Thank you for the inquiry.

    Have you tried to manually upload the theme files to your server via S/FTP? Please check the documentation below for more info about manual installation.

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

    Best regards,
    Ismael

    in reply to: Nach Update auf PHP8.0 Website Down #1378216

    Hey AlinaBreitbach,

    Thank you for the inquiry.

    The site seems to be loading correctly on our end. Did you figure out the issue? If you can still see the problem, please try to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Use category variable for portfolio item base #1378215

    Hi!

    By “first category”, we meant the very first category where a specific portfolio item belonged. If the portfolio item belongs to multiple categories, the modification above will select the very first category and append it to the base URL.

    Best regards,
    Ismael

    in reply to: Heading (f.e. H1, ..) same width as text/content #1378213

    Hey padweb,

    Thank you for the inquiry.

    Did you select centered layout in the Heading Style settings? Try selecting left or right layout to move the edge of the column instead of aligning the heading at the center of the column.

    Best regards,
    Ismael

    in reply to: Multiple Locations menu and pages #1378212

    Hey bemodesign,

    Thank you for the inquiry.

    Have you tried adding the locations as dropdowns or as child menu items? Would you mind providing a screenshot of the layout? You can use imgur, savvyify or dropbox.

    Best regards,
    Ismael

    in reply to: Use category variable for portfolio item base #1378210

    Hey manchust,

    Thank you for the inquiry.

    This is possible but you can only append the first category after the base URL. Please create a site backup or restore point (this is important), then add the following code in the functions.php file. Afterwards, go to the Settings > Permalinks panel and resave the settings to flush the permalinks.

    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod', 10);
    function avf_portfolio_cpt_args_mod($args) {
    	$args['rewrite']['slug'] = '%portfolio_entries%';
            $args['rewrite']['with_front'] = false;
    	return $args;
    }
    
    add_filter( 'post_type_link', 'ava_remove_custom_slug', 9999, 3 );
    function ava_remove_custom_slug( $post_link, $post, $leavename ) {
        if ( 'portfolio' != $post->post_type || 'publish' != $post->post_status ) {
            return $post_link;
        }
    
        $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
    
        return $post_link;
    }
    
    add_filter('post_link', 'portfolio_permalink', 1, 5);
    add_filter('post_type_link', 'portfolio_permalink', 1, 5);
    
    function portfolio_permalink($permalink, $post_id, $leavename) {
        if (strpos($permalink, '%portfolio_entries%') === FALSE) return $permalink;
    
            $post = get_post($post_id);
            if (!$post) return $permalink;
    
            $terms = wp_get_object_terms($post->ID, 'portfolio_entries');
            if (!is_wp_error($terms) && !empty($terms) && is_object($terms[0]))
            	$taxonomy_slug = $terms[0]->slug;
            else $taxonomy_slug = 'no-portfolio';
    
        return str_replace('%portfolio_entries%', $taxonomy_slug, $permalink);
    }
    

    Best regards,
    Ismael

    in reply to: After Update PHP 7.4 to 8.1 #1378209

    Hi,

    Warning: Constant hr_SIS_dump_mode already defined in /home/httpd/vhosts/dorfgeschichte.li/archiv.dorfgeschichte.li/wp-content/themes/enfold-child/class-ngg-smart-image-search-public-update-pd.php on line 13

    Did you override the class-ngg-smart-image-search-public-update-pd.php in your child theme? The error is generated from that file.

    Best regards,
    Ismael

    in reply to: Flipbox – minimum height not work #1378208

    Hi,

    Thank you for the info.

    The data-min-height attribute is properly set to 410px but for some reason the min-height property doesn’t get applied to the corresponding element. Please temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. If the issues persist, please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Import demo shop on clean installation WordPress #1378207

    Hey cardoro,

    Thank you for the inquiry.

    Did you try to manually import the demo using the xml files? Please check the documentation below.

    // https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo

    Or post the login details (WP and FTP) in the private field and we will try import the demo for you.

    Best regards,
    Ismael

    in reply to: Site too slow #1378206

    Hey Margrubi,

    Thank you for the inquiry.

    The site loads fine on our end. Have you done any speed optimization to the site yet such as compressing the images and minifying the resources? Did you install a cache plugin? If you haven’t done any of these, please check the following articles and follow the recommendations to improve the site’s loading speed.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: RECAPTCHA #1378205

    Hey woogie07,

    Thank you for the inquiry.

    The spam protection widget seems to be working correctly. Have you tried installing a security plugin such as Sucuri or WordFence? You can also try a different contact form plugin like Contact Form 7 and install additional security extensions. Please check the links below.

    // https://wordpress.org/plugins/contact-form-7-honeypot/\
    // https://wordpress.org/plugins/wpcf7-recaptcha/

    Best regards,
    Ismael

    in reply to: Reversing elements in colour section on mobile #1378204

    Hi,

    Where can we check the issue again? The link to the test page above requires authentication. Please provide the account details in the private field.

    Best regards,
    Ismael

    in reply to: How can I display the tag above the title on post blog? #1378203

    Hey hhlee98815,

    Thank you for the inquiry.

    Are you using the Blog Posts element? If yes, then you can try this filter in the functions.php file.

    function avf_post_slider_entry_excerpt_mod($excerpt, $prepare_excerpt, $permalink, $entry ) {
        $tags = get_the_tags($entry->ID);
        $tags_output = "";
        if('blog-meta-tag' == avia_get_option('blog-meta-tag') && $tags ){
            $tags_output .= '<div class="post-tags" style="display:block"><p class="post-tags-inner">';
            foreach ( $tags as $tag ) {
                $tags_output .= '<a href="  '.get_tag_link( $tag->term_id ).'  ">';
                $tags_output .= '<strong> '.$tag->name.' </strong>';
                $tags_output .= '</a>' ;
                if(next($tags)){
                    $tags_output .= '<span class="text-sep"> | </span>' ;
                }
            }
            $tags_output .= '</div>';
            $excerpt = $tags_output . $excerpt;
        };
        return $excerpt;
    }
    add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_mod', 10, 4);

    Best regards,
    Ismael

    in reply to: portfolio grid – portfolio selection in lightbox mode #1378202

    Hey mediafacto,

    Thank you for the inquiry.

    Please note that the category sort will not be able to control or filter the items in the lightbox. All items in the page prior to sorting will still display in the lightbox container.

    Best regards,
    Ismael

    in reply to: Disable lightbox @media #1378201

    Hi,

    We mistakenly used min-width and min-height instead of max-width and max-height in the css media query. Sorry about that. Please try the css code again, and make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards. If the issue persists, please provide the login details in the private field so that we can test the modification.

    Best regards,
    Ismael

    in reply to: permission bug with iframe code when logged like a editor #1378200

    Hey mediafacto,

    Thank you for the inquiry.

    The builder doesn’t accept iframes or input tags by default. You may need to create a custom shortcode for the iframe so that you don’t have to add it directly to the layout builder.

    // https://codex.wordpress.org/Shortcode_API

    Best regards,
    Ismael

    in reply to: Custum cookies deleted after redirect #1378199

    Hey Willem-Jan,

    Thank you for the inquiry.

    Your custom cookie gets removed because when the cookie consent is enabled and the user hasn’t agreed to accept cookies, the theme automatically blocks and removes the cookies from the local storage. The script or function responsible for this can be found in the enfold\js\avia-snippet-cookieconsent.js around line 528. You may need to modify the function to exclude your custom cookies. Unfortunately, this modification is beyond the scope of support.

    Best regards,
    Ismael

    in reply to: Reversing elements in colour section on mobile #1378089

    Hi,

    Thank you for the update.

    Have you tried adjusting the Advanced > Responsive > Mobile Breakpoint Position option to adjust the position of the column on mobile view? You can also create another set of columns with different order and use the Advanced > Responsive > Element Visibility options to toggle the elements’ visibility on different screen sizes.

    Best regards,
    Ismael

    in reply to: Flipbox – minimum height not work #1378088

    Hey Marcos Q.,

    Thank you for the inquiry.

    The Minimum Height – For Flipbox Only option seems to be working correctly on our end. Where can we check the issue? Please provide the site URL in the private field.

    Best regards,
    Ismael

    in reply to: Align the icon box #1378087

    Hey yifatcohen,

    Thank you for the inquiry.

    Would you mind providing a screenshot of the section that you’d like to modify? You can use imgur, savvyify or dropbox for the screenshot. Have you tried using Columns to align the elements?

    Best regards,
    Ismael

    in reply to: Cooke bar message #1378086

    Hi,

    Thank you for the update.

    You can change the cookie consent bar message from the Enfold > Privacy & Cookies > Cookie Handling > Cookie Consent Message Bar section. Look for the Message field.

    Best regards,
    Ismael

    in reply to: Increase size of text panel in Post window #1378085

    Hi,

    You can actually adjust the height of the mce-panel and make it as tall as the textarea but the mce-flow-layout-item container (the styling row containing the existing elements) will not be immediately visible while editing.

    .avia-modal-edit-alb-element .mce-edit-area.mce-container.mce-panel {
        height: 1000px !important;
    }
    

    Best regards,
    Ismael

    in reply to: Disable lightbox @media #1378083

    Hi,

    For iPhone SE 2 device, you can use this css media query.

    
    /* 1334x750 pixels at 326ppi */
    @media only screen 
        and (max-width: 320px) 
        and (max-height: 568px) 
        and (-webkit-device-pixel-ratio: 2) 
    { 
        a.lightbox {
           pointer-events: none !important;
        }
    }
    @media only screen and (-webkit-min-device-pixel-ratio: 2),
                        only screen and (min--moz-device-pixel-ratio: 2),
                        only screen and (-o-min-device-pixel-ratio: 2/1),
                        only screen and (min-device-pixel-ratio: 2)
    {  
        a.lightbox {
           pointer-events: none !important;
        }
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 9,121 through 9,150 (of 67,443 total)