Forum Replies Created

Viewing 30 posts - 16,381 through 16,410 (of 35,023 total)
  • Author
    Posts
  • in reply to: No products found which match your selection #1231709

    Hi,
    Glad to hear this helped, and thanks for pointing out the language issue, I will correct the translation and submit to the dev team.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Transparent background in table #1231707

    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: Unstick topbar on mobile #1231706

    Hi,
    Sorry for the late reply and thanks for your patience. So I re-wrote the script and disabled your css for the fixed mobile header and I found that the header and topbar were scrolling smoothly but the slider was not, so once I adjusted for that it looks smooth.
    Please clear your browser cache and check.

    This is the new script:

    function custom_hide_top_script(){
      ?>
      <script>
    (function($){
      $(window).scroll(function(){
      	var width = $(window).width();
      	var scrolled = $(window).scrollTop();
     if ( scrolled >= 60 && width <= 767) { 	
      $( '#header' ).each(function() {
      $(this).css({'background-color':'#ffffff','position':'fixed','top':'-60px'});
      $('#full_slider_1').css({'padding-top':'130px'});
      });
     }
     else if ( scrolled <= 60 && width <= 767){
     	$( '#header' ).each(function() {
     	$(this).css({'background-color':'#ffffff','position':'relative','top':'0'});
     	$('#full_slider_1').css({'padding-top':'0px'});
     });
      } else {}
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_hide_top_script');

    Best regards,
    Mike

    in reply to: unable to Import: Enfold 2017 Demo #1231697

    Hi,
    I see the import worked, but some past attempts are also showing so please install the WP Reset plugin and reset your site. If there is anything you want to save like your slider, please export. After the reset, enable the theme and try the import again. You should not need to upload the files again because “reset” doesn’t remove files, just the insistence in the database.

    Best regards,
    Mike

    in reply to: Links do not open in a new tab #1231602

    Hi,
    Sorry for the late reply and thanks for the link. I tried to login but WordFence locked me out. Please see the Private Content area.

    Best regards,
    Mike

    in reply to: Build Similar Layout/Fuctionality #1231598

    Hey navindesigns,
    Sorry for the late reply, I would recommend using the masonry element with portfolio entries. This will allow you to display titles & excerpts on hover and link on internal or external pages.

    Best regards,
    Mike

    in reply to: ZEO page customs field ? #1231596

    Hi,
    My Google research finds that “zeo_title” is from this code:

    $tax_meta = get_option('zeo_taxonomy_meta');
    $this->form_row('zeo_title', __('SEO Title', 'wordpress-seo'), __('The SEO title is used on the archive page for this term.', 'wordpress-seo'), $tax_meta);

    It looks like it’s from the SEO plugin.

    Best regards,
    Mike

    in reply to: Transparent background in table #1231594

    Hey hasbeat,
    Sorry for the late reply, I adjusted your css and your table background is transparent now,
    Please clear your browser cache and check.
    CSS added:

    #top .alternate_color table {
        background: transparent !important;
    }

    CSS adjusted:

    #top .avia-table tr:nth-child(even),#top .avia-table tr:nth-child(odd) {
    background: transparent !important;
    }

    Best regards,
    Mike

    in reply to: Post entries by author and post format links #1231592

    Hey Kyle,
    Sorry for the late reply, when using the “link” post type they link to different pages with their headline. Please include an admin login in the Private Content area so we can see how you are adding the excerpts and investigate this issue.

    Best regards,
    Mike

    Hey philthebass,
    Sorry for the late reply, and thanks for the links, I found that this error has been reported to the dev team from another thread, , for now, the fix seems to be this.

    Best regards,
    Mike

    in reply to: Google Star Snippet by ProvenExpert #1231579

    Hi,
    Sorry for the late reply and thanks for the screenshot, instead of using a Text element to display your code snippet you should try using a Code Block element.
    2020-07-19_152250.png
    To remove the “itemscope” & “itemtype” from the code block parent add a custom ID to the code block element, such as “remove_parent_attr”
    2020-07-19_152955.png
    Then add this code to the end of your functions.php file in Appearance > Editor:

    function remove_parent_attr(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      $( '#remove_parent_attr' ).each(function() {
      $(this).removeAttr('itemscope');
      $(this).removeAttr('itemtype');
      $(this).find('.avia_codeblock').removeAttr('itemprop');
      });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_parent_attr');

    Then clear your browser cache and check.
    2020-07-19_155523.png

    Best regards,
    Mike

    in reply to: Best way to move a site to Enfold (Images) #1231576

    Hey peterolle,
    Sorry for the late reply, it looks like the plugin PNG to JPG will convert your PNG to JPG and remove the old PNG.
    Then this plugin reGenerate Thumbnails Advanced will Regenerate all images and delete the old ones.
    I recommend backing up your images and database before using these plugins.

    Best regards,
    Mike

    in reply to: Edit /category/ and /tag/ layout #1231575

    Hey GiroudMathias,
    Sorry for the late reply, do you mean that you want your archive pages such as the category pages, to have the same layout as a page created by assigning a blank Classic Editor page as the place a blog will show in the theme options “And where do you want to display the Blog?”
    2020-07-19_135349.png
    I assume this because it the only place with the layout option “List Layout – Simple (Title and meta information only)”, for the option above it what do you have set for the “Blog Styling” option?
    2020-07-19_140145.png

    So when I test this the two pages look the same
    2020-07-19_141809.jpg
    Please check your settings to achieve the same.

    On a side note, if you wanted the archive & tag pages to match an Advanced Layout Builder blog page this filter will do that. The available layouts are single-small, single-big, blog-grid and multi-big.

    Best regards,
    Mike

    in reply to: Two seperate buttons on mobile iphone not aligned #1231573

    Hi,
    Sorry for the late reply and thanks for the login, I didn’t find the page in your screenshots but I see that the page you linked to contains two buttons at the bottom of the page that are not side-by-side. This is because each is in a 1/3 column which is full-width for mobile.
    So to adjust this I wrote this css, for the smallest screens of 320px to 345px I had to adjust the button padding a little.
    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.page-id-285 #av_section_4 .flex_column.avia-builder-el-14,
      #top.page-id-285 #av_section_4 .flex_column.avia-builder-el-17 {
        width: 47% !important;
      }
    }
    
    @media only screen and (max-width: 767px) {
      #top.page-id-285 #av_section_4 .flex_column.avia-builder-el-16 {
      	display: none !important;
      }
      #top.page-id-285 #av_section_4 .flex_column.avia-builder-el-14 .avia-button.avia-size-large,
      #top.page-id-285 #av_section_4 .flex_column.avia-builder-el-17 .avia-button.avia-size-large {
        padding: 15px 5px 15px !important;
        min-width: 120px !important;
      }
    }
    @media only screen and (max-width: 345px) {
      #top.page-id-285 #av_section_4 .flex_column.avia-builder-el-17 {
      	    float: right !important;
      }
    }

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

    This css is specific to that page and the bottom two buttons because you don’t want this to be active for every page as it could have adverse effects.
    If you do want this to work on every similar layout then please add a custom class to the buttons such as “vorige-les” & “volgende-les” and a different custom class to each of the three 1/3 columns they are in and we will adjust the css.

    Best regards,
    Mike

    in reply to: Post Slider: Head Size according to number of rows #1231570

    Hi,
    Sorry for the late reply, and thanks for the link. This css will change the font size of the title of the post slider when it is in a 2/3 column.

    #top #main .flex_column.av_two_third .avia-content-slider h3.slide-entry-title {
    	font-size: 40px !important;
    }

    Then at the bottom of the page you have a full width column so to make those titles a different font size, so we will use this css:

    #top #main .flex_column.av_one_full .avia-content-slider h3.slide-entry-title {
    	font-size: 30px !important;
    }

    So you can have css rules to change the font size of the titles depending on what columns they are in.

    Please try the above code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field, after applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: No products found which match your selection #1231558

    Hi,
    Sorry for the late reply, I saw that the product slider was not showing any products, I copied your page shortcodes to my localhost to examine the settings in English and I found the second filter was set to “Show hidden products only”
    2020-07-19_093136.png
    so I changed it to “Show all products” because I don’t think you have any hidden products and now the element shows products, please take a look.

    Best regards,
    Mike

    in reply to: Translucent Buttons with background image example #1231555

    Hi,
    Thank you @Guenni007 for your button example page, @peterolle I have a fresh install of the 2017 demo and for the Translucent Button on the button demo page it is created strictly with theme options.
    2020-07-19_075406.png
    In this demo the button element is inside of a column element which has the background color, you can replace it with an image strickly with column styling options.
    2020-07-19_080231.png
    2020-07-19_080516.png
    So since every thing up to here is done in the element options, I’m sure you have been able to do these, if not then there must be a conflict or an error that we should take a look at.
    But for the Translucent Button to contain the background image and not the column you will need to add a little css only to point to the image, this is not an option yet. So for example I removed the column background color and added a custom class to the button in the advanced options, I used “translucent_button_background”
    2020-07-19_075646.png
    then I added this css:

    .translucent_button_background > a.avia-button {
        background-image:url('https://test.test/wp-content/uploads/2020/07/cool-background.jpg');
        background-size: cover;
    }

    for this result
    2020-07-19_082538.png
    From your posts I was not sure if you want the column to have the background image since that was were the black color came from, or if you wanted the button to have the background image, so I showed both.

    Best regards,
    Mike

    in reply to: Layer Slider image Layer #1231550

    Hi,
    Glad to hear that you have sorted it 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: Layer Slider image Layer #1231523

    Hi,
    Sorry for the late reply, I examined your slider element and found that Safari is getting the position from the parent div .ls-wrapper.ls-in-out this div has the position as in-line css which Safari is using over the stylesheet css that Firefox & Chrome are using.
    So I tried adjusting the in-line css though the layerslider options but none seem to address this, I then tried this css in the General Styling > Quick CSS field and in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 990px) {
       #top.home #layerslider_1 .ls-wrapper.ls-in-out{
            top: 83% !important;
            left:40px !important;
        }
    }

    Unless you have a server cache that can be cleared, this doesn’t seem to be working, but please check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I was unable to login seems WordFence blocked me, please white list my IP in the Private Content area.

    Best regards,
    Mike

    in reply to: unable to Import: Enfold 2017 Demo #1231508

    Hi,
    Sorry for the late reply, and thanks for the login, please try downgrading and extracting the file in the Private Content area, it contains a zip file of the images for the demo and a modified enfold-2017.xml file. Please upload using FTP or your webhost file manager the two folders in the image zip file to \wp-content\uploads\ and upload the enfold-2017.xml file to \wp-content\themes\enfold\includes\admin\demo_files\ then clear your browser cache and clear your site cache, the button in your admin toolbar.
    Then try importing again.

    Best regards,
    Mike

    in reply to: Unstick topbar on mobile #1231507

    Hi,
    The “Sticky Header”, “Shrinking Header” & “Unstick topbar” theme options are not designed to work on mobile devices, so while we are attempting to duplicate this, it is not EXACTLY the same.
    I believe we can get close, but I can’t say that this customization will be EXACTLY the same.

    Best regards,
    Mike

    in reply to: DropDown arrow for sub menu fullwidth element #1231505

    Hi,
    Thanks for the kind words and 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: Side Bar image top margin #1231504

    Hi,
    Ok, looking at your /koh-haa-diving/ page for mobile I see the sidebar is very low with a large gap, so I adjusted the script to only work screens larger than 1440px.
    Please clear your browser cache and check.
    What is wrong with the desktop version?
    Please note that if testing on a desktop and resizing the window to simulate different device sizes you will need to reload the page for the window size to be recognized at each size you test. This doesn’t affect actual devices just resized desktop browsers.

    For future reference this is the updated script:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
    	  var width = $(window).width()
          var s1 = $('#top.page-id-2524 #main > div.container_wrap_first.container_wrap > div ').height();
        var s2 = $('#top.page-id-2524 #main > div.container_wrap_first.container_wrap').height();
    
        if (s1 > s2 && width >= 1440) {
            $('#top.page-id-2524 #main > div.container_wrap_first.container_wrap').css('height', s1 + "px");
    	}  else {
            
    	}
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Best regards,
    Mike

    in reply to: Blog Layout Page and Post #1231501

    Hi,
    Sorry for the late reply, and thanks for the test page, it looks like your grid is set to no gap in the element and then in your child theme css you are using this to add the right margin:

    .grid-entry .inner-entry {
        margin-right: 40px;
    } 

    so try adjusting your css to this:

    .grid-entry .inner-entry {
        margin-right: 40px;
        margin-bottom: 40px;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, thank you for the feedback I had been looking at the mobile version of your site. I compared your page to a masonry gallery on a new install and found that the first div av-masonry-item-no-image has no padding and all items line up correctly, so I found the cause for the padding in your css:

    .av-masonry-entry {
        padding: 30px !important;
    }

    I assume you added this to have a larger gap, please try replacing it with this css to add the padding to the items with images and not the first one with no image:

    .av-masonry-entry.av-masonry-item-with-image {
        padding: 30px !important;
    }

    you can also remove your other css because the first item will not have padding to remove.
    Then clear your browser cache and check.

    Best regards,
    Mike

    Hey tedfinch,
    Thank you for the login, I completed 5 tests as the user but didn’t see any errors on the results page. I also tested without the script from the other thread, but the results would not show, as expected. I also tested as the admin with the script activated, but I saw no difference to the user results.
    I tested with Chrome & Firefox on Windows with the dev tools console open to hopefully catch any backend errors, I was also hoping that I would experience your “crash” to see what the console’s error message is, but it didn’t happen.
    While you were working with LearnDash did they offer any solutions for showing the results?
    The script I wrote is only adding css $('.wpProQuiz_results').css({display: 'block'}); to allow the div to show, so I don’t think that it is causing the crash but once we can recreate the error we will know more, but it sounds like the error is happening randomly.
    Do you have any suggestions on how I can force the error, perhaps a longer test? If you link to a longer test please include the answer key.

    Best regards,
    Mike

    in reply to: Learndash Quiz Results Display Issue – 2.0 #1231489

    Hi,
    Thank you, I will investigate.

    Best regards,
    Mike

    in reply to: Unstick topbar on mobile #1231488

    Hi,
    Sorry for the late reply, I have adjusted the script to :

    function custom_hide_top_script(){
      ?>
      <script>
    ( function( $ ) {
    
      'use strict';
    
      var $window       = $( window );
      var $header       = $( '#header_meta' );
      $window.scroll( function() {
              var windowTop  = ($(window).scrollTop() <= 0);
              if ( windowTop ) {
                  $header.addClass( 'top-show' );
                  $header.removeClass( 'top-hide' );
              } else {
                  $header.removeClass( 'top-show' );
                  $header.addClass( 'top-hide' );
              }
      } );
    } ( jQuery ) );
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_hide_top_script');

    and the css to:

    @media only screen and (max-width: 1023px){
    #header_meta.top-hide {
    	min-height: 0;
    	height: 0;
    	visibility:hidden;
        opacity:0;
        transition:min-height 1s linear;
    }
    #header_meta.top-show {
    	min-height: 61px;
        visibility:visible;
        opacity:1;
        transition:min-height 1s linear;
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Blog Layout Page and Post #1231285

    Hi,
    To add a screenshot please try using https://savvyify.com/img/ and pasting the image URL in your post.
    Please also try to create a test page using the two columns so we can examine the structure.

    Best regards,
    Mike

Viewing 30 posts - 16,381 through 16,410 (of 35,023 total)