Forum Replies Created

Viewing 30 posts - 16,981 through 17,010 (of 34,221 total)
  • Author
    Posts
  • Hi,
    Thank you for the links, I see that you have a menu hidden with your header, but you don’t have any menus created because you don’t use any menus. Please try creating a new menu with no menu links and then assign it to your main menu.
    Since the headers are hidden the menu should also be, but now in the source code, there shouldn’t be any links.

    Best regards,
    Mike

    in reply to: Fontello Icons not working #1193108

    Hi,
    It is possible to use FONT AWESOME but it will not be in the icon choices, you will have to use the snippets such as:
    <i class=”fab fa-telegram-plane”></i>
    to add FONT AWESOME, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function Font_Awesome_5(){
        ?>
        <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
        <?php
        }
    add_action('wp_head', 'Font_Awesome_5');

    we can make a feature request for the “TELEGRAM icon”, is it for the mobile and desktop messaging app?

    Best regards,
    Mike

    Hi,
    In your cPanel please go to your “File Manager”
    2020-03-14_101810.png
    then find your \wp-content\themes\enfold-child folder and add the includes folder.
    2020-03-14_102615.png
    and then upload the file into your new folder.
    You can upload images to https://savvyify.com/img/ and paste the image code into your posts.

    Best regards,
    Mike

    in reply to: Sticky Menu on Mobile not sticky #1193104

    Hi,
    For a sticky header on mobile try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_sticky_header(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){       
         var scroll_start = 0;
         var startchange = $('#header');
         var offset = startchange.offset();
          if (startchange.length){
         $(document).scroll(function() { 
            scroll_start = $(this).scrollTop();
            if(scroll_start > offset.top) {
              document.getElementById('header').classList.add('sticky-top');
             } else {
              document.getElementById('header').classList.remove('sticky-top');
             }
         });
          }
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_sticky_header');

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

    @media only screen and (max-width: 767px) { 
    .sticky-top {
        position:fixed!important;
        top:0!important;
        z-index:10000!important;
    }
    }

    Best regards,
    Mike

    Hi,
    I wouldn’t say this is a lack of priority, it’s a matter that correcting a WordPress core file from within a theme takes time, we can’t make a release that replaces the file, we have to come up with another solution especially since the filter WordPress published for this doesn’t seem to be working.

    Best regards,
    Mike

    in reply to: How to link to tabs #1193100

    Hi,
    I see that when linking directly from another page or site to https://kosmetikandnails.ch/#nails the tab opens but the page doesn’t scroll down to the tab. to correct try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_id_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $("a.av-section-tab-title").each(function() {
       var $this = $(this);       
       var _href = $this.attr("href"); 
       var itemId = _href.substring(1, _href.length);
       $this.attr("id", itemId);
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_id_script');

    it adds an “id” to the tab link so the page will scroll to the tab.
    If the link to the tab is clicked on the same page the offset doesn’t always work so add this code to the end of your functions.php file in Appearance > Editor to apply an offset to the tabs:

    function custom_offset_script(){
      ?>
      <script>
    (function($){
    	var width = $(window).width()
    	if ((width >= 768)) {
        $('a.av-section-tab-title[href*="#"]:not([href="#"])').click(function() {
        var offset = -130; // <-- change the value here
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
            var target = $(this.hash);
            target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
            if (target.length) {
                $('html, body').animate({
                    scrollTop: target.offset().top + offset
                }, 1000);
                return false;
            }
        
        }
        
    });
    } else {}
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_offset_script');

    Best regards,
    Mike

    in reply to: Sidebar Thumbnails Size #1193092

    Hi,
    3) yes the padding is removed from the tabs on mobile, this allowed the large tabs to have the same width as the container and not create multiple rows. But you could have top and bottom padding if you change the css to this:

    @media only screen and (max-width: 767px) {
    #top div div.product .woocommerce-tabs ul.tabs li a, #top div div.product .woocommerce-tabs ul.tabs li.active a {
        padding: 9px 0px!important;
    }
    }

    Best regards,
    Mike

    in reply to: No Animations on the latest Version (4.7.3) #1193081

    Hi,
    Thank you for the login, I have installed your child theme and imported your parent theme settings.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1193077

    Hi,

    @peterolle
    thanks, I was hoping to find a reason your alt & title for the alternate logo is not working. I have again installed a clean version on my localhost with only the woocommerce plugin and no functions, and once I add the alt & title to the alternate logo the alt & logo reflects the change.
    2020-03-14_051140.jpg
    So I can’t confirm your issue, I will ask the rest of the team to try to recreate to error and offer suggestions to correct.
    Thank you for your patience.

    Best regards,
    Mike

    in reply to: Enfold – Lawyer Demo #1193074

    Hi,
    Try this link: https://www.dropbox.com/s/tdy21xu2tlwm9rg/justice.zip?dl=0

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1192883

    Hi,

    @peterolle
    login page is still giving the WordFence “You are temporarily locked out” error, please check.

    Best regards,
    Mike

    in reply to: A couple of questions about demos installation #1192881

    Hi,
    1) Thanks for the screenshots, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all #main .slide-entry {
        width: 100% !important; 
    }
    .responsive #top #wrap_all #main .content .entry-content-wrapper {
        padding: 0px !important; 
    }
    .responsive #top #wrap_all .container {
        width: 95% !important; 
        max-width: 95% !important; 
    }
    }

    2) Typically the theme options will tell you when there is an update and you can update through the theme options, but you must have a “valid Envato private token” in the theme options, but on your site I see this is empty, please follow the instructions on the theme options page.
    3) glad that helped.

    Best regards,
    Mike

    Hi,
    Thank you for the ftp access, on the topic of restoring the title attribute to the linked thumbnails of your blog posts such as the link in the Private Content area, I found that the postslider.php was missing the title attribute on line 699 $title
    I have adjusted your child theme postslider.php so your natural titles will show.
    I also found that to remove the “portfolio elements” from the same page the “tag.php” needed to be adjusted, I did this and added the file to your child theme, so now the heading doesn’t show and no scripts or css is used to hide it, as requested.
    I reenabled all of your plugins and customizations except for the two jQuery scripts that you didn’t want to use anymore in your original request.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Update has broken my Code #1192852

    Hi,
    Thank you for the login, I see in your “site health” you have a “Rest API” error:
    Error: [] cURL error 28: Operation timed out after 10001 milliseconds with 0 bytes received
    This is typically a server issue, this article suggests some possible solutions or this one.

    Best regards,
    Mike

    in reply to: No Animations on the latest Version (4.7.3) #1192598

    Hi,
    Typically installing the child theme is easy, I just tried to explain the possible hangups “just in case”
    A child theme is used as your theme that you can edit and customize and the customizations will not be lost when you update the parent theme (enfold)
    When you don’t use a child theme and you edit the theme files or add functions in the functions.php these changes are lost when the parent theme is updated because the files are replaced with the new theme files.
    Child theme files or functions.php are not replaced when the theme is updated.
    If you have already edited the parent theme files or added functions in the functions.php, once you have installed your child theme you will need to move these customizations to your child theme.

    Best regards,
    Mike

    in reply to: grid column failure #1192579

    Hi,
    Thank you for the feedback, I copied your failed post to my localhost via the Avia Layout Builder Debugger
    and then I removed the nested columns and placed all of the content in the grid rows 2/3 + 1/3 and saved and viewed the page a couple of times and also tried editing it a couple of times and each time the grid rows remained in place in the frontend and the backend.
    Please go to the test page in the Private Content area and test the frontend and the backend, it seems that it is stable now.

    Best regards,
    Mike

    in reply to: Sidebar Thumbnails Size #1192572

    Hi,
    1) I believe to achieve this you will need to look for a woocommerce plugin.
    3) for the detail tabs on mobile, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    #top div div.product .woocommerce-tabs ul.tabs li a,#top div div.product .woocommerce-tabs ul.tabs li.active a {
        padding: 0 !important; 
    }
    #top .woocommerce-tabs .tabs li a {
        margin: 0 -4px 0 0;
    }
    }

    After applying the css, Please clear your browser cache and check.
    4) to validate a minimum of 10 numbers adding this code to the end of your functions.php file in Appearance > Editor may work:

    // Limit Woocommerce phone field to 10 digits number
    add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process');
      
    function my_custom_checkout_field_process() {
        global $woocommerce;
      
        // Check if set, if its not set add an error. This one is only requite for companies
        if ( ! (preg_match('/^[0-9]{10}$/D', $_POST['billing_phone'] ))){
            wc_add_notice( "Incorrect Phone Number! Please enter valid 10 digits phone number"  ,'error' );
        }
    }

    or this one:

    // validation for Billing Phone checkout field
    add_action('woocommerce_checkout_process', 'custom_validate_billing_phone');
    function custom_validate_billing_phone() {
    $is_correct = preg_match('/^[0-9 \-]{10}/i', $_POST['billing_phone']);
    if ( $_POST['billing_phone'] && !$is_correct) {
    wc_add_notice( __( 'Phone Number must be minimum 10 numbers.' ), 'error' );
    }
    }

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1192564

    Hi,
    Ok, the original issue was solved and closed on Jun 12, 2019, and I’m unable to recreate the error with the latest install, yet you seem to be experiencing the issue now, so I’m not sure how I can assist without being able a investigate.

    Best regards,
    Mike

    in reply to: A couple of questions about demos installation #1192559

    Hi,
    1) I’m not sure I understand, Please see the screenshots in Private Content area of what I see when looking at your page on mobile.
    2) as for your social share buttons at the bottom of your posts, I see that you are using Enfold v4.6.3.1, you will need to update to v4.7.3 to correct the WordPress error with v5.3.2.
    3) To post images please try uploading to an image host like https://savvyify.com/img/ and then copy the embed codes into your post.

    Best regards,
    Mike

    in reply to: A couple of questions about demos installation #1192557

    Hi,
    1) I’m not sure I understand, Please see the screenshots in Private Content area of what I see when looking at your page on mobile.
    2) as for your social share buttons at the bottom of your posts, I see that you are using Enfold v4.6.3.1, you will need to update to v4.7.3 to correct the WordPress error with v5.3.2.
    3) To post images please try uploading to an image host like https://savvyify.com/img/ and then copy the embed codes into your post.

    Best regards,
    Mike

    Hi,
    Not at this time, Thank you for your patience.

    Best regards,
    Mike

    in reply to: Overlap grid columns #1192545

    Hi,
    To overlap the map over the “ZENTRALE LAGE” column, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    
    #top.page-id-996 #eightypercent .av_gmaps_sc_main_wrap.av_gmaps_main_wrap  {
        position: relative;
        margin-top: 4px;
        margin-right: -2.5vw;
        z-index: 8;
        border: 15px solid #ffffff;
    }
    #top.page-id-996 #eightypercent > div.flex_cell.no_margin.av_one_half.avia-builder-el-44.el_after_av_cell_one_half.avia-builder-el-last {
    	height: 490px !important; 
    }
    #top.page-id-996 #eightypercent #av_gmap_0 {
    	height: 420px !important; 
    }
    

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

    Best regards,
    Mike

    in reply to: Knowledge Base icon not provide in the template #1192529

    Hi,
    Please see the link in the Private Content area.

    Best regards,
    Mike

    Hi,
    Thank you, but the FTP login doesn’t seem to be working, please check.

    Best regards,
    Mike

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

    Hi,
    Perhaps your Permalink structure does have something to do with this, can we have an admin login to investigate? Since this is a dev site can we try different settings and disabling scripts and plugins to try to isolate this issue?

    Best regards,
    Mike

    in reply to: Add a pop up Booking form #1192268

    Hi,
    Glad this is working for you.
    Since you are using a child theme you will not lose these customizations when you update. For updating it looks like your Envato private token is set and your Theme Updates in your theme option is working correctly. So updating should just be a matter of waiting for the next update to show in your theme update options.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Alt for transparent header image #1192266

    Hi,
    sorry, I’m not able to reproduce this on my install, and when I try to login to your site to investigate WordFence gives this error: You are temporarily locked out please check.

    Best regards,
    Mike

    in reply to: Update has broken my Code #1192261

    Hi,
    The error doesn’t seem to be occurring on both sites. The error could be a curly quote in the code, or in a different script.
    Please try disabling your plugins and checking that your script was copied correctly from your other vendor.
    Otherwise, can we have an admin login to your stagging site and try disabling things to try to isolate the issue.

    Best regards,
    Mike

    in reply to: Sticky Menu on Mobile not sticky #1192242

    Hi,
    Thank you for the video, please link to your page so we can examine closer.

    Best regards,
    Mike

    in reply to: Sidebar Thumbnails Size #1192239

    Hi,
    Sorry for the late reply, I have checked a few of your product pages but I don’t see a ” product reviews” section, I do see a “review” tab next to the description under the “size” and “add to cart” button, is this what you mean?
    If so the “review” tab can’t be moved to it’s own section, it is part of the description tabs.
    To make the main price above the description bold, please try this css:

    span.woocommerce-Price-amount.amount {
    font-size: 15px !important;
    font-weight: bolder !important;
    }

    After applying the css, Please clear your browser cache and check.
    For me the product detail tabs are all in one row, do you mean this occurs on mobile devices?

    Best regards,
    Mike

Viewing 30 posts - 16,981 through 17,010 (of 34,221 total)