Forum Replies Created

Viewing 30 posts - 17,251 through 17,280 (of 35,026 total)
  • Author
    Posts
  • Hi,
    Very good, 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: Logo size small mobile display #1207265

    Hi,
    Glad to hear this is sorted out now, 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: Comment attachments take you to 404 page #1207261

    Hi,
    Try adding this to your wp-config.php via FTP to enable advanced debugging.

    define( 'WP_DEBUG_LOG', true );
    define( 'SCRIPT_DEBUG', true );
    define( 'SAVEQUERIES', true );

    This article explains each of these settings and what to expect from them. This should create a debug log at /wp-content/debug.log

    Best regards,
    Mike

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

    Hi,
    The change I would recommend is to not use the cloudflare, since the theme is minifying and WPRocket is acting as a CDN.
    If you are ok with cloudflare taking a while to populate the CDN servers, then you could use cloudflare as a backup CDN.
    Sorry, I have not used the Redis Object Cache plugin, but it seems to have a lot of configuration parameters using TCP ports, perhaps the port has changed or your server firewall is blocking it? I recommend asking the Redis Object Cache support for any tips on this.
    It seems that you are done building your site and the only changes now are when you publish new content, is this correct?

    Best regards,
    Mike

    in reply to: Codeblock within editor not working, Enfold 4.7.3 #1207225

    Hi,
    Sorry for the late reply, I tested your code snippet in a code block element but didn’t get your error on my localhost, perhaps you have a previous error with a bracket or semi-colon, please include an admin login in the Private Content area, and a link to the page with the error, so we can be of more assistance.

    Best regards,
    Mike

    Hi,
    Glad to hear that it is sorted out now, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: FAQ Schema on Pages #1207209

    Hi,
    Unfortunately, right now we don’t have a FAQ element, so you will need to use a FAQ plugin that includes the schema FAQ structure, or you can add the schema yourself via a code block element, here is an article about the structure. When we do add a FAQ element I’m certain that we will also add the schema.

    Best regards,
    Mike

    in reply to: Blog Posts Element Color #1207201

    Hi,
    Glad we were able to help, 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: Demo für Friseure #1207199

    Hi,
    Glad we were able to help, 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: H1 Tag on Pages #1207198

    Hi,
    It should be under the “content” tab of the special heading, I couldn’t take a look because the WordPress logins are not working for me, please check.

    Best regards,
    Mike

    in reply to: Blog Posts Element Color #1207160

    Hi,
    Please try this code in the WordPress > Customize > Additional CSS field:

    #top.page-id-64593 p,
    #top.page-id-64593 b,
    #top.page-id-64593 a{
      color: #fff !important; 
    }

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

    Best regards,
    Mike

    in reply to: Woocommerce product page and ajax product filter #1207156

    Hey mirellsrl,
    Sorry for the late reply and thanks for the links, it doesn’t look like this plugin will work when the default sort is active, you can create a new shop page or add this snippet to the end of your functions.php file in Appearance > Editor: add_theme_support( 'avia_custom_shop_page' ); and you will be able to edit the default shop page. Please see our documentation here.

    Best regards,
    Mike

    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

Viewing 30 posts - 17,251 through 17,280 (of 35,026 total)