Forum Replies Created

Viewing 30 posts - 15,871 through 15,900 (of 34,221 total)
  • Author
    Posts
  • in reply to: Unable to load Enfold 2017 demo content #1222078

    Hi,
    Yes, sorry for the late reply. We will leave this open until you have a chance to check the site and let us know if you find any errors with the import. You can also take a look at Enfold documentation here
    and for any other questions or issues, feel free to start a new thread in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the link, it looks like your style is on .avia-menu-subtext please try removing and apply to the link (a) like this:

    li.av-menu-button a {
    	background: linear-gradient(#8fc74a, #cada48) !important;
        color: black !important;
        border: 2px solid #719430;
        border-radius: 25px;
    padding: 0 9px;
    }

    Then you can adjust the red subtext via the margin-top: -60px; which is forcing it above the menu text.
    You will probably want to fine tune the button css, but this is the basic idea:
    2020-06-12_073938.png

    Best regards,
    Mike

    in reply to: Unable to load Enfold 2017 demo content #1222031

    Hi,
    Sorry for the late reply and thanks for the login and the ftp access, I uploaded all of the demo images and then modified the enfold-2017.xml file to import the images from your server instead of ours. The demo is now installed and working well, please clear your browser cache and check.

    Best regards,
    Mike

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

    Hi,
    Sorry for the late reply, no I didn’t find the error in the other thread, I have asked for assistance from the other team members, but we still have not sorted it out yet.
    I tried the filter but it returned too much info to be helpful.

    Best regards,
    Mike

    in reply to: Enfold Shop template #1222009

    Hi,
    Sorry for the late reply, the login doesn’t seem to be working, but I also notice that I’m redirected to “.group” from “.ar” on the homepage.
    I have researched this on my localhost and found that the Attribute Box will show automatically within the “Product Purchase Button” element, if your item is variable, the Attributes are what defines the differences in the variable products.
    2020-06-12_061135.png
    Perhaps your item is set as a “simple product”
    2020-06-12_061415.png
    Please check, or link to a test product page and we can adjust to demonstrate.

    Best regards,
    Mike

    Hi,
    How about using the preloader at Enfold Theme Options > Page Preloading? I have enabled it and now the preloader shows first and then when the page shows the header is correct. Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Anchor problems with menu highlight #1221996

    Hi,
    Thanks for the login, unfortunately, this is not an admin login so I can not investigate the site settings and such, please elevate to admin.
    Also, I don’t see the flashing of the menu items, are you sure this is occurring on this site also?

    Best regards,
    Mike

    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

Viewing 30 posts - 15,871 through 15,900 (of 34,221 total)