Forum Replies Created

Viewing 30 posts - 17,281 through 17,310 (of 35,074 total)
  • Author
    Posts
  • in reply to: Demo Not Importing #1207418

    Hi,
    Thank you, it looks like you were trying to import the Enfold One Page Portfolio Demo and it failed. Some “Managed
    WordPress” webhosts have stricter security rules, you could check your PHP settings to see if the secure options are activated.
    If “allow_url_fopen, “allow_url_include” and “register_globals” are “off”
    then try turning these “on”.
    Then you will want to install and run the plugin WP Reset and try the demo import again.
    If this doesn’t help then please register for support by following the steps above, and open a new thread and include admin login and ftp access in the Private Content area so we can try a manual import. But we can only offer technical support for registered users.

    Best regards,
    Mike

    in reply to: Headline rotator with icons in secondary menu #1207416

    Hi,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .phone-info .av-rotator-text-single > a {
    	  padding-right: 10px;
    }

    please adjust to suit, then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    in reply to: masonry portfolio layout #1207415

    Hi,
    To remove the titles of your images, try adding this code to the end of your functions.php file in Appearance > Editor:

    function remove_title_on_hover(){
      ?>
      <script>
    (function($){
      $("*").hover(function(){
        $(this).removeAttr("title");
      });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_title_on_hover');

    I realize that the page we are working on for the lightbox issue is a test page, so the only thing left to do is add the page ID to the css so it won’t accidentally cause issues, which page do you want it to work on, or do you want to have it work on all pages?

    Best regards,
    Mike

    in reply to: masonry portfolio layout #1207413

    Hi,
    The login token seems to have expired, so I couldn’t check your site, but I tested on a similar lightbox situation so this css should work, but to make it more targeted so it doesn’t affect the whole site I will need to see your site again.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .mfp-arrow.mfp-prevent-close {
    	display:none !important;
    }
    .mfp-content {
    	pointer-events: none !important;
    }
    .mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
        cursor: pointer !important; 
    }

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

    Best regards,
    Mike

    in reply to: Issue with Polylang and Enfold #1207411

    Hi,
    I did see the message, I only posted “mysite” above like you did because I thought you didn’t want to post the URL publicly.

    Best regards,
    Mike

    in reply to: Sidebar menu drop down #1207410

    Hi,
    Sorry for the late reply, I took a look at your widget navigation and adjusted the function to work for your site, but the only thing is your parent menu items need to not link to a page, just “#” because they can’t toggle and be a link at the same time.
    Once you remove the links from the parent items, add this code to the end of your functions.php file in Appearance > Editor:

    function widget_menu_dropdown(){
      ?>
      <script>
    (function($){
       $(document).ready(function(){ 
       		$('#menu-sidebar-oferta-1 > li.menu-item-has-children').find('ul').hide();
            $('#menu-sidebar-oferta-1 > li.menu-item-has-children').click(function () {
                $('#menu-sidebar-oferta-1 > li.menu-item-has-children').not(this).find('ul').hide();  
                $(this).find('ul').toggle();  
            });  
         });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'widget_menu_dropdown');

    I also tried the function using hover to toggle and it seems to work well allowing you to also use the parent links. Please give this a try in your functions.php, but don’t try both at the same time.

    function widget_menu_dropdown_two(){
      ?>
      <script>
    (function($){
       $(document).ready(function(){ 
       		$('#menu-sidebar-oferta-1 > li.menu-item-has-children').find('ul').hide();
            $('#menu-sidebar-oferta-1 > li.menu-item-has-children').hover(function () {
                $('#menu-sidebar-oferta-1 > li.menu-item-has-children').not(this).find('ul').hide();  
                $(this).find('ul').toggle();  
            });  
         });  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'widget_menu_dropdown_two');

    Best regards,
    Mike

    in reply to: Style of Tabs (Reiter) #1207403

    Hey Michael,
    Sorry for the late reply, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-3274 .av-tab-section-icon,#top.page-id-24 .av-tab-section-icon {
        font-size: 20px !important; 
        margin-bottom: 15px;
    }

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

    Best regards,
    Mike

    in reply to: Issue with Polylang and Enfold #1207399

    Hi,
    Sorry for the late reply, and thanks for the login, when I check your site I get these results:
    https://www.mysite.com
    301 Moved Permanently
    https://www.mysite.ch/
    200 OK

    I don’t see any redirect settings on your site so I assume this is done at your server or your domain register, perhaps while you were setting this up you added a domain redirect and forgot? Or you had one but turned it off, now you still have this issue?
    If you did have a redirect and turned it off, but now it’s still working, ask the support were it was set up and ask for a “DNS Flush”, this flushes the cache of the domain server. It can take a day to complete.

    Best regards,
    Mike

    in reply to: Translation of 'share this entry' not showing #1207392

    Hi,
    Sorry for the late reply, I’m not sure why this is occurring but you could try this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    h5.av-share-link-description.av-no-toc:before {
    	content: 'Deel dit verhaal';
    	color: #000;
    } 
    h5.av-share-link-description.av-no-toc {
    	color: #fff;
        width: 109%;
    }

    Feel free to adjust to suit.
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Logo center and split menu left right #1207382

    Hi,
    Sorry for the late reply, this is how the css would look to only apply it to pages with a transparent header:

    #header.av_header_transparency .logo img {
    	top: 50%;
    	transform: translateY(-50%);
    	max-width: 200px;
    }
    
    #header.av_header_transparency .logo, #header .logo a {
    	width: 200px;
    }
    

    I notice that on your other pages the logo was sitting to the left a little, this css would correct:

    #header .logo img {
    	 margin: auto;
    }

    Best regards,
    Mike

    in reply to: Disable double tap on Mobile Menu #1207374

    Hey Thomas,
    Sorry for the late reply, your link seemed down when I looked so I added an “Alternate Menu for Mobile” to a live test site and checked the menu with an Android mobile, and each menu item only required a single tap. Please check, the link is in the Private Content area.

    Best regards,
    Mike

    in reply to: Changing the size of timeline bullet symbols #1207361

    Hi,
    Sorry for the late reply, I tested adding scale to a few different divs and this one enlarged the circle without breaking the other parts of the timeline, please give it a try to see if it helps.
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    ul.avia-timeline-vertical li {
        transform: scale(1.3);
    }

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

    Best regards,
    Mike

    in reply to: Move logo and header widget behind #main content #1207354

    Hi,
    Sorry for the late reply, this function will move the header widget, logo, and the search after the #main and applies z-index so they are fixed and under the content scroll.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $( '#wrap_all' ).each(function() {
    $( this ).find( 'span.logo' ).insertAfter( $(this).find('div#main') );
    $("span.logo").css({ 'position': 'fixed','z-index': '0' });
    
    $( this ).find( 'div#search-2' ).insertAfter( $(this).find('div#main') );
    $("div#search-2").css({ 'position': 'fixed','z-index': '0','right': '10em' });
    
    $( this ).find( 'div#custom_html-3' ).insertAfter( $(this).find('div#main') );
    $("div#custom_html-3").css({ 'position': 'fixed','z-index': '0','right': '10em' });
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    and then add this css in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top #wrap_all #search-2 {
    	top: 70px !important; 
    }
    #top #custom_html-3 {
    	top: 40px !important;
    }
    #top #custom_html-3 .custom-html-widget {
    	height: 238px;
        width: 200px;
    }

    Then clear your browser cache and check.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    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

Viewing 30 posts - 17,281 through 17,310 (of 35,074 total)