Forum Replies Created

Viewing 30 posts - 16,801 through 16,830 (of 34,221 total)
  • Author
    Posts
  • in reply to: Adding top bar has affected the lineup of certain pages #1198824

    Hi,
    Sorry for the late reply, unfortunately, some of your images are not available, so I’m not quite sure what you are trying to do, the top bar looks the same to me in your examples.
    Please try explaining again.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, unfortunately, we don’t have an option for that, perhaps there is a plugin that will achieve this.

    Best regards,
    Mike

    in reply to: Contact form / selection-field-problem #1198821

    Hey Carsten,
    Sorry for the late reply, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_betreff_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      	$('#top.page-id-44 #avia_3_1 option:eq(0)').prop('selected', true)
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_betreff_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Top Bar #1198818

    Hi,
    Sorry for the late reply, to increase the social icons and the “phone” text, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .phone-info > span {
    	font-size: 20px !important;
    }
    #top .social_bookmarks li a {
        font-size: 30px !important; 
    }

    Best regards,
    Mike

    Hi,
    Perhaps try clearing your browser cache, Please see the screenshots in Private Content area.

    Best regards,
    Mike

    in reply to: Burger Menu On Scroll #1198808

    Hi,
    Glad you were able to tweak it, but I don’t see a “white bar” when I click the burger menu.
    But perhaps the page looks different when logged in, unfortunately, I can’t login it leads to a 404.

    Best regards,
    Mike

    in reply to: Add custom image and link in menu #1198805

    Hi,
    Thank you for the feedback, I added this script to your functions.php

    function projekty_unijne_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('.social_bookmarks_kriesi').after("Projekty Unijne");
    $('.social_bookmarks_kriesi a').attr('title','Projekty Unijne')
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'projekty_unijne_script');

    this adds the text and changes the icon title to match, feel free to adjust to suit.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Search results image with title #1198796

    Hey adxdigitalmarketing,
    Sorry for the late reply, find the loop-search.php in enfold/includes and make a copy of it and upload it to your child-theme subfolder “includes” such as: “enfold-child/includes”
    On line 33 look for:
    echo "<span class='search-result-counter {$counterclass}'>{$post_loop_count}</span>";
    and replace with:

    $searchthumb = get_the_post_thumbnail( $the_id, 'large' );
    echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>";

    The expected results:
    2020-03-29_061303.png

    Best regards,
    Mike

    in reply to: Polylang and links to social media #1198757

    Hey enfoldMB,
    Sorry for the late reply, there is two ways to do this and both will rely on polylang adding a language class to the site, which I pretty sure it does.
    So for the first option, you will have one FB social icon in the header and socket and we will add a jQuery script that will change the url based on the language class.
    The second option is you will have two different FB social icons next to each other with their own links, and we will hide them with css based on the language class.
    We will need to see your site to write this for you, which option do you prefer?

    Best regards,
    Mike

    in reply to: Pics not showing on archive page #1198756

    Hi,
    Glad to hear this worked for you.

    Best regards,
    Mike

    in reply to: CSS problem with Fast Micro Pay #1198754

    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: Burger Menu On Scroll #1198752

    Hey _studiotwelve,
    To have the text menu show on load and the burger menu show on scroll, Try adding this code to the end of your functions.php file in Appearance > Editor:

     add_action('wp_footer', 'ava_burger_toggle_on_scroll');
     function ava_burger_toggle_on_scroll(){
    	 ?>
    	 <script type="text/javascript">
    		 (function($) {
    			 function avia_scroll_top_menu()
    			 {
    					 var win = $(window),
    						 menu = $('.responsive #top .av-main-nav .menu-item'),
    						 burger = $('.responsive #top .av-main-nav .menu-item-avia-special, .responsive .av-burger-menu-main'),
    						 set_status = function()
    						 {
    							 var st = win.scrollTop();
     
    							 if(st > 100)
    							 {
    								 menu.addClass('hide_menu_show_burger');
    								 menu.removeClass('hide_burger_show_menu');
    								 burger.removeClass('hide_menu_show_burger');
    								 burger.addClass('hide_burger_show_menu');	
    							 }
    							 else if(menu.is('.hide_menu_show_burger')) 
    							 {
    								 burger.addClass('hide_menu_show_burger');
    								 burger.removeClass('hide_menu_show_burger');
    								 menu.removeClass('hide_menu_show_burger');	
    								 menu.addClass('hide_burger_show_menu');
    							 }
    						 };
     
    					 win.on( 'scroll',  function(){ window.requestAnimationFrame( set_status )} );
    					 set_status();
    			 }
     
    			 avia_scroll_top_menu();
    		 })(jQuery);
    	 </script>
    	 <?php
     }

    Then add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .responsive #top .av-main-nav .menu-item {
      display: block;
    }
    
    .responsive #top .av-main-nav .menu-item-avia-special {
      display: block;
    }
    
    .responsive .av-burger-menu-main.hide_burger_show_menu {
      display: block;
    }
    
    #avia-menu .hide_menu_show_burger {
      display: none !important;
    }
    
    #header.av_header_transparency .av-burger-menu-main.hide_burger_show_menu {
    	display: none !important;
    }
    
    #header.av_header_transparency .av-burger-menu-main:not(.hide_burger_show_menu) {
    	display: none !important;
    }

    Then clear your browser cache and check.
    I couldn’t login to add this for you because the login url leads to a 404
    I tested this on a default menu setup, so some tweaks may be necessary for your setup.

    Best regards,
    Mike

    in reply to: Woocommerce Alternate Product Overlay Color #1198746

    Hi,
    To hide the text of the three images on the homepage on hover, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.home .avia-image-container:hover .av-image-caption-overlay {
    	opacity: 0 !important; 
    }

    Best regards,
    Mike

    in reply to: Add Account Icon and Create Account Page #1198744

    Hi,
    Sorry for the late reply, to add the “home” icon to the beginning of the “my account” link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #menu-item-7836 > a:before {
      content: "\e821";
      font-family: entypo-fontello;
      color: #fff;
      position: relative;
      padding-right: 5px;
      margin-left: -5px;
    }

    After applying the css, Please clear your browser cache and check.
    Please feel free to change the icon to any that you wish.

    Best regards,
    Mike

    in reply to: Social Media in Footer #1198731

    Hi,
    Sorry for the late reply, to have gray icons in your footer on hover, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #custom_html-3 .av_font_icon a:hover {
    	color:gray !important; 
    }

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

    Best regards,
    Mike

    in reply to: Add custom image and link in menu #1198730

    Hi,
    Thank you for the login, I made an adjustment and now your icon is showing where your “kriesi” social icon is:
    2020-03-28_174531.png
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: table of contents not support chinese word #1198728

    Hi,
    Sorry for the late reply, this function will add the text character to the url of the TOC so the anchor links will work, unfortunately this will only work if the whole TOC is Chinese, because it brakes the English links.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_toc_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $(".avia-toc-container a.avia-toc-link").each(function(){
        var character = $(this).find("span").text();
        $(this).attr('href', function() {
        return "#" + character;
    });
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_toc_script');

    Please let us know if you want to use English and Chinese TOC’s on the same site, we can have this code only work on the pages to have the Chinese TOC.

    Best regards,
    Mike

    in reply to: Social icons not showing #1198712

    Hi,
    Your social icons seem to be showing for me:
    2020-03-28_161214.png
    Perhaps try clearing your browser cache.

    Best regards,
    Mike

    Hey hostworks,
    Sorry for the late reply, I took a look at many of your pages but didn’t see the error, have you since made changes?

    Best regards,
    Mike

    in reply to: Pics not showing on archive page #1198664

    Hey marcoabis81,
    Sorry for the late reply, I took a look at your pages and I disabled the function above and found that not all post are the same, some don’t have the image div at the beginning of the posts, those that do, have the image inserted as shortcode.
    Please ensure all posts have the same image shortcode.

    Best regards,
    Mike

    in reply to: CSS problem with Fast Micro Pay #1198651

    Hi,
    Please try this:

    #top input[type=text] {
    	 display: inline-block !important; 
    }

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

    Best regards,
    Mike

    in reply to: CSS urgent problem!!! #1198650

    Hey goodmaneu,
    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 input[type=text] {
    	 display: inline-block !important; 
    }

    Best regards,
    Mike

    in reply to: CSS problem with Fast Micro Pay #1198644

    Hey goodmaneu,
    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 .main_color input[type=text] {
    	 background-color: #fff !important; 
    }

    Best regards,
    Mike

    in reply to: Is there a way to move the logo down a smidgeon #1198642

    Hi,
    Thank you for the login, I found the css above in the Quick CSS field, so I removed and this seems to correct the white space issue. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Column Link not working for custom link with anchor #1198323

    Hi,
    I tried debugging the javascript for the column and found this:
    if( (0 == url.indexOf("#")) || ((url.indexOf(link) >= 0) && (url.indexOf("#") > 0) ) ) on line 658 of \enfold\js\shortcodes.js
    Perhaps if you were to comment out the “else” function of this rule the error will be corrected. Please see the screenshots in Private Content area.
    After making this change you will need to clear your browser cache, and any other cache so the edited “shortcodes.js” will load, this can be a little tricky because the browser prefers to use the cache version of any .js file.
    Unfortunately, I’m not able to reproduce your error so I can’t test if this will help, but this is where the link with the hashtag is getting modified.

    Best regards,
    Mike

    in reply to: Hover effect doesn't work correctly on products #1198305

    Hi,
    Very good then, we will close this then. 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: News-Blog version of Enfold #1198304

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

    .responsive .container.av-logo-container {
        max-width: 100% !important; 
        background-size: contain !important; 
    }

    Best regards,
    Mike

    in reply to: Column Link not working for custom link with anchor #1198026

    Hi,
    So the column link works fine unless it’s on the “homepage”?
    I tested on my localhost and it works correctly even if it’s the “homepage”, strange.

    Best regards,
    Mike

    Hi,
    You could try removing the thumbnails from this file:
    \enfold\includes\related-posts.php
    Try line 124 and change from: $output .= $image; to //$output .= $image;

    Best regards,
    Mike

    in reply to: Hover effect doesn't work correctly on products #1198004

    Hi,
    I see the flickering on this product with Chrome on Windows.
    The image here is using the zoomImg class, as outlined here
    It is also the only product that I find that has two other images in the product image set, but neither are shown on “onmouseenter” or “onmouseleave”, most of your products seem to be like this one with only one image and no hover effect.
    When the option “WooCommerce 3.0 product gallery” is picked in the “Shop Options” the default action is the “zoomImg” when the “Default enfold product gallery” is picked then the product image has no hover effect but when clicked it opens in a lightbox.
    So I don’t see any settings to add another set of images that uses a hover effect to your product images, are you sure this is not added via a plugin or script?
    Perhaps this is a conflict with the latest Enfold and your older woocommerce which you said you can’t update or one of your scripts?
    Have you tried activating the parent theme “enfold” to see if this continues without the extra scripts & files from your child theme?
    Best regards,
    Mike

Viewing 30 posts - 16,801 through 16,830 (of 34,221 total)