Forum Replies Created

Viewing 30 posts - 16,681 through 16,710 (of 35,024 total)
  • Author
    Posts
  • in reply to: using own icons in icon list #1221682

    Hi,
    We can help adjust the font size of the icon font, but we will need to see it to help, can you make a test page visible with it?
    Also, please add the bullet point section to the test page so we can investigate.

    Best regards,
    Mike

    in reply to: Product grid limit number of products #1221653

    Hi,
    Glad to hear, try changing this line: if ($("#top.page-id-5494")){ to if ($("#top.page-id-5494" || "#top.page-id-500" || "#top.page-id-501")){
    then it should work on all 3 pages.

    Best regards,
    Mike

    Hi,
    Thanks for the login, I disabled the script above and tried this solution which seems close but not quite right. I will continue to investigate.

    Best regards,
    Mike

    in reply to: Tables – how to make them look nice #1221176

    Hi,
    For your footer please try this css:

    #text-3 .wptb-table-container .wptb-preview-table {
    	min-width: 70% !important;
        width: 70% !important;
        float: left;
    }

    for your contact page please try this css:

    #top.page-id-76 .wptb-ph-element {
        border: 0px solid #fff0 !important;
    }
    #top.page-id-76 .wptb-table-container .wptb-preview-table {
    	min-width: 70% !important;
        width: 70% !important;
        float: left;
    }

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

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1221162

    Hi,
    Yes, but unfortunately we have not been able to reproduce it or find a cause for it yet, Thank you for your patience.

    Best regards,
    Mike

    in reply to: Hiding content elements in Enfold #1221143

    Hi,
    In this case, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field to display only the logo, but not the menu at the top:

    nav.main_menu {
    	display: none !important;
    }

    After applying the css, Please clear your browser cache and check.
    When you are ready to show the menu again, simply remove the css.

    Best regards,

    in reply to: Product grid limit number of products #1220856

    Hi,
    I see, thanks for the feedback. So I added a script that replaces the pagination for the one page to show only 5 pagination pages.
    I added the script to your child theme functions.php and I set your page to show 20 items with pagination so you could see it working.
    Please clear your browser cache and check.

    This is the script with your URL removed for future readers to model:

    function custom_pagination(){
        ?>
        <script>
      (function($){
        $(document).ready(function(){
            $new_pagination = '<nav class="pagination"><a href="https://your-site.com/" class="inactive">1</a><a href="https://your-site.com/page/2/" class="inactive">2</a><a href="https://your-site.com/page/3/" class="inactive">3</a><a href="https://your-site.com/page/4/" class="inactive">4</a><a href="https://your-site.com/page/5/" class="inactive">5</a></nav>'
      if ($("#top.page-id-5494")){
          $( "nav.pagination" ).replaceWith( $new_pagination );
      } else {}
      });
      })(jQuery);
      </script>
      <?php
      }
      add_action('wp_footer', 'custom_pagination');

    Best regards,
    Mike

    Hey Gary,
    Sorry for the late reply, and thanks for the screenshot and link, for that split second you are seeing the header before your custom css is loaded:

    .responsive #top #header #header_meta {
        flex-basis: 100%;
    }

    for your “Logo left, Widgets right, menu below” solution.
    So I added this to your child theme functions.php in hopes to load the css before your other css:

    
    function add_custom_css(){
    	?>
    	<style type="text/css">
    		.responsive #top #header #header_meta {flex-basis: 100% !important;}
        </style>
    	<?php
    	}
      add_action('wp_head', 'add_custom_css', 1);

    I also cleared your cache plugin so this would take effect but I think the cache now needs to be re-built to reflect the change, please clear your browser cache and check a few times and let us know if this continues to be an issue.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the link, when I look at your page the image is already 618px and the text to the right is 362px. Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.single-product .single-product-main-image.alpha {
    	width: 700px !important;
    }

    This will make the image 700px and the text 280px.
    After applying the css, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: List of all blog authors #1220449

    Hi,
    The only plugin with search capacities that I found was Members List Plugin but it looks like it needs some custom css as it is very plain.
    We will leave this open should any fellow users wish to share their experiences with similar plugins.

    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: Socket Customization #1220358

    Hey Thomas,
    Sorry for the late reply and thanks for the login, I adjusted your css to this:

    #socket .copyright {
    position: relative;
    width: 100%;
    padding: 0 !important;
    }
    #socket .copyright a {
        width: 33.33%;
    }
    #socket .copyright a img {
        width: 100%;
    margin: 0 !important;
    }
    #socket .copyright p {
    margin: 0 !important;
    }
    #socket > .container {
      padding: 0px !important; 
      margin: 0px !important; 
    max-width: 100% !important; 
    width: 100% !important; 
    }

    now your 3 buttons stretch 100% of your site, each 33%
    Please see the screenshot in Private Content area, and clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Shop not working #1220347

    Hi,
    Sorry for the late reply, I went to your shop and the product in the Private Content area, and I was able to add the item to the cart while logged out.
    Please give this a try, if you have another product that doesn’t show the add to cart button please link to it so we can investigate.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, I’m only seeing your coming soon page, but I don’t see a login to see the logo and menu, please include an admin login in the Private Content area so we can investigate further.

    Best regards,
    Mike

    in reply to: Hiding content elements in Enfold #1220341

    Hey Leon,
    Sorry for the late reply, almost every element has an advanced tab with an “Element Visibility” options panel where you can check all to hide on all devices.
    2020-06-07_210428.png
    You can also set pages or posts to private or draft to hide them until you are ready.

    Best regards,
    Mike

    in reply to: Button Style #1220340

    Hi,
    Sorry for the late reply, to give your buttons a white background on hover please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .flex_column.avia-link-column.avia-link-column-hover:hover {
    	background-color: #fff;
    }
    .flex_column.avia-link-column.avia-link-column-hover:hover > section > div > h4 {
    	color:#000 !important;
    }

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

    Best regards,
    Mike

    in reply to: Need help #1220337

    Hi,
    Sorry for the late reply and thanks for the login, I tested your page by trying to disable your plugin and as you said the pagination shows then and not when your plugin is enabled. Unfortunately, the reason the pagination doesn’t show is because it’s div is empty, perhaps the div class “single-big” is also used by the plugin which is causing a conflict or pagination links are triggering something in the plugin. Try contacting the plugin author to see if this is a known issue or perhaps they have seen this before and already have a solution for it.

    Best regards,
    Mike

    Hey Oliver,
    Please check your color section to see if the overlay is enabled:
    2020-06-07_190148.png
    Otherwise, try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-4391 #av_section_1 .av-section-color-overlay {
    	opacity: 0 !important;
    }

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

    Best regards,
    Mike

    in reply to: Footer Socket Should Stay In Bottom #1220331

    Hey wasim-ullah,
    Please change your css from:

    #socket {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
    }

    to this:

    @media only screen and (max-width: 767px) { 
    #socket {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 999;
    }
    }

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

    Best regards,
    Mike

    Hi,
    Thanks for the feedback and glad that it helps, hopefully, this also helped @pro4upro4u.

    Best regards,
    Mike

    in reply to: Dashicons broke in Contact Form 7 #1220327

    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: Product grid limit number of products #1220326

    Hi,
    Ok, how will you determine which items will be within the 100 items (5 pages of 20 items each) since you have about 592 total products?
    Would you consider limiting your entries instead of having the Product Grid load all of them?
    I tried researching for a function to limit to total number items in the grid but didn’t find one.
    I imagine that we can hide the pagination beyond the fifth one so you can have only the 5 pages, but it’s not what you asked for.

    Best regards,
    Mike

    Hi,

    @Pro4uPro4u
    sorry for the late reply and thanks for the link, for your pages, 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.page-id-110 .av-horizontal-gallery-img {
        height: 100% !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
    .responsive #top.page-id-108 #tabbransch .av-horizontal-gallery-img {
        height: 300px !important;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
    }


    @Lodewijkvw
    for your page 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.page-id-45 .av-horizontal-gallery-wrap {
            margin: 1px !important;
            overflow: visible !important;
    }
    .responsive #top.page-id-45 .av-horizontal-gallery-img {
            height: 100% !important;
    }
    .responsive #top.page-id-45 .av-horizontal-gallery-inner {
    	min-height: 400px !important;
    }
    }

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

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, the Cumulative Layout Shift is new to me but from reading the documentation you linked to and reviewing the PageSpeed Insight report I see you have a Cumulative Layout Shift score of 0.038 for mobile
    2020-06-07_161927.png
    I recommend disabling your Autoptimize plugin which seems to be adding a lazyload function, and then clear your site cache and your server cache if you can. I notice that your page is shifting a little because the background image and your logo is lazyloaded.
    Please try this and then test again.

    Best regards,
    Mike

    Hey William,
    Sorry for the late reply and thanks for the link and the kind words.
    1: I have linked to the child theme in the Private Content area, please try installing this one. I recommend first going to Enfold Theme Options > Import/Export > Export Theme Settings File and saving a copy of it to your desktop, you can then use it later if you have any issues. I also recommend disabling all caching plugins and the Enfold Theme Options > Performance > JS & CSS file merging and compression while you are installing the child theme, you can enable the plugins after you are successful with the install.
    2: for your layerslider on mobile, I have tested on an Android with Chrome and on the “/liveaboard-diving-in-alor/” page the slider doesn’t show but the layerslider “circle-timer” does show, you are getting Mixed Content errors in the console for images so I believe that if you fix your “https” issue the slider images will show. I recommend the Really Simple SSL plugin to force the “https” and solve the Mixed Content errors.
    2b: I noticed that on each page the layerslider is on for mobile that you have extra padding & margin around the layerslider giving too much white space, so please try this css to correct, I tested it on several of your pages and it seems to work good.
    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 main.template-page.content.ls-overflow-visible {
    	padding: 0 !important;
    }
    #top .flex_column.flex_column_div.first.avia-builder-el-0.ls-overflow-visible {
    	margin-top: 0 !important;
    }
    }

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

    3: You may find that a 1/3 -1/3- 1/3 elements to be side by side on mobile will be hard to read but if you point out the exact elements I will try to write some css that does this for you so you can see.

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1220302

    Hi,
    Thank you, we will continue there.

    Best regards,
    Mike

    in reply to: Woocommerce Category Archive Sidebar not visible #1220301

    Hey coretekk,
    Thanks for the new thread and the login, I tried to make some changes and compared your site to my localhost but didn’t find the cause. I also tried to use the woosidebars plugin to show the sidebar but it didn’t work either. I will research some more.

    Best regards,
    Mike

    in reply to: List of all blog authors #1220255

    Hi,
    The Authors List plugin seems to accomplish your request, have you given it a try?

    Best regards,
    Mike

    Hi,
    Sorry for the late reply, and thanks for the login, I checked both of your language versions and found that your alternative logo has this added to the end of the URL which is causing it to look out of focus ?fit=435%2C116&ssl=1 I changed this to: ?fit=425%2C116&ssl=1 and now both seem to be correct, please clear your browser cache and check.

    The page content layout is a little different with extra div’s for example on the English version under “YOUR LEADING FREIGHT FORWARDER IN BALI”
    the layout is:

    <div class="flex_column_table av-equal-height-column-flextable -flextable">
        <div class="flex_column av_three_fifth  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding first  avia-builder-el-34  el_after_av_heading  el_before_av_two_fifth"></div>
    </div>
    <div class="flex_column_table av-equal-height-column-flextable -flextable">
            <div class="av-flex-placeholder"></div>
        <div class="flex_column av_two_fifth  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding   avia-builder-el-36  el_after_av_three_fifth  avia-builder-el-last  "></div>
    </div>

    where on the french version it is:

    <div class="flex_column_table av-equal-height-column-flextable -flextable">
        <div class="flex_column av_three_fifth  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding first  avia-builder-el-34  el_after_av_heading  el_before_av_two_fifth"></div>
            <div class="av-flex-placeholder"></div>
        <div class="flex_column av_two_fifth  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding   avia-builder-el-36  el_after_av_three_fifth  avia-builder-el-last  "></div>
    </div>

    so there is an extra div braking the layout.
    Was the English version created by the WPML plugin automatically? I changed the first column to individual height instead of the equal height and it seems to have fixed the whole page, it must have been a fluke?
    Please clear your browser cache and check the English version.

    Best regards,
    Mike

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

    add_filter('display_post_states','remove_ALB_post_state',999,2);
    function remove_ALB_post_state( $post_states, $post ) {
    if( "!= Avia_Builder()->get_alb_builder_status($post->ID)" ) {
    unset($post_states['avia_alb']);
    }
    return $post_states;
    }

    Then clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 16,681 through 16,710 (of 35,024 total)