Forum Replies Created

Viewing 30 posts - 17,311 through 17,340 (of 35,074 total)
  • Author
    Posts
  • in reply to: Toogle switch direction #1207133

    Hey thomegmbh,
    Sorry for the late reply, is this what you meant?
    2020-04-25_182741.png
    If so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .av-toggle-switch label .toggle-track {
        transform: rotate(180deg);
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: How to place form using googleapis jquery #1207127

    Hey sberendss,
    Sorry for the late reply, thanks for the files, on my localhost I placed the css & js in a directory in /wp-content/uploads/form/
    Then I placed this in a code block element, note the path to the files, you will need to change to your path.

    <link href="/wp-content/uploads/form/css/vendor/bootstrap.min.css" rel="stylesheet">
    		<link href="/wp-content/uploads/form/css/test.css" rel="stylesheet">
    	</head>
    	<body>
    		<div class="login-form">
    			<form name="main" action="" method="post">
    				<h2 class="text-center">Log in</h2>       
    				<div class="form-group">
    					<input 	class="form-control" 
    							required="required"
    							id="userid"
    							type="text" 
    							placeholder="gebruikersnaam" 
    							name="userid">
    				</div>
    				<div class="form-group">
    					<input 	class="form-control" 
    							required="required" 
    							type="password" 
    							placeholder="wachtwoord"
    							id="password"
    							name="password">
    				</div>
    				<div class="form-group">
    					<select id="languageid" name="languageID">
    						<option value="NLD" selected>Nederlands</option>
    						<option value="DEU">Duits</option>
    						<option value="ENU">Engels</option>
    					</select>					
    				</div>
    				<div class="form-group">
    					<button class="btn btn-primary btn-block" 
    							type="button" 
    							onclick="login(this.form)">Inloggen</button>
    				</div>
    			</form>	
    		</div>
    		<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    		<script>window.jQuery || document.write('<script src="/wp-content/uploads/form/js/jquery-3.3.1.min.js"><\/script>')</script>
    		<script src="/wp-content/uploads/form/js/vendor/bootstrap.bundle.min.js"></script>
    		<script src="/wp-content/uploads/form/js/test.js"></script>

    This seems to work
    2020-04-25_180834.png

    Best regards,
    Mike

    in reply to: Demo für Friseure #1207122

    Hi,
    Thank you for the FTP access, I added this to your .htaccess file and now your icons are showing:

    <FilesMatch ".(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch>

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: ENFOLD SOCIAL ICONS SHOWING AS BOXES #1207118

    Hey omerh570,
    This looks related to CORS. Please refer to this: http://kriesi.at/documentation/enfold/enable-cors/
    Otherwise, please include an admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: Three dots, where are they coming from? #1207116

    Hey Schwimmsport Steiner,
    To remove the 3 dots try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
        $(".slide-entry-excerpt.entry-content").contents().filter(function(){ return this.nodeType == 3; }).remove();
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logo size small mobile display #1207107

    Hey chrisboe,
    To adjust the logo please try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 325px) { 
    	.responsive #wrap_all .logo img {
        width: 50%;
    	}
    	.responsive #top #wrap_all #header_main .logo {
            height: 35px !important;
    	}
    }
    @media only screen and (min-width: 326px) and (max-width: 430px) { 
    	.responsive #wrap_all .logo img {
        width: 80%;
    	}
    	.responsive #top #wrap_all #header_main .logo {
            height: 75px !important;
    	}
    }

    this adjusts the logo for two phone sizes, small 325px, and large 430px, each has a width percentage you can adjust.

    Best regards,
    Mike

    in reply to: Demo für Friseure #1207102

    Hi,
    Please include FTP access in the Private Content area so we can take a look at your htaccess file.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1207097

    Hi,
    Try going to your special headings element and change the H tag via the drop down option.
    2020-04-25_144152.png

    Best regards,
    Mike

    in reply to: Content Slider Dot Control Button Customization #1207092

    Hi,
    Sorry for the late reply, to have the dots centered and at the bottom please try this css, which also makes your dots a little darker so you can see them better, your background was the same color.
    This css is active for your whole site, or any site.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top .avia-content-slider-element-container .avia-slideshow-dots {
        text-align: center !important;
        position: absolute !important; 
        left: 40% !important; 
    }
    
    #top .avia-smallarrow-slider .avia-slideshow-dots a {
        background-color: #ddd;
    }

    Best regards,
    Mike

    Hi,
    Try editing \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php on line 460 look for 'subtype' => AviaHtmlHelper::number_array( 1, 100, 1, array( 'All' => '-1' ) )
    and change to 'subtype' => AviaHtmlHelper::number_array( 1, 200, 1, array( 'All' => '-1' ) )
    Then clear your browser cache and check, the option should allow 200 now.

    Best regards,
    Mike

    in reply to: Error after update #1207081

    Hi,
    Sorry for the late reply, Since this looked like it was related to Gutenberg I tried switching the default editors, but this didn’t help. I also have tried to reproduce this error by copying your files and plugins to my localhost but I couldn’t reproduce. My goal was to clone your site to my localhost but I couldn’t copy your database because of some header errors. I will try to think of a different approach.

    Best regards,
    Mike

    Hi,
    Glad to hear you have this sorted out, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Mehrere Color-Sections öfnnen und schließen #1207057

    Hi,
    Thank you for the feedback, it looks like you were missing this part of the code at the end:

    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_cs');

    I added it for you. I also added the first couple of sections to the code using the example above.
    Now it seems to work, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logo gone after plugin Autoptimize #1207049

    Hi,
    I recommend using the built-in options at Enfold Theme Options > Performance so the JS & CSS file merging and compression will compress the files, also please ensure that the option to Load jQuery in your footer is disabled.

    Best regards,
    Mike

    Hi,
    Thanks for the screen grab, in the PHP setting did you choose a new option in the drop-down, if so which version?
    I don’t think Coherence or a custom counter is causing this because we are not loading those files.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1206791

    Hi,
    Thank you, the ftp access worked, but the WP logins also don’t work.
    Nonetheless, I updated your themes by changing your theme directory to “enfold-old” and uploading a new “enfold” directory with the update. Since I couldn’t login I checked your source code to ensure the update is working correctly.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Firefox (desktop) shows outdated pages #1206779

    Hi,
    Thank you, I have checked your site and compared Firefox with Chrome, clicking on the logo URL and also viewing your new page, but I don’t see a difference. Thanks for the screenshots, I don’t read German, but I can tell that your Enfold Theme Options > Performance > JS & CSS file merging and compression is active along with css & js minifying by WPRocket, and it also looks like you are using Cloudflare. So I would recommend disabling these caching options.
    Cloudflare can take a while to clear it’s cache, and we could see different results because we are in different parts of the world served by different Cloudflare servers. You can expect some time to pass for the Cloudflare servers to cache the new content after you have published it. I don’t find any difference between HTTP & https.

    Best regards,
    Mike

    in reply to: Comment attachments take you to 404 page #1206524

    Hi,
    Sorry, I’m not sure why you are getting this error, on a new install it seems to work correctly.
    Try to create the error again and then check your server error log for error messages that could help isolate the cause.

    Best regards,
    Mike

    in reply to: Same height column does not work #1206516

    Hi,
    I’m not sure if this is expected behavior, I have asked for the dev team to check.
    So I assume we can close this then?

    Best regards,
    Mike

    in reply to: Can't import a Demo #1206504

    Hi,
    Thanks for the ftp access, I reset your site and they did a manual import, please clear your browser cache and check.
    Since I had reset your site, please check the settings of each plugin to ensure they are as desired.

    Best regards,
    Mike

    in reply to: masonry portfolio layout #1206201

    Hi,
    Thanks, what I meant by adding the dates was to arrange the images so a better mix of categories would show. Another option is to show all items. Please check the test page.
    The lightbox loads all images on the page, so even when you filter by “fireplace” and only two items show, the other items are loaded on the page, they are just not visible, so the lightbox still loads the images. We don’t have a way to change this.
    We can hide the lightbox arrows and not allow the image to change on click so you only see the one image in the lightbox, would you like to try this?

    Best regards,
    Mike

    in reply to: Firefox (desktop) shows outdated pages #1206185

    Hi,
    Thank you, are the urls in the Private Content area the correct ones to see the difference between Firefox and Chrome, or does this error only last for a little while and today they are showing the same content?
    Are you saying that the Firefox browser must be left opened on the page while the site is updated to see the error?
    I see that your logo address is http but my browser always loads https.

    Best regards,
    Mike

    in reply to: Error after update #1206176

    Hi,
    Thank you for the feedback, I also tested the WordPress > Customize option and see it’s the same error, which you said came from the “sendinblue” plugin, strange.
    Thanks for testing with your plugins disabled, do you mind if we also try disabling the plugins for testing?
    I’m not sure if any of your plugin settings are re-set when disabling, so I wanted to ask first.

    Best regards,
    Mike

    in reply to: Same height column does not work #1206141

    Hi,
    I don’t think that the rows are losing any padding, I don’t believe there is added padding to the rows when they are stacked like this, the padding option under “styling” is for the “inner padding”, this is for the cells:
    2020-04-22_051530.png
    Try looking at the margin option and add the margin you would like there, I added 50px to each row.
    2020-04-22_050716.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1206125

    Hi,
    I thought so too, anyways thanks for the logins, but they are not working for me, please check.

    Best regards,
    Mike

    in reply to: H1 Tag on Pages #1205763

    Hi,
    It looks like you are using v4.2.6, v4.7.4 is available if you include your ftp login and an admin login we can update and take a look at your titles.

    Best regards,
    Mike

    Hi,
    For your “Free Concierge” page I think you are trying for this, please see first screenshot in Private Content area:

    @media only screen and (max-width: 767px) { 
    	#top.page-id-344 #av_section_1 {
    		background-size: contain !important; 
    	}
    	#top.page-id-344 #av_section_1 > .container {
    		height: 100px !important; 
    	}
    }
    

    For the mobile banner please see the screenshot in Private Content area, and try this css:

    @media only screen and (max-width: 767px) { 
    	#top.archive #wrap_all #av_product_description {
        background-image: url(https://londongreyatx.com/wp-content/uploads/2020/04/get_started_mobile_ver.jpg);
        background-attachment: scroll;
        background-position: 50% 50%;
        background-repeat: no-repeat;
        min-height: 200px !important;
    	}
    	#top.archive #av_product_description .av-parallax-inner.av-parallax-woo {
    		opacity: 0;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Same height column does not work #1205736

    Hi,
    To add some padding between the rows, please try this css:

    #top.page-id-12491 .flex_column_table.av-equal-height-column-flextable {
    	padding-top: 40px;
    }

    After applying the css, Please clear your browser cache and check.
    Expected results:
    2020-04-21_043724.png

    Best regards,
    Mike

    Hey Thomas,
    Do you mean the yellow banner “Get GTarted” as in the link in the Private Content area? You can have a different image for mobile with css, please include the image link you wish to use.
    For the yellow banner please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 766px) and (max-width: 950px) {
    	#top.archive #av_product_description .av-parallax-inner.av-parallax-woo {
    		background-position: 50% 98% !important; 
    	}
    }
    @media only screen and (max-width: 500px) {
    	#top.archive #av_product_description .av-parallax-inner.av-parallax-woo {
    		background-position: 50% 98% !important; 
    	}
    	#top.archive #av_product_description,#av_product_description .av-section-color-overlay-wrap {
    		max-height: 80px !important; 
    	}
    	#top.archive #header_main {
        border-bottom-width: 0 !important; 
    	}
    	#top.archive #main .container_wrap_first {
    		border-top-width: 0 !important; 
    	}
    }
    @media only screen and (min-width: 951px) and (max-width: 1439px) { 
        #top.archive #av_product_description .av-parallax-inner.av-parallax-woo {
    		background-position: 50% 97% !important; 
    	}
    	#top.archive #av_product_description {
    		height: 180px !important; 
    	}
    	#top.archive #header_main {
        border-bottom-width: 0 !important; 
    	}
    	#top.archive #main .container_wrap_first {
    		border-top-width: 0 !important; 
    	}
    }
    @media only screen and (min-width: 1440px) { 
        #top.archive #av_product_description .av-parallax-inner.av-parallax-woo {
    		background-position: 50% 10% !important; 
    	}
    	#top.archive #av_product_description {
    		height: 180px !important; 
    	}
    	#top.archive #header_main {
        border-bottom-width: 0 !important; 
    	}
    	#top.archive #main .container_wrap_first {
    		border-top-width: 0 !important; 
    	}
    }

    Best regards,
    Mike

    in reply to: Social Media Icons #1205480

    Hey NoraGTS,
    Thanks for the login, I was going to suggest using the Icon element to create your social icon buttons on your contact page, but I see you have already done this. Is there something you don’t like about this?

    Best regards,
    Mike

Viewing 30 posts - 17,311 through 17,340 (of 35,074 total)