Forum Replies Created

Viewing 30 posts - 12,541 through 12,570 (of 31,657 total)
  • Author
    Posts
  • Hi,
    Thank you for the feedback, I understand but I’m not experiencing this, I tested with Chrome on Windows & Mac, please see the video in the Private Content area.
    Did you try an incognito window and clearing your cache?
    I’m using:
    Chrome Version 86.0.4240.75 (Official Build) (64-bit)

    One possible solution would be to change the code above to use “opacity” instead of “display”, but I would prefer to recreate your error to ensure it’s not just you if that makes sense.

    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: Anchors and active menu items problem #1251704

    Hi,
    While reporting this I found that If the portfolio grid is replaced with another element, such as the masonry element, or if the 3/5 column that the portfolio grid is inside of is changed to full width, or if the column is removed the menu highlighting works correctly. So it seems to be related to the element nested inside of the column, anyways I will report back after the dev team checks.

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1251427

    Hi,
    Thank you for your testing, I copyied your page and menu to my localhost and was able to recreate this issue, I will submit this to the dev team to check. Thanks again for your patience.

    Best regards,
    Mike

    in reply to: horizontal gallery slider not showing correctly on mobile #1251399

    Hi,
    Thanks for the feedback, but when I check the page the arrows show correctly, is this occurring on mobile or desktop, and which browser?

    Best regards,
    Mike

    Hi,
    Sorry for the very late reply, to make the next and previous arrows hide on the first and last slide you could use this script to count the slides and then add classes to the first and last and then hide or show the arrows based on those classes. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_horizontal_gallery_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
    var lis = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').length;
    var hgs = $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap');
    var prev = $('.av-horizontal-gallery .av-horizontal-gallery-prev');
    var next = $('.av-horizontal-gallery .av-horizontal-gallery-next');
    
    $('.av-horizontal-gallery-slider .av-horizontal-gallery-wrap').each(function(index){
        if(index<1)$(this).addClass('first');
        if(index>=lis-1)$(this).addClass('last');
    })
    $('.avia-slideshow-arrows a').click(function(){
    if (hgs.is('.first.av-active-gal-item')){
    	prev.css({'display' : 'none'});
    }else{
    	prev.css({'display' : 'block'});
    }
    if (hgs.is('.last.av-active-gal-item')){
    	next.css({'display' : 'none'});
    }else{
    	next.css({'display' : 'block'});
    }
    });
    	
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_horizontal_gallery_script');

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1250844

    Hi,
    Thank you for the feedback, I have checked this out and am not quite sure. I will continue to investigate, thanks again for your patience.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, please try this css:

    #top #header.av_header_transparency #header_meta {
        background-color: #349a47 !important;
    }

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

    Best regards,
    Mike

    in reply to: Trouble displaying custom fields #1250590

    Hi,
    Thank you.
    Please note, to override elements with custom elements in your child theme, please create a directory /shortcodes/ within your child theme and add your /postslider/ directory there.
    Then add this code to your child theme functions.php

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    Best regards,
    Mike

    in reply to: Hide Submenu Element on Mobile #1250575

    Hi,
    I see that you are using Enfold v4.4.1, please update to v4.7.6.3

    Best regards,
    Mike

    in reply to: Portfolio grid complete container background colour #1250501

    Hi,
    Thank you for sharing your solution.
    As this thread is quite old now we will close it. Thank you for using Enfold.
    Feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Enfold 2017/ can't import #1250500

    Hi,
    Thank you for the admin login, but I couldn’t login to sftp, below is what I tried.
    Please try downloading the zip file linked below, after extracting it you will find the folders “2015 & 2017”, please upload via sftp these and their contents to: \wp-content\uploads\
    You will also find the file “enfold-2017.xml”, please upload this via sftp to: \wp-content\themes\enfold\includes\admin\demo_files\
    Then reset your site and enable your child theme and disable all plugins, custom scripts and custom functions, and then try to import the 2017 Demo through the theme options.
    The custom “enfold-2017.xml” will import the images from your server instead of ours, typically this works.

    Best regards,
    Mike

    in reply to: Hide Submenu Element on Mobile #1250497

    Hi,
    To hide the sub-menu 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) { 
    	#sub_menu1 {
    		display:none !important;
    	}
    }

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

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1250403

    Hi,
    Sorry for the very late reply, and thanks for the login, in my tests after the “portfolio” the anchors seem to be off about 30px, so it seems like a calculation.
    I copied your page to my localhost and tested v4.7.6.4-beta-1 which seems to work correctly. Please try testing this version which is linked in the Private Content area.
    The easiest way to do this is to rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.
    I also noticed that there is a copy of “avia.js” in your child theme, please remove this, for now, to ensure there won’t be any conflicts.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I was not able to login to your backend, but I was able to test a jQuery script by injecting the script on my end.
    So as I understood your question you would like the topbar to show after scroll, when it is typically hidden.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function show_topbar_after_scroll(){
      ?>
      <script>
    ( function( $ ) {
    
      'use strict';
    
      var $window       = $( window );
      var lastScrollTop = 0;
      var $topbar       = $( '#header_meta' );
      var $header       = $( '#header' );
      var headerBottom  = $topbar.position().top + $topbar.outerHeight( true );
    
      $window.scroll( function() {
              var windowTop  = $window.scrollTop();
    
              // Add custom sticky class 
              if ( windowTop >= headerBottom ) {
                  $topbar.addClass( 'top-sticky' );
              } else {
                  $topbar.removeClass( 'top-sticky' );
                  $topbar.removeClass( 'top-show' );
              }
    
              // Show/hide
              if ( $topbar.hasClass( 'top-sticky' ) ) {
                  if ( windowTop >= headerBottom || windowTop > lastScrollTop ) {
                      $header.addClass( 'top-show' );
                  } else {
                      $header.removeClass( 'top-show' );
                  }
              }
              lastScrollTop = windowTop;
      } );
    } ( jQuery ) );
    </script>
    <?php
    }
    add_action('wp_footer', 'show_topbar_after_scroll');

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

    .responsive #top #wrap_all #header.top-show {
          margin-top: 0 !important;
      }
    

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

    Best regards,
    Mike

    in reply to: Trouble displaying custom fields #1250307

    Hi,
    Please include an admin login in the Private Content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Convert Plus Plugin dont work with the Enfold Theme #1250066

    Hi,
    Sorry, I’m still stumped on this and anticipate direction from our team on this. Thank you for your patience.

    Best regards,
    Mike

    in reply to: Anchor blog pagination to same page location #1250058

    Hi,

    @mbesh
    , sorry the code above is 3 years old now, please open a new thread with an admin login and please describe the issue again.
    Since this is not your thread posting your login here will not be private and you will not see anything we write in the Private Content area.
    You can post a link to your new thread here so we can find it easier, thank you for your patience.

    Best regards,
    Mike

    Hi,
    Sorry, on the test page, linked below, I see that the first column is aligned right, while the others are centered, to center the first column please try this css:

    #get_height_from_first_column ul li {
    	text-align: center !important;
    }

    Best regards,
    Mike

    in reply to: FAQ Accordion keeps randomly jumping on page #1250020

    Hi,
    Glad to hear that it has not been acting up, so far, we will leave this open for further feedback.

    Best regards,
    Mike

    in reply to: Google Marker Icon Larger #1249867

    Hi,
    Sorry for the late reply, please try the solution in this post.

    Best regards,
    Mike

    in reply to: Convert Plus Plugin dont work with the Enfold Theme #1249864

    Hi,
    Thank you, I had seen this option.

    Best regards,
    Mike

    in reply to: Trouble displaying custom fields #1249861

    Hi,
    The elements are in the \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\ directory, for the post slider you would be looking for the \postslider\postslider.php

    Best regards,
    Mike

    Hi,
    Thank you.

    Best regards,
    Mike

    Hi,
    Glad we were able to help and thank you for your patience, we will close this now as this thread is quite long now and contains multiple topics. 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: Menü im Consulting Demo #1249851

    Hi,
    Das Menü enthält ein Beschreibungsfeld, das Sie jedoch nur angezeigt haben, wenn Sie die Option in den Bildschirmoptionen aktivieren:
    2020-10-01_055529.jpg
    2020-10-01_055646.jpg

    — Translated with Google —

    The menu has a Description field, but you made not see it unless you activate the option in the Screen Options:
    2020-10-01_055529.jpg
    2020-10-01_055646.jpg

    Best regards,
    Mike

    in reply to: Convert Plus Plugin dont work with the Enfold Theme #1249639

    Hi,
    @p412421e1, sorry checking another theme with the plugin doesn’t assist with this. It seems from Shivam’s reply that they don’t understand your issue, I was under the impression that they have been assisting you with this?
    It is interesting that adding or removing the cookies doesn’t seem to affect the popup, I wonder if the plugin actually uses the database to decide to show the popup or not, and not the cookies directly, I’m not sure.
    I have asked the rest of the team for ideas on this, thank you for your patience.

    Best regards,
    Mike

    in reply to: Downloading page Consulting #1249634

    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: Flex Container #1249633

    Hi,
    Sorry for the late reply, if you use the custom class cehrs then you would change the line above:
    $('.flex_column.av_one_third section:nth-of-type(2)').each(function() {
    to
    $('.cehrs section:nth-of-type(2)').each(function() {
    After applying the changes, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the video, for the LearnDash header and the popup editing modal for the ALB please try adding this code to your child theme functions.php in order to add the css to the admin head of the page. I was not able to add it to your theme editor, so you may need to add it via ftp.

    function correct_admin_sfwd_header(){
      ?>
      <style>#sfwd-header {z-index: 9999 !important;}
    .avia-modal.modal-preview-active.modal-preview-large {left: 11% !important; right: 1% !important;}</style>
      <?php
      }
    add_action('admin_head', 'correct_admin_sfwd_header', 1);

    Best regards,
    Mike

Viewing 30 posts - 12,541 through 12,570 (of 31,657 total)