Forum Replies Created

Viewing 30 posts - 12,391 through 12,420 (of 25,536 total)
  • Author
    Posts
  • in reply to: Number of Posts #1092895

    Hey cevkos,

    Can you tell us what widget (in english) is that in the screenshot?
    I can’t figure it out maybe I just missed it.

    Best regards,
    Nikko

    • This reply was modified 6 years, 9 months ago by Nikko.
    in reply to: CSS code for responsive video player #1092894

    Hi mfabes,

    It’s inside WordPress Dashboard but not within Enfold settings.
    I hope this screenshot will help: https://imgur.com/U8ZAIqj :)

    Best regards,
    Nikko

    in reply to: Basic Questions and 1 problem #1092892

    Hey benrich1302,

    1. Yes, try adding this css code in Quick CSS, located in Enfold > General Styling:

    @media only screen and (max-width:767px) {
      .responsive #top .logo {
        width: 100%;
      }
    
      .responsive #top .logo img {
        margin-left: auto;
        margin-right: auto;
      }
    }

    2. It can be changed and in most situations the current default works but there are situations where it needs to be tweaked.
    In your case, you can tweak this in Quick CSS:

    @media only screen and (max-width:767px) {
      #top .caption_right .slideshow_caption .slideshow_inner_caption {
        width: 50%;
      }
    }

    3. For service area, the problem was because of order of images but it can be fixed through css:

    @media only screen and (max-width:767px) {
      #top.home #av-layout-grid-2 {
        display: flex;
        flex-direction: column-reverse;
      }
    }

    Best regards,
    Nikko

    in reply to: Shopping Card Icon above the burger menu icon #1092889

    Hey Markus,

    Thanks for giving us admin access.
    I have checked your site and I don’t see the woocommerce activated.
    Would it be okay if we activate woocommerce back?
    Also to have that burger menu icon enabled on desktop, go to Enfold > Main Menu > Menu items for the desktop, set to Show as Icon.

    Best regards,
    Nikko

    in reply to: How to change-update the instagram icon on enfold #1092886

    Hi kmihanet,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: Cart drop down price color AND amount #1092885

    Hi wealthyone,

    Using a google chrome browser, can you right click on the paypal button then click Inspect.
    Expand it a bit and get a screenshot and post it here since we could not reproduce the paypal button on our end.

    Best regards,
    Nikko

    in reply to: how to reduce white space between logo and menu #1092880

    Hi Ron,

    It might be some caching issue since Jordan’s code isn’t being fetched in the frontend.
    In your WordPress Dashboard, go to Enfold > Performance > then disable CSS file merging and compression.

    Best regards,
    Nikko

    in reply to: Change The Logo in The Shrinking Header #1092879

    Hi Jamsta,

    The reason it’s not showing is because the url is wrong (see private content).
    I have added a link that’s correct.

    Best regards,
    Nikko

    in reply to: modify featured image in blog post #1092877

    Hi nikestars,

    Thanks, I tried the same settings that you have but I couldn’t reproduce the same issue on my end.
    Can you try to create a staging site? basically a duplicate of your site placed in your subdomain so we can try to disable plugins and isolate the issue without affecting your live site.
    Here is a tutorial that should help with it: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: Full Height Column #1092868

    Hi juliovilaine,

    Thanks for giving us admin access. I have added a Custom Class to the section (named it flex-section).
    Then in Quick CSS, located in Enfold > General Styling:

    #top #main .flex-section .template-page, 
    #top #main .flex-section .template-page .entry-content-wrapper, 
    #top #main .flex-section .template-page .flex_column_table {
        display: flex !important;
        height: 100%;
    }
    
    #top #main .flex-section .template-page .flex_column_table .flex_column {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #top #main .flex-section .template-page .flex_column_table .flex_column .av_textblock_section {
        padding: 10px 100px;
    }
    
    #top #main .flex-section .template-page .flex_column_table .flex_column .avia-slide-slider {
        width: 125%;
        margin-left: -25%;
    }

    Best regards,
    Nikko

    Hi Nerohm,

    The image you upload for the logo is too large and when large images gets shrinked it losses some of its quality.
    I suggest you modify it in an image editor like photoshop and resize it to 231 x 85px, and use this.
    As for the slider, try adding this css code:

    #top #av_section_5 ul.avia-slideshow-inner {
        border-radius: 10px;
    }

    just adjust the value.

    Best regards,
    Nikko

    in reply to: Reight sidebar in product page #1092856

    Hi ceciliapendola,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Add Houzz Icon to the Header #1092855

    Hi jnightingale,

    Thanks, the ftp didn’t work but access was upgraded to Administrator and Theme Editor was available so it’s good.
    First I have added a child theme: https://kriesi.at/documentation/enfold/child-theme/
    Then in Enfold > Import/Export > then I uploaded this font: https://ufile.io/a8hwud2j
    Then in the child theme’s functions.php I added this:

    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['houzz']	 = array( 'font' =>'yelp', 'icon' => 'ue805');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Houzz'] = 'houzz';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Go to Enfold > Social Profiles and Houzz is available :)

    Best regards,
    Nikko

    in reply to: Custom 404 page footer error #1092828

    Hi THP,

    Yes, we still need the login since our dev might need check on your site.
    As for caching, yes you can re-enable it. For temporary solution, you can switch the 2nd and 3rd sections so the one with product slider would be placed at the bottom.
    As for the changes, I have switched the theme temporarily (several seconds) from child to parent and back again and saving the 404 page as template.

    Best regards,
    Nikko

    in reply to: Enfold Demo import #1092827

    Hi ExpertSystemsAdmin,

    Just to be clear, this is not from our theme and it’s google itself limiting the usage.
    You can read this article: https://venturebeat.com/2018/05/02/google-maps-platform-arrives-with-pay-as-you-go-billing-free-support-and-cloud-requirement-starting-june-11/

    Best regards,
    Nikko

    in reply to: Show quantity selectors to cart in mobile view #1092820

    Hi Mauro,

    Try adding this css code as well (you can merge the last code I gave since they are both using media query of max-width 767px):

    @media only screen and (max-width:767px) {
        #top .shop_table, 
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item, 
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item td {
            display: block !important;
            width: 100% !important;
            text-align: center !important;
        }
    
        #top .shop_table {
            border: none;
        }
    
        #top .shop_table thead {
            display: none;
        }
    
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item {
            padding-top: 50px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
    
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item td {
            box-sizing: border-box;
            border: none;
        }
    
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item td.product-remove {
            position: absolute;
            top: 15px;
            right: 10px;
            width: 26px !important;
        }
    
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail img {
            width: 100%;
        }
    
        #top .shop_table tr.woocommerce-cart-form__cart-item.cart_item td.product-subtotal {
            font-weight: bold;
            color: red;
        }
    }

    Best regards,
    Nikko

    in reply to: Blog page not showing full text #1092813

    Hi lmackinnon,

    We apologize for the delayed response.
    In Enfold > Blog Layout > Blog Layout, I changed it to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page) so it uses the layout you set on the page.
    However as for the full content, it could not be fetched because the posts are using Advanced Layout Builder. To show the full content you need to use the Default Editor, if you want to use some layouts or elements from the Advanced Layout Builder you can use the magic wand option to generate it.

    Best regards,
    Nikko

    in reply to: Custom 404 page footer error #1092624

    Hi THP,

    Thanks for giving us admin access.
    The product slider is causing the weird issue and we have already reported this as a bug.
    We will post back once we hear anything from our dev :)

    Best regards,
    Nikko

    in reply to: Theme interferes with plugin #1092604

    Hi drzatcodcan,

    Yes, we’ll try to help with it, first please use a child theme: https://kriesi.at/documentation/enfold/child-theme/
    Next in the child theme’s functions.php please add this php code: https://pastebin.com/5WVgSZBB
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Full Height Column #1092593

    Hi juliovilaine,

    I see, we currently don’t have that feature but I think it can be done with some custom css.
    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: modify featured image in blog post #1092592

    Hi nikestars,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    Hi Sean,

    Our theme doesn’t offer that scaling but I think there are plugins that offer that.
    I found this plugin that I think you can try to use: https://wordpress.org/plugins/adaptive-images/ I haven’t tested it but I think it works based on some ratings if it doesn’t try to search for similar plugins.

    Best regards,
    Nikko

    in reply to: Add Houzz Icon to the Header #1092580

    Hi jnightingale,

    Can you upgrade the account to an admin temporarily?
    Also can we request for ftp access as well? so we can try to add some codes.
    We’ll post whatever changes we made here.

    Best regards,
    Nikko

    in reply to: Enfold Demo import #1092574

    Hi ExpertSystemsAdmin,

    That is happening because google maps isn’t free anymore and google is restricting usage of the api.
    To fix this you need to fill in the billing details on your google account that’s connected with your google map api key.

    Best regards,
    Nikko

    in reply to: Post Slider – change 'read more' text but keep arrow #1092573

    Hi GWS,

    Try to use this code:

    function custom_more_link(){
      ?>
      <script>
        (function($){
          $(document).ready(function(){
            $(".more-link").html("Answer <span class='more-link-arrow'></span>");
          });
        })(jQuery);
      </script>
      <?php
    }
    add_action('wp_footer', 'custom_more_link');

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Enfold theme #1092570

    Hi Kevin,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: I would like a refund. #1092567

    Hi constantinfirescu,

    No worries, glad that the issues are resolved :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: icon list styling problem #1091985

    Hi Hugues,

    There’s no ETA yet but most likely it would be this month.
    The solution posted on the thread by our dev will be included in the next patch.

    Best regards,
    Nikko

    in reply to: delate Debugging Info for Theme support on head #1091955

    Hey dantespizzi,

    Please try the solution posted by Guenni here: https://kriesi.at/support/topic/how-to-remove-debug-information-in-4-3/#post-964856
    Hope it helps.

    Best regards,
    Nikko

    in reply to: Remove animation from Icon grid #1091953

    Hi pistachiouk,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 30 posts - 12,391 through 12,420 (of 25,536 total)