Forum Replies Created

Viewing 30 posts - 24,031 through 24,060 (of 66,739 total)
  • Author
    Posts
  • in reply to: Increase columns for upsells and cross-sells products #1069276

    Hi,

    Ah, yes. I can see it now. Please add this css code.

    div.cross-sells .products .product {
        margin: 0 1% 1% 0;
        width: 18.6%;
    }

    Best regards,
    Ismael

    Hi,

    I found the issue in the script. Please edit the framework > js > avia_recaptcha.js file, look for this code around line 67:

    var forms = document.getElementsByTagName( 'form' );	
    

    .. and replace it with:

    var forms = document.querySelectorAll( '.av-form-recaptcha' );	
    

    Best regards,
    Ismael

    Hi,

    UPDATE: I was able to reproduce the issue on my end. I’ll get back to you once I found the problem.

    Best regards,
    Ismael

    Hi,

    Could you give us a screenshot of the issue?

    After enabling the enfold-recaptcha package

    Are you using the plugin? The option is now available on version 4.5.4. Please remove the plugin and then upgrade the theme to the latest version. Let us know if the issue persists.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    Those tags and attributes were added manually inside the very first text block in the page. They are not generated by the theme. You can remove it directly from the the text block element.

    // https://pastebin.com/JDsqNxcV

    Best regards,
    Ismael

    in reply to: Enfold problems with multiple text boxes #1068800

    Hi,

    The site is not loading properly now. Is the server down? Please check the code inside the child theme’s style.css file.

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I enabled the code in the functions.php file and edited it a bit. It works properly now.

    Best regards,
    Ismael

    Hi,

    Yes, the verification will run in the background automatically when you choose v3, no widget.

    // https://developers.google.com/recaptcha/docs/v3

    Best regards,
    Ismael

    in reply to: Re: Issue with Ticket #1051026 (already closed) #1068795

    Hi,

    Thanks for the update.

    Yes, we would like to access the site. Please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: picture problem #1068792

    Hi,

    Alright. We’ll close the thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Move Post meta data below post title #1068791

    Hi,

    Thanks for the update.

    We added this script in the functions.php file:

    // move post meta info
    add_action('wp_footer', 'avf_move_post_meta');
    function avf_move_post_meta(){
    ?>
    <script type="text/javascript">
    (function() {
    	var body = document.getElementsByTagName( 'body' )[0];
        var entry = document.querySelectorAll(".entry-content-wrapper");
    	var meta = null;
    	var title = null;
    	
        if( entry ) {
    		if( body.classList.contains( 'single' ) ) {
    			meta = entry[0].querySelector(".post-meta-infos");
        		title = entry[0].querySelector(".av-heading-wrapper");
    			title.parentNode.insertBefore(meta, title.nextSibling);
    		} else {
    			for (var i = 0; i < entry.length; ++i) {
      				meta = entry[i].querySelector(".post-meta-infos");
    				title = entry[i].querySelector(".av-heading-wrapper");
    				title.parentNode.insertBefore(meta, title.nextSibling);
    			}
    		}     
        }
    })();
    </script>
    <?php
    }
    

    Please purge the cache and disable the minification prior to checking the page.

    Best regards,
    Ismael

    in reply to: Blurry text on Chrome #1068790

    Hi,

    please note that last week, the blur was not present on a second PC

    Are you sure that it’s not something in your hardware configuration or specs, perhaps, something in the video card or graphic configuration? Anyway, I can’t access that screenshot. Please upload it on imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Enfold Replaces Single-Event.php and removes JSON markup #1068759

    Hi,

    Thank you for using Enfold.

    Edit the config-events-calendar > views > single-event.php file, look for this code around line 19:

    
    <div id="tribe-events-content" class="tribe-events-single vevent hentry">
    

    … and then replace it with:

    
    <div id="tribe-events-content" class="tribe-events-single">
    

    We removed the “vevent hentry” as suggested. Let us know if that changes anything.

    Best regards,
    Ismael

    in reply to: Make Subscribe section same width as Comments section #1068758

    Hi,

    Use this css code to adjust the height of the button.

    .comment-form input[type="submit"], .comment-form #submit, .comment-form .button {
        padding: 13px 10px 14px;
    }

    Best regards,
    Ismael

    in reply to: Print Version – base.css #1068755

    Hey UPON,

    Thank you for using Enfold.

    You can put all your custom print styles inside a print css media query.

    // https://joshuawinn.com/css-print-media-query/

    Example:

    @media print { 
     /* All your print styles go here */
     img { display: none !important; } 
    }

    That removes every image in the print version.

    Best regards,
    Ismael

    in reply to: Problems loading one page #1068751

    Hi,

    Thanks for the update.

    You can use the following css code to adjust the color of the submit button:

    div .main_color .button, .main_color #submit, .main_color input[type='submit'] {
       background-color: red;
        color: blue;
        border-color: green;
    }

    And use this script in the functions.php file to change the required text.

    
    // change contact form required text 
    add_action('wp_footer', 'avf_required_text');
    function avf_required_text(){
    ?>
    <script type="text/javascript">
    (function() {
    	const r = document.querySelectorAll( '.required' );
    	if( r ) {
    		for ( var i = 0; i < r.length; i++ ) {
    			r[ i ].textContent = '(richiesto)';
    		} 
    	}
    })();
    </script>
    <?php
    }
    

    Best regards,
    Ismael

    in reply to: Switch Image overlay effect to no overlay -> overlay #1068748

    Hi,

    Thanks for the update.

    You can start with this css code:

    .av-overlay-hover-deactivate .av-caption-image-overlay-bg {
        opacity: 0 !important;
    }
    
    .av-overlay-hover-deactivate:hover .av-caption-image-overlay-bg {
        opacity: 0.2 !important;
    }

    Best regards,
    Ismael

    in reply to: Masonry – Animation on load #1068746

    Hey fcp,

    Thank you for using Enfold.

    The following css code is missing, which is why the animation is not working.

    .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry {
        -webkit-animation: avia_msonry_show 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.075);
        animation: avia_msonry_show 800ms cubic-bezier(0.175, 0.885, 0.32, 1.075) 0ms 1 normal none running;
    }

    Did you install a cache or minification plugin?

    Best regards,
    Ismael

    in reply to: title and text on portfolio Grid #1068745

    Hi,

    Thanks for the update.

    The content of the portfolio item or post is created using the advance layout builder, so it doesn’t really have an excerpt, technically. You have to add the excerpt manually in the Excerpt field. I added an excerpt for “Angela Fechner” as an example. (see private field)

    Best regards,
    Ismael

    in reply to: Specify image dimensions #1068743

    Hi,

    Thank you for using Enfold.

    We can’t specify the width and height of those images because they have to inherit the size of their parent container, making them much more responsive on different screen sizes. Anyway, the score is almost perfect even with those warnings, so you can just ignore that.

    Best regards,
    Ismael

    in reply to: Header Extra Elements funktioniert nicht #1068742

    Hi,

    You can’t add a search box in the top header container by default. There is no option for that, but it’s possible using custom filters and a few css modifications.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: Enfold Header wechseln in Mobile Ansicht #1068738

    Hi,

    Thanks for the update.

    This script will enable you to apply a different logo on mobile view.

    // change logo on mobile view
    add_action('wp_footer', 'ava_mobile_logo');
    function ava_mobile_logo() {
    ?>
    <script>
    (function($){
        var isMobile = false; 
        
        if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent) 
            || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) { 
            isMobile = true;
        }
    
        if( isMobile ) {
            $('.logo img').attr('src', 'MOBILE LOGO IMAGE URL HERE')
        }
    })(jQuery);
    </script>
    <?php
    }
    

    Just replace the placeholder with the actual image url.

    Best regards,
    Ismael

    in reply to: DropCap Not Appearing #1068730

    Hey J,

    Thank you for using Enfold.

    The dropcap containers are gone, but we are not really sure why. Would you mind changing the account’s user role to admin so that we can edit the page or the settings if necessary?

    Best regards,
    Ismael

    in reply to: Icons not showing #1068728

    Hi,

    Thanks for the update.

    Did you add this css code?

    
    #top .avia-font-fontello, body .avia-font-fontello, html body [data-av_iconfont='fontello']:before {
        font-family: 'fontello2' !important; 
    }

    That causes the icons not to display. This is what I see when I removed that css code.

    // https://imgur.com/a/0rNqRuh

    Best regards,
    Ismael

    in reply to: Image scroll on hover #1068726

    Hi,

    Thanks for the update.

    You can’t apply a custom css class attribute to specific portfolio items. There’s no option for that, but the theme applies a unique class to the portfolio items based on their category, so maybe that can be used. Example.

    .graphic-design_sort {
      /* style here */
    }

    You may need to add your portfolio items manually if that doesn’t work.

    Best regards,
    Ismael

    Hey NHAT TAN,

    Thank you for using Enfold.

    Where can we see the issue? Please provide an actual link to the page.
    Did you add any html tags to the text? You have to make sure that the tags are closed properly.

    Best regards,
    Ismael

    in reply to: Menu left logo centered search icon right #1068720

    Hi,

    Thanks for the update.

    1.) Which css code is not working? Post the login details in the private field so that we can check the modifications.

    2.) The character codes of the icons are available here:

    // http://web.archive.org/web/20140912210715/http://entypo.com/characters/

    Best regards,
    Ismael

    in reply to: Enfold contact form + reCAPTCHA #1068716

    Hi!

    Awesome. Thanks. Have a nice day.

    Cheers!
    Ismael

    in reply to: WPforms with condtionnal logic not working #1068715

    Hey Adriendriver,

    Thank you for using Enfold.

    Could you give us a screenshot of the issue? Or provide an instruction on how we can reproduce it. We are not really sure what to check. And please keep in touch with the plugin author for additional help.

    Best regards,
    Ismael

    in reply to: Enfold contact form + reCAPTCHA #1068264

    Hi,

    You’re welcome. Would you mind keeping the login details active? We would like to check the widget every now and then, see how it holds up. Thanks.

    Best regards,
    Ismael

Viewing 30 posts - 24,031 through 24,060 (of 66,739 total)