Forum Replies Created

Viewing 30 posts - 10,711 through 10,740 (of 25,536 total)
  • Author
    Posts
  • in reply to: Portfolio Shortcode #1181861

    Hi jsharpripple,

    The problem is this part categories=’cosmetics’ you should use the category ID, based on your portfolio category cosmetics is 68.
    So it should be categories=’68’

    Best regards,
    Nikko

    in reply to: Header disappearing and the coming back when scrolling #1181845

    Hi studiono,

    I tried to use hide instead of fadeout but would still see the shrinking part.
    It will most likely need to modify some core js file do it, since just adjusting the timings doesn’t seem to work (atleast when I tried).
    The workaround I can suggest is disable the shrinking header, so you’ll just have the regular showing header and hidden header on scroll down.

    Best regards,
    Nikko

    in reply to: Can an Enfold support person please quickly check my CSS #1181841

    Hi mmsdev,

    You can use this CSS code to add slight radius on portfolio sort menu items (just adjust the border-radius value, the higher the value the more rounded the menu item gets):

    #choice #js_sort_items a {
        border-radius: 8px;
    }

    Best regards,
    Nikko

    in reply to: Main menu missing #1181696

    Hi Lara,

    We’re glad to hear that :D
    We’ll be closing this thread then.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: mobile menu doesn't update #1181694

    Hi sundara88,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: accessibility: blog posts component #1181691

    Hi codemonkeynorth,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Woocommerce product pages tabs are crazy ? #1181689

    Hey eberswine,

    The text seems to be added with spaces, you can verify this if you inspect the tab in the browser.
    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
      ( to 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: WooCommerce product page tabs #1181683

    Hi Sonja,

    Glad that Yigit could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Theme Error and won't load past preloader #1181681

    Hi lwebster,

    We’re glad to hear that your site is up and running again. :)
    Let us know if you still need further assistance.

    Best regards,
    Nikko

    in reply to: Header disappearing and the coming back when scrolling #1181680

    Hi studiono,

    Can you try adding this code in your child theme’s functions.php:

    function hide_show_header(){
    ?>
    <script>
    jQuery( document ).ready(function( $ ) {
      var didScroll;
      var lastScrollTop = 0;
      var delta = 5;
      var navbarHeight = $('#header').outerHeight();
    
      $(window).scroll(function(event){
        didScroll = true;
      });
    
      setInterval(function() {
        if (didScroll) {
          hasScrolled();
          didScroll = false;
        }
      }, 250);
    
      function hasScrolled() {
        var st = $(this).scrollTop();
        
        if(Math.abs(lastScrollTop - st) <= delta)
          return;
        
        if (st > lastScrollTop && st > navbarHeight){
          $('#header').fadeOut("fast");
        } else {
          if(st + $(window).height() < $(document).height()) {
            $('#header').fadeIn("fast");
          }
        }
        
        lastScrollTop = st;
      }
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'hide_show_header', 100);

    Best regards,
    Nikko

    in reply to: Portfolio Shortcode #1181672

    Hi jsharpripple,

    We apologize for the delayed response.
    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
      ( to 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

    Hey Eric,

    We apologize for the delayed response since there are lots of queries lately.
    In the meantime, please rollback to the previous version.
    Then create a staging site (basically a duplicate of your site placed in your subdomain) where we can investigate the issues.
    You can check this article on how to create a staging site: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    in reply to: FB sharing button #1181670

    Hi Anton,

    I’m not very familiar with via in facebook but if you want to add it in the url, you can do that, you can use this code (combined with your twitter sharing code above):

    function avia_add_social_share_link_arguments($args) {
      $args['twitter'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[shortlink]&via=Anton_Malafeev"); 
      $args['facebook'] = array("encode"=>true, "encode_urls"=>false, "pattern" => "https://www.facebook.com/sharer.php?u=[permalink]&t=[title]"); 
      return $args;
    }
    
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);

    Best regards,
    Nikko

    in reply to: Fontello installed but I can't display some icons #1181663

    Hi sherrybdesign,

    Your code will work but only if it’s on the child theme’s functions.php.
    Please use a child theme, it can be downloaded here (includes the instructions in using it as well):
    https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Nikko

    in reply to: WooCommerce Fancy Product Designer Plugin #1181659

    Hey KeyshaunSmith,

    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
      ( to 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: Can an Enfold support person please quickly check my CSS #1181658

    Hi mmsdev,

    We apologize for the delayed response and your hard work reflects on the site which looks great as well. :)
    With regards to it affecting only one portfolio sort menu instead of affecting all portfolio sort menus, the only thing that you need to change is add (I got this on the ID of your color section) #choice before #js_sort_items so it would look like this #choice #js_sort_items.
    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: adapt image preview #1181654

    Hey Alex,

    Try putting the Video element inside a Grid Row (just remove the extra column).
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Can't install custom font #1181650

    Hi 4ROI,

    We apologize for the delayed response. Please enable PHP ZipArchive Extension on your site, you may need to ask the help of your hosting provider in enabling it.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Icon instead of image in Testimonials? #1181648

    Hi milkrow,

    The only part where icons can be inserted is inside the testimonial quote, but it can’t replace the part of the image, unfortunately.
    The only workaround, I can suggest is to take a screenshot of the icon then save it as an image and use it.

    Best regards,
    Nikko

    in reply to: Black Bars on Top & Bottom of Embedded Video #1181646

    Hi Taber,

    We apologize for the delayed response.
    I can only see black borders (top, bottom, left and right) which is from the 1/1 Column but not from the Video.
    Can you give us a screenshot of how it looks on your end?

    Best regards,
    Nikko

    Hi GB,

    Please try to add this PHP code in your child theme’s functions.php

    function custom_return_to_shop_redirect() {
    	return site_url() . '/art-shop/';
    }
    add_filter( 'woocommerce_return_to_shop_redirect', 'custom_return_to_shop_redirect' );

    Best regards,
    Nikko

    in reply to: Center Woocommerce add to cart button #1181642

    Hi KeyshaunSmith,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top.single-product .av-woo-purchase-button p.price {
        visibility: hidden;
    }

    Best regards,
    Nikko

    in reply to: Customize Woocommerce Category Pages #1181641

    Hi KeyshaunSmith,

    You can modify avia_woocommerce_breadcrumb which is modified in your other thread: https://kriesi.at/support/topic/woocommerce-breadcrumbs-2/ but it would take some time to do.
    Try to find a 3rd party plugin that redirects pages and you’ll just need to specify the category page link then the custom page link it should redirect.

    Best regards,
    Nikko

    Hi PresentIT,

    I apologize for forgetting to answer issue #1, try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    .page-id-945 #main .main_color {
        background-color: #f0f0f0;
    }
    
    .page-id-945 #main .main_color .container {
        background-color: white;
    }

    Best regards,
    Nikko

    in reply to: Fonts different on inner pages #1181606

    Hi whdsolutions,

    The about page seems to load only 2 fonts while the homepage loads 3.
    Can you give us temporary admin access on the site? so we can try to look into the settings again, hopefully we can find a solution.

    Best regards,
    Nikko

    in reply to: image hover overlay (background color) on mobile #1181184

    Hi Jason,

    That’s really great to hear and we’re glad that we could help :)
    Let us know if you need further assistance or if we can mark this as resolved.

    Best regards,
    Nikko

    in reply to: Customize Woocommerce Category Pages #1181183

    Hey KeyshaunSmith,

    Unfortunately, you can’t use page builder to create product category pages :(

    Best regards,
    Nikko

    in reply to: Center Woocommerce add to cart button #1181182

    Hey KeyshaunSmith,

    Try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top.single-product form.cart {
        display: flex;
        float: none;
        align-items: center;
        justify-content: center;
    }
    
    #top.single-product form.cart .quantity, 
    #top.single-product form.cart .quantity * {
        margin-bottom: 0;
    }

    Best regards,
    Nikko

    in reply to: Woocommerce Breadcrumbs #1181181

    Hey KeyshaunSmith,

    In your child theme’s functions.php (at the bottom), please add this PHP code:
    https://pastebin.com/7KLYbMyY

    replace 123 with the page ID of your custom shop page:

    $shop_id = 123;

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Customize Woocommerce Cart #1181156

    Hey KeyshaunSmith,

    Yes, please refer to Woocommerce’s documentation: https://docs.woocommerce.com/document/template-structure/
    You’ll most likely deal with the cart folder inside (woocommerce > templates).

    Best regards,
    Nikko

Viewing 30 posts - 10,711 through 10,740 (of 25,536 total)