Forum Replies Created

Viewing 30 posts - 10,111 through 10,140 (of 34,221 total)
  • Author
    Posts
  • in reply to: Remove bottom border from tab section #1363852

    Hi,
    Thanks for the debugging shortcode, in my test it was the next section border color, this clears:

    #after_tab_section_1.main_color {
    border-color: transparent;
    }

    or to target more sections on your site try:

    .main_color {
    border-color: transparent;
    }
    

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Remove bottom border from tab section #1363848

    Hi,
    Is the next section a color section? It could be the border top for the next one.
    Try Enabling the Avia Layout Builder Debugger for your site, then copy the page shortcode for the page and save it to a plain text file “.txt” and upload to DropBox, or such, I can then add your page to my text site and inspect.
    2022-09-04_024.jpg

    Best regards,
    Mike

    in reply to: logo im hamburger menu #1363847

    Hey schweg33,
    Thanks for your question, I found that the link in your menu item had a space in the url breaking the path, and the custom class was missing a dash:
    2022-09-04_021.jpg
    Now it shows, but I assume that you want the logo centered with your menu:
    2022-09-04_022.jpg
    so I added this css:

    .burger-logo {
    	margin: auto;
    }

    now it is centered:
    2022-09-04_023.jpg
    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: logo im hamburger menu #1363843

    Hey schweg33,
    This is a duplicate thread to another you opened, we will close this one and work on the other.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Remove bottom border from tab section #1363842

    Hi,
    Please link directly to the page with the issue so we can examine it.
    If the border is not clearly seen, please include a screenshot and paste the image URL in your post.

    Best regards,
    Mike

    in reply to: ALLINEA-TESTO-ICONE #1363840

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: https://kriesi.at/themes/enfold-visual-artist/ #1363833

    Hey Oleksii Miatelskyi,
    Thank you for your question, we don’t make web sites, we make the software for you to build your own site:
    Enfold – Responsive Multi-Purpose Theme
    Our theme includes all of these demos

    Best regards,
    Mike

    in reply to: Enfold WYSIWYG #1363831

    Hey schwabino,
    Thanks for the login, I see you are gettings this error:
    Failed to load resource: the server responded with a status of 403 () admin-ajax.php
    Please see this article: How to Fix the 403 Forbidden Error in WordPress
    Often this is caused by a plugin or a server security setting, try the solutions in the article starting with disabling all of your plugins, then clear your browser cache and check again, if this helps, activate your plugins one at a time to find the error.
    If this doesn’t help, leave them disabled and note that your are using a Godaddy Managed WordPress and have a plugin that you can not disable:
    2022-09-04_020.jpg
    you will need to look at your Managed WordPress options and see what changes you can make, but often you can not do a lot, see if the article helps reveal if any security options has block any IP address, or files like admin-ajax.php, otherwise you will need to ask Godaddy for help.

    Best regards,
    Mike

    in reply to: Custom social icons missing coloured circle #1363827

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Content slider: common height #1363826

    Hi,
    Thanks for the link to your page and the login, I added a custom class to your content slider equal-height-slider on your /nuova-home-2022/ page so there won’t be any conflicts with other content sliders on your site.
    2022-09-04_017.jpg
    Then I adjusted the script a little and added it to your child theme functions.php:
    2022-09-04_018.jpg

    function ava_custom_script_set_min_height()
    {
        ?>
        <script type="text/javascript">
    window.addEventListener('DOMContentLoaded', function() {
            (function($) {
                    function setSlideHeight(element) 
                    {
                        var elementHeights = element.map(function() {
                            return $(this).height();
                        }).get();
                        var maxHeight = Math.max.apply(null, elementHeights);
                        element.height(maxHeight);
                    }
                    $(window).on( 'debouncedresize', function()
    				{
                        var slider = $('.equal-height-slider .slide-entry-wrap');
                        var slides = slider.find('.slide-entry-excerpt');
                        setSlideHeight(slides);
    				});
            })(jQuery);
    });
    </script>
        <?php
    }
    add_action( 'wp_footer', 'ava_custom_script_set_min_height', 9999 );

    Now it is working:
    2022-09-04_019.jpg
    compared to before:
    2022-09-04_015.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I see in a duplicate thread you have now resolved this, glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: hamburger menu, desktop and mobile #1363821

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Bug in Enfold for WooCommerce prduct images #1363818

    Hi,
    Glad Ismael & Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Main pages dont show up on smartphones #1363817

    Hi,
    Mobile devices don’t have a “hover” function, so your other option would be to choose Menu Icon Submenu Items ▸ Always display submenu items.
    Please see our burger menu documentation here.

    Best regards,
    Mike

    in reply to: hamburger menu, desktop and mobile #1363813

    Hi,
    Try enabling these fields in the screen options
    2022-09-04_014.jpg

    Best regards,
    Mike

    in reply to: Custom social icons missing coloured circle #1363811

    Hey 4ndreaux,
    Please see our documentation: How to add Custom Social Icons to Enfold options, and look for the Hover Background and Text color css:

    #top #wrap_all .av-social-link-ICON_NAME:hover a{
        color:#fff; 
        background-color:#9fae37; 
    }

    note that you will need to adjust the ICON_NAME in the above code to your icon name.
    For example the css for the Twitter icon is:

    #top #wrap_all .av-social-link-twitter:hover a {
        color: #fff;
        background-color: #46d4fe;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: The link you followed has expired. Please try again. #1363810

    Hey MatsAFejne,
    This could be caused if the theme zip file is not the correct file, are you uploading enfold.zip from your Theme Forest account download link “Installable WordPress file only”?
    Or is the Full Theme and Documentation with a file name like: themeforest-4519990-enfold-responsive-multipurpose-theme-wordpress-theme.zip.
    Try checking your Theme Forest account download link agin and look for “Installable WordPress file only”

    Best regards,
    Mike

    in reply to: home page not displaying #1363808

    Hi,
    From what I see the caching plugins w3-total-cache/ and also borlabs-cache/ were disable, and still are, so it couldn’t be these.
    Your desktop version of the site is where I saw the error.
    I found that your WordPress ▸ Settings ▸ Reading ▸ Your homepage displays was set to a different page than your Enfold Theme Options ▸ Frontpage Settings
    2022-09-04_012.jpg
    2022-09-04_013.jpg
    I set them both to the same page “Home”, and now on desktop and mobile the front pages works, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Real Cookie Banner can´t block ReCaptcha in Enfold Form #1363806

    Hi,
    Try copying the avia_google_recaptcha_front.js file to your child theme functions.php and remove the “use strict”; from the first line, for example:

    function custom_avia_google_recaptcha_front_script() { ?>
      <script>
    (function($){
       
    
    	//	Remove not needed messages from forms
    	$('form.avia_ajax_form.avia-mailchimp-form').find('.avia-disabled-form').remove();
    
    	if( $( '#avia-google-recaptcha-api-script' ).length > 0 )
    	{
    		return;
    	}
    
    	if( 'undefined' == typeof AviaReCAPTCHA_front || 'undefined' == typeof AviaReCAPTCHA_front.avia_api_script )
    	{
    		return;
    	}
    
    	if( ! $('body').hasClass('av-recaptcha-enabled') )
    	{
    		return;
    
    	}
    
    	/*	check if reCaptcha are disabled by user setting via cookie - or user must opt in.	*/
    	var cookie_check = $('html').hasClass('av-cookies-needs-opt-in') || $('html').hasClass('av-cookies-can-opt-out');
    	var allow_continue = true;
    	var silent_accept_cookie = $('html').hasClass('av-cookies-user-silent-accept');
    
    	if( cookie_check && ! silent_accept_cookie )
    	{  
    		if( ! document.cookie.match(/aviaCookieConsent/) || $('html').hasClass('av-cookies-session-refused') )
    		{
    			allow_continue = false;
    		}
    		else
    		{
    			if( ! document.cookie.match(/aviaPrivacyRefuseCookiesHideBar/) )
    			{
    				allow_continue = false;
    			}
    			else if( ! document.cookie.match(/aviaPrivacyEssentialCookiesEnabled/) )
    			{
    				allow_continue = false;
    			}
    			else if( document.cookie.match(/aviaPrivacyGoogleReCaptchaDisabled/) )
    			{
    				allow_continue = false;
    			}
    		}
    	}
    
    	if( ! allow_continue )
    	{
    		var forms = $( 'form.avia_ajax_form' ).not( '.avia-mailchimp-form' );
    		var recaptchas = forms.find( '.avia-disabled-form' ).closest( 'form.avia_ajax_form' );
    		recaptchas.addClass( 'av-form-user-disabled' );
    		recaptchas.find( 'input.button' ).remove();
    
    		return;
    	}
    
    	var version = AviaReCAPTCHA_front.version;
    	var recaptcha_areas = $('div.av-recaptcha-area');
    
    	if( recaptcha_areas.length == 0 && version != 'avia_recaptcha_v3' )
    	{
    		return;
                    
    	}
    
    	var	script = document.createElement('script');
    		script.id	= 'avia-google-recaptcha-api-script';
    		script.type = 'text/javascript';
    		script.src 	= AviaReCAPTCHA_front.avia_api_script;
    
    	document.body.appendChild( script );
    
    
    
    })( jQuery );
    
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_avia_google_recaptcha_front_script');
    

    and then make the changes that @Ismael suggested, this assumes that you have tested the devowl-Support GIST on the original the avia_google_recaptcha_front.js file and it works.

    Best regards,
    Mike

    in reply to: home page not displaying #1363802

    Hi,
    Thanks for the login, I deactivate your Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression, and activated Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files as Ismael suggested above.
    Now your site is loading correctly if you are logged in, but when you are logged out you have a 404 for your merged css & js files as Ismael pointed out above.
    I believe that your server is also caching files, so please check with your web host if you can disable server caching temporarily, or try waiting a few hours for the server cache to rebuild.
    If you are still working on your site I would recommend disabling your server cache until you are done, then you can enable it and the theme merging and compression again.

    Best regards,
    Mike

    in reply to: Breakpoints #1363801

    Hi,
    Thanks for your question but when I check both sections have the same, at 425px, mobile phone, they have one picture in each row, and at 768px, tablet, each row has two images.
    Please see the screenshots in the Private Content area.
    I checked with Chrome on Windows and an Android phone.
    What device did you use, please include a screenshot and paste the image URL in your post.

    Best regards,
    Mike

    in reply to: Critical error after update #1363800

    Hi,
    Thanks for the login to your site, your site is running an outdated version of PHP (7.3.33), which requires an update, the minimum WordPress recommended version of PHP is 7.4.
    Please update your server PHP version, you can ask your web host for help:
    2022-09-04_008.jpg

    Best regards,
    Mike

    in reply to: Video size responsive version #1363799

    Hi,
    Thanks for the link to your page and the direct link to your video.
    But I’m not sure what your question is, the video in the element on the page looks just like the direct video link, and both look good.
    Perhaps you already sorted it out?

    Best regards,
    Mike

    in reply to: breadcrumbs doesn't work #1363798

    Hi,
    Thanks for the feedback, when I check the source code for your top breadcrumbs on your /praesidium-und-vorstand/
    the first two have links and the last one, which is your current page, doesn’t, this is also true for the lower breadcrumbs after the first color section.
    2022-09-04_080414.jpg
    the lower breadcrumbs after the first color section:
    2022-09-04_007.jpg
    When I tested I couldn’t click the top breadcrumbs because the z-index was too low, try this css to correct:

    #main > .title_container > .container > .breadcrumb {
        z-index: 502;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Unwanted tick box in contact grid #1363797

    Hi,
    Thanks for the feedback, I thought that for a different thread I had been able to log in, so I checked some of your older threads and found one that worked, please note that some letters in your user name and password are capitalized, this is important.
    Anyways, I found that this check box is added by the:
    Enfold Child Options du thème ▸ Confidentialité et Cookies ▸ Joindre un message de politique de confidentialité aux formulaires de contact issu du constructeur de page avancé ?
    Enfold Theme Options ▸ Privacy and Cookies ▸ Privacy Policy ▸ Attach privacy policy message to contact forms from advanced page builder?
    2022-09-04_001.jpg
    The default message links to your Privacy Policy page:
    2022-09-04_002.jpg
    Which is a special page set at: WordPress ▸ Settings ▸ Privacy ▸ Select a Privacy Policy page
    2022-09-04_003.jpg
    So without changing this special page, we can just add our own html to the Message under advanced layout editor contact forms to make it link to your legal page: /mentions-legales/
    2022-09-04_004.jpg
    I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Menus or SEO titles: what to sacrify ? #1363794

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Menus names refuse modification #1363792

    Hi,
    Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: breadcrumbs doesn't work #1363763

    Hi,
    Thank you for your patience and the link to your site, I believe you are referring to the green area that your breadcrumbs are now showing in:
    2022-09-03_004.jpg
    to remove this please try this css:

    #main > .stretch_full.container_wrap.alternate_color.title_container {
    	height: 0;
    }

    2022-09-03_005.jpg
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: New black head and pic format not right #1363762

    Hey Omar Skapti,
    Thanks for your patience, for your issue:

    black head over my current head

    I don’t seem to see this, please see the screenshot in the Private Content area, please edit the screenshot to point out the issue, or upload your own screenshot to show us what you see.
    To add a screenshot please try using an Screenshot service and pasting the image URL in your post.

    Best regards,
    Mike

    in reply to: Horizontal gallery enlarge/lightbox on click #1363761

    Hey Tobias,
    Thank you for your patience and for the login, but this is not an admin login, please update the login so we can see your theme options.

    Best regards,
    Mike

Viewing 30 posts - 10,111 through 10,140 (of 34,221 total)