Forum Replies Created

Viewing 30 posts - 24,901 through 24,930 (of 66,166 total)
  • Author
    Posts
  • in reply to: problem with tab #1029045

    Hi,

    How did you hide the “nl” section? You may need to hide it only after the required tab scripts are executed. You can use this snippet to apply a minimum width to the title container.

    add_action('wp_footer', 'ava_custom_script_tab_width');
    function ava_custom_script_tab_width(){
    	?>
    	<script type="text/javascript">
            (function() {
                const tabWidth = () => {
                    const s = document.getElementById('nl');
                    const t = s.querySelector('.av-tab-section-tab-title-container');
                    const tc = t.querySelectorAll('.av-section-tab-title');
                    let tw = 0;
                    let th = 0;
    
                    tc.forEach( tcc => {
                        tw += parseInt( tcc.offsetWidth, 10 );
                    });
    
                    t.style.minWidth = tw + 'px';
                }
    
                window.addEventListener( 'resize', tabWidth, false);
            })();
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    in reply to: Enfold contact form spam #1029027

    Hi,

    Thank you for using Enfold.

    You may need to change the from address or setup a SMTP so that your mail server will not mark emails as spams.

    More info here: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    in reply to: Transparent Color Section #1029024

    Hi,

    Have you tried muting the video? The new policy states that muted autoplay is always allowed.

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
    On mobile, the user has [added the site to their home screen].
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    Best regards,
    Ismael

    in reply to: Instagram Widget Not working in Footer #1029021

    Hi,

    Thanks for the update.

    Can you give us access to your file server? I would like to check the instagram script. Please post the FTP details in the private field.

    Best regards,
    Ismael

    Hey Roger,

    Thank you for using Enfold.

    Can you give us a screenshot of the issue? You can use imgur or dropbox. I would like to check the site but it’s on maintenance mode. Please post the login details in the private field.

    Best regards,
    Ismael

    Hey sky19er,

    Thank you for using Enfold.

    I found a minor syntax error in the css codes. Please use this css code for now.

    /* Tablet Portrait size to standard 960 (devices and browsers) */
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive.av-no-preview #top .av-medium-columns-4 .av-masonry-entry{width:24.90%;}
    .responsive.av-no-preview #top .av-medium-columns-3 .av-masonry-entry{width:33.3%;}
    .responsive.av-no-preview #top .av-medium-columns-2 .av-masonry-entry{width:49.80%;}
    .responsive.av-no-preview #top .av-medium-columns-1 .av-masonry-entry{width:100%;}
    }

    Best regards,
    Ismael

    in reply to: image link not working #1029013

    Hi,

    I would like to apologize for the late response. I can only see two “logos” inside the turquoise side bar, and none of them link to the “coursereport” site. Did you remove it?

    Best regards,
    Ismael

    Hi,

    Did you enable the theme’s Performance > File Compression settings? Please disable it temporarily and then add the css code again. Or post the login details in the private field so that we can check the site.

    Best regards,
    Ismael

    in reply to: Minification Enfold 4.5 #1029004

    Hi,

    It turned out that the theme minifies tested plugins or plugins that were included in this list.

    		//all plugins that start with the name "avia" are considered tested
    		$tested_plugins = apply_filters( 'avf_tested_plugin_list' , array(
    			'hello.php',
    			'akismet/akismet.php',
    			'layerslider/layerslider.php',
    			'tiny-compress-images/tiny-compress-images.php',
    			'woocommerce/woocommerce.php',
    			'shortpixel-image-optimiser/wp-shortpixel.php',
    			'optimus/optimus.php',
    			'wp-super-cache/wp-cache.php',
    			'comet-cache/comet-cache.php',
    			'comet-cache-pro/comet-cache-pro.php',
    			'duplicate-post/duplicate-post.php',
    			'wordpress-importer/wordpress-importer.php',
    			'wordpress-beta-tester/wp-beta-tester.php',
    			'worker/init.php', //managewp
    			'really-simple-ssl/rlrsssl-really-simple-ssl.php',
    			'bbpress/bbpress.php',
    		));
    
    

    You can use the “avf_tested_plugin_list” filter to add more plugins in that list. You can only include plugins that load their resources directly from the plugin directory, not from external sites.

    add_filter( 'avf_tested_plugin_list', 'avf_tested_plugin_list_mod', 10, 1 );
    function avf_tested_plugin_list_mod($plugins) {
        $plugins[] = 'your-plugin/your-plugin.php';
        $plugins[] = 'another-plugin/another-plugin.php';
        return $plugins;
    }
    

    Best regards,
    Ismael

    in reply to: WP Crowdfunding plugin conflict #1029000

    Hi!

    Did you install a multi themes plugin? The page with the campaign form is using a default theme. I would like to disable the plugin so that I can check the issue, but the plugins panel is hidden.

    Regards,
    Ismael

    in reply to: 502 Bad Gateway #1028996

    Hi,

    I would like to apologize for the late response. Where can we reproduce the issue? I don’t encounter any issue with a test page. (see private field)

    Best regards,
    Ismael

    in reply to: Transparent Header on Mobile doesn´t work on 4.5 #1028995

    Hi,

    The header is already transparent but there’s nothing underneath it, so it’s displaying the default body background. Add this css code inside the css media query to move the main container upwards.

    .responsive #top #main {
        margin-top: -80px;
    }

    Best regards,
    Ismael

    in reply to: Font-Size Icon Grid not applied #1028993

    Hi,

    Thank you for using Enfold.

    We’ll forward the issue to the dev team. You can use these css codes for now.

    .av_icongrid_title {
        font-size: 25px;
    }
    
    .av_icongrid_subtitle {
        font-size: 18px;
    }
    
    .avia-icongrid-icon {
        font-size: 50px;
    }
    
    .avia-icongrid-text {
        font-size: 20px;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    You can implement one of the blockquote styles here:

    // https://freefrontend.com/css-quote-styles/

    Example:

    @import url('https://fonts.googleapis.com/css?family=Special+Elite');
    
    blockquote {
    	font-weight: 100;
    	font-size: 1rem;
    	max-width: 600px;
    	line-height: 1.4;
    	position: relative;
    	margin: 0;
      padding: .5rem;
      border: none;
    }
    
    blockquote:before,
    blockquote:after {
    	position: absolute;
    	color: #f1efe6;
    	font-size: 8rem;
    	width: 4rem;
    	height: 4rem;
    }
    
    blockquote:before {
    	content: '“';
    	left: -3rem;
    	top: -2rem;
    }
    
    blockquote:after {
    	content: '”';
    	right: -3rem;
    	bottom: 1rem;
    }
    
    cite {
    	line-height: 3;
    	text-align: left;
    }
    

    Best regards,
    Ismael

    in reply to: Problem with the contact form. #1028356

    Hi,

    Thank you for the update.

    The form is being sent properly when I tested it (see private field). Please check the spam folder or ask your hosting provider why the mail server is not accepting the emails. You may need to setup a SMTP or change the from address.

    These steps should help: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    in reply to: Drop down menus and cart are transparent, recurring issue #1028355

    Hi!

    Thanks for the update.

    1.) I can’t add any products to the cart even when they’re in stock. I always get an error that the product is out of stock.

    2.) The brand’s logo link is invalid. There’s an extra slash before the product category name. Have you tried resetting the permalinks? How did you add those logo again? Please provide new login details in the private field.

    Best regards,
    Ismael

    in reply to: Custom Post Type page template #1028354

    Hey ncfan2030,

    Thank you for using Enfold.

    Do you want to implement the grid layout on the “press” page? You may need create a duplicate of the archives.php template and rename it to the name of the template used by the “press” pages. Please contact the plugin author for more info.

    Best regards,
    Ismael

    in reply to: Enfold Update Failed – 404 Page Not Working #1028352

    Hey Eleina_Shinn,

    Thank you for using Enfold.

    The version 4.4.1 is still using the old Envato API, which is now deprecated. You have to upgrade the theme manually via FTP for now. You’ll be able to do an automatic update again once you’re on version 4.5.

    Best regards,
    Ismael

    in reply to: Titel in angepasster Masonry-Blog Galerie #1028351

    Hi,

    I can’t see the issue in those pages and the screenshot is no longer available. Did you remove the modification?

    Best regards,
    Ismael

    in reply to: Top bar menu: sub item #1028348

    Hi,

    The header_meta container, where the “castellano” menu item resides, is lower in the stack order or is being covered by the header_main container, which is where the logo is. You may need to move the logo to the header_meta container and then increase it’s z-index property, so it’s higher than that of the header_main container or move the “castellano” menu item to the header_main or include it on the main menu.

    Try this code and you’ll see the issue:

    #header_meta {
        z-index: 30;
    }

    Best regards,
    Ismael

    in reply to: The quality of the gallery pictures in the store #1028345

    Hi,

    The theme’s and the default WooCommerce gallery are virtually the same, but the latter has additional features like image variation switch and image zoom.
    I tried to adjust the thumbnails on the theme’s default gallery but every modification that I used didn’t work.

    Best regards,
    Ismael

    Hi,

    That is for the blog or single post pages. Did you modify the loop-search.php file to display the thumbnails? Please post the content of the modified file on pastebin.com.

    Best regards,
    Ismael

    in reply to: Google Structured Data Errors rich snippet infected #1028342

    Hi,

    Have you tried setting a featured image to that page? That will probably fix the “image” schema issue.

    image
    A value for the image field is required.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Are you using WPML? You may need to use a conditional function to change the autoresponse message for each language.

    switch (ICL_LANGUAGE_CODE) {
        case 'en':
            $form_args['autoresponder_subject'] = 'Thank you for your inquiry!';
            break;
        case 'es':
            $form_args['autoresponder_subject'] = '¡Gracias por su consulta!';
            break;
        case 'de':
            $form_args['autoresponder_subject'] = 'Vielen Dank für Ihre Anfrage!';
            break;
        default:
            $form_args['autoresponder_subject'] = 'Thanks!';
    }
    
    return $form_args;

    Best regards,
    Ismael

    Hi,

    You can override that template in your child theme. Have you tried that?

    Best regards,
    Ismael

    in reply to: Ajax error when used with ProfileGrid plugin #1028327

    Hi,

    The theme’s preloader script initiates a browser redirect when you click on a link. You can add the “no-transition” class attribute to that button or link if you want to exclude it from the preloader script.

    Best regards,
    Ismael

    in reply to: Update 4.5 – Images in Slide Show #1028325

    Hi,

    Is it still not working when you enable the compression back?

    Best regards,
    Ismael

    Hey KELmedia,

    Thank you for using Enfold.

    This is what I got when I ran the usability or mobile friendly test.

    // https://imgur.com/a/VPKKx6N

    Are you seeing any layout issues on mobile view? If there are none, you can just ignore those warnings because they’re probably false positives.

    Best regards,
    Ismael

    in reply to: Search error #1028309

    Hi!

    This is all I get: https://imgur.com/a/qsBOS0Y

    Please open a new thread and then post the FTP details in the private field.

    Regards,
    Ismael

    in reply to: Layout problems with 2 rows #1028308

    Hi,

    Unfortunately, you can’t add nested columns inside a tab section. The layout that you’re after is still possible though, but you have to extract the actual html code of the icon boxes and then put it inside a text or code block. Example here:

    // https://marokko-adventures.de/wp-admin/post.php?post=1593&action=edit

    This is the extracted html code of the icon boxes below the tab section.

    // https://pastebin.com/bmFZFBfL

    You can extract it directly from the browser inspector.

    // https://www.lifewire.com/view-html-source-in-chrome-3466725

    Best regards,
    Ismael

Viewing 30 posts - 24,901 through 24,930 (of 66,166 total)