Forum Replies Created

Viewing 30 posts - 16,441 through 16,470 (of 34,221 total)
  • Author
    Posts
  • 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: Bau Demo Bilder / Construction Demo Images #1207326

    Hi,
    Sorry for the late reply, I tried resetting your site and use a modified construction.xml and import the demo but your site seemed very slow and the images were not downloaded. This sometimes happens to “Managed WordPress” hosting because they have strict security settings.
    I installed the demo on my host and copied the images from /wp-content/uploads/ to the link in the Private Content area.
    Please try uploading these via FTP or your webhost’s file manager and then use the reset plugin to reset your site.
    Then try uploading the import file in the Private Content area to \wp-content\themes\enfold\includes\admin\demo_files\
    and replace the construction.xml with the one below, which you will have to remame to construction.xml
    In this file I changed all of the image links to your server so it will accept the download URL and import them.
    Then try importing the demo.
    If you’re not sure about this, then include your FTP access in the Private Content area and I will assist.

    Best regards,
    Mike

    Hey jannnnnneke,
    Sorry for the late reply, and thanks for the link. This will smooth scroll down when a sort item is clicked on mobile.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function ($) { 
      $("#top.home .sort_width_container a").click(function() {
      	var width = $(window).width()
      	var elmnt = document.getElementById("socket");
      	if ((width <= 768)) {
      	setTimeout(function () {
          elmnt.scrollIntoView({ behavior: 'smooth', block: 'start' });
      	}, 500);
      	} else {}
       });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Zoom behaviour on Laptops | Windows Desktop App Scale #1207296

    Hi,
    Sorry for the late reply, I have my windows device scale set to 125% but I do not see the issue you describe above, but when I use the Chrome “Zoom” I do, is this what you meant?
    Unfortunately, I couldn’t find any way to get the browsers zoom level, to then apply css to adjust.
    Please see this article: Media queries and browser zoom (scroll down about 30% for this heading) and this one.

    Best regards,
    Mike

    in reply to: Anchor jumps too far in Chrome #1207271

    Hey ksalewski,
    Sorry for the late reply, it looks like you are getting an early error Uncaught TypeError: Cannot read property 'innerHTML' of null from:

        jQuery(window).load(function() {
            var el = document.querySelector('.avia-caption-title');
            el.outerHTML = '<h1 class="avia-caption-title ">' + el.innerHTML + '</h1>';
        });

    This looks like a custom script, perhaps in your functions.php? Please try removing it and clearing your cache then test your menu item.
    Best regards,
    Mike

    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

Viewing 30 posts - 16,441 through 16,470 (of 34,221 total)