Forum Replies Created

Viewing 30 posts - 15,571 through 15,600 (of 34,221 total)
  • Author
    Posts
  • in reply to: Unstick topbar on mobile #1232247

    Hi,
    Thank for the feedback, glad to hear it’s working for mobile, I had not looked at the tablet view yet, to expand this script for tablet I adjusted to this:

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

    This is because before 480px your topbar is 60px high & after 480px your topbar is 30px.
    There is still a slight jump on scroll down, this is because the #main container is given zero padding, but we want it to have a 113px offset (padding-top), so on scroll when the top padding is removed from the #main it looks like it is jumping.
    I’m not sure we are going to be able to overcome this.

    Best regards,
    Mike

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

    Hi,
    Thanks for the login, I see that if you add the excerpt to the excerpt field the title doesn’t link correctly, but if the excerpt is in the post field the link is correct.
    I can not recreate this on a new install, I see you have a plugin “Page Links To” perhaps this is related to it.
    Please check your page now that I adjusted the excerpts.

    Best regards,
    Mike

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

    Hi,
    If the h3 only contains the word “Articles” then try using css to hide it:

    #top.archive.tag h3.tag-page-post-type-title {
    	display: none;
    }

    This should work but I don’t have the class tag-page-post-type-title so this must be a custom class.

    Best regards,
    Mike

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

    Hi,
    I found that the last rule in your Quick CSS had an error in the comment, so everything below didn’t work, I corrected and added the 2/3 css which seems to work.
    Which advanced customizations don’t work? I see the “orange h1” one is working.
    please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    I don’t believe “WordPress > Customize > Additional CSS” will be lost on updates, I will need to re-check.
    If the css I gave you is causing an issue please remove, otherwise I will be happy to review your css and site.

    Best regards,
    Mike

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

    Hi,
    Thank you for the feedback, glad to hear you found a solution, I was going to suggest centering them but figured you didn’t like it.
    I recommend centering them because you can have larger buttons for mobile users to use than when they are side-by-side.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    Hi,
    Thanks for the update, 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: Edit /category/ and /tag/ layout #1231714

    Hi,
    Glad to hear this helped, I don’t have the word “articles” in my title, I have “Tag Archive for: [tag]”, please link to your page so I can examine the elements and offer a solution.

    Best regards,
    Mike

    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

Viewing 30 posts - 15,571 through 15,600 (of 34,221 total)