Forum Replies Created
-
AuthorPosts
-
April 26, 2020 at 2:54 pm in reply to: Privacy and Cookies – Modal Popup Window – Display Modal Popup Actions settings #1207267
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,
MikeHi,
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,
MikeHi,
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.logBest regards,
MikeHi,
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,
MikeHi,
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,
MikeApril 26, 2020 at 11:31 am in reply to: Privacy and Cookies – Modal Popup Window – Display Modal Popup Actions settings #1207213Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHi,
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,
MikeHey 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,
MikeHey thomegmbh,
Sorry for the late reply, is this what you meant?

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,
MikeHey 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>Best regards,
MikeHi,
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,
MikeHey 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,
MikeHey 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,
MikeHey 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,
MikeHi,
Please include FTP access in the Private Content area so we can take a look at your htaccess file.Best regards,
MikeHi,
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,
MikeApril 25, 2020 at 7:42 pm in reply to: Portfolio grid Post Number – How many items should be displayed per page #1207088Hi,
Try editing\wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.phpon 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,
MikeHi,
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,
MikeApril 25, 2020 at 2:00 pm in reply to: Enfold contact form not sending mail – other problems ruled out #1207058Hi,
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,
MikeHi,
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,
MikeHi,
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,
MikeApril 24, 2020 at 12:20 pm in reply to: Enfold: Latest version of Event Calendar not working with Counter #1206794Hi,
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,
MikeHi,
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,
MikeHi,
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 -
AuthorPosts


