Forum Replies Created

Viewing 30 posts - 14,941 through 14,970 (of 25,536 total)
  • Author
    Posts
  • in reply to: anchor link in various browsers #1036572

    Hi CW,

    Instead of using http://yoursite.com/#contact try using this #contact on your menu link?
    Maybe this will help, also since your using a one page website that should help better.

    Best regards,
    Nikko

    in reply to: Custom template builder avia-shortcode attributes #1036564

    Hey rrajan18,

    I’m not sure I understood it completely but can you give us some examples like links or screenshots where you want to apply the limit?
    By identifying this, I think we will be able to help you properly.
    Also for the post you posted, can you give us the full link of that thread?

    Best regards,
    Nikko

    in reply to: Color section scroll down problem #1036559

    Hi grafixstudio,

    Of course we do want to help you however, I’m having a hard time finding the issue on my end, that’s why I also sent a screenshot.
    I have misunderstood the issue you have, but I understood it now, since the issue will be shown if you clicked on the arrow above it thus it moves to the section on the screenshot and doesn’t show as aligned vertically.
    Can you give us ftp access? I think it can be fixed by overriding avia.js and making some tweaks.

    Best regards,
    Nikko

    in reply to: Breadcrumb trail #1036549

    Hi Joe,

    With 2 pages are you referring from Home/Page Title/Catagory to Home/Page Title ?
    If yes, try adding this php code at the bottom of functions.php:

    if(!function_exists('avia_cut_breadcrumb'))
    {
    	function avia_cut_breadcrumb($trail)
    	{
    		foreach( $trail as $key => $value ) {
    			if( $key == 0 || $key == 'trail_end' ) {
    				continue;
    			}
    			unset($trail[$key]);
    		}
    
    		return $trail;
    	}
    	add_filter('avia_breadcrumbs_trail','avia_cut_breadcrumb');
    }

    Best regards,
    Nikko

    in reply to: You tube video embed problem #1036539

    Hi madmanbean,

    Glad that we could help :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!
    Happy Thanksgiving Day :)

    Best regards,
    Nikko

    in reply to: Plugin conflict??? #1036223

    Hi NoraGTS,

    You’re always welcome!
    Glad that we could help and Happy Thanksgiving to you also :)
    Feel free to comeback if you need further assistance.

    Best regards,
    Nikko

    in reply to: Avia Advanced Editor Loading Screen Error #1036219

    Hi ilkerkabadayi,

    Since I can confirm that it causes some conflict with Avia Layout Builder, I will say you can’t add it there since just adding that script prevents ALB from loading properly.
    The only way I could think of is through widgets which can also act as a codeblock, without having the js code on the same page as the ALB.

    Best regards,
    Nikko

    in reply to: CSS customizations #1036215

    Hi P3T3R_0ne,

    If you use a web inspector, you can find the #top id within the < body > tag.
    As for the div with an id of #wrap_all, it’s a direct child div of the body tag which also wraps the header and the content.

    Best regards,
    Nikko

    in reply to: Six columns isn`t working #1036214

    Hi adiwarsaw,

    Glad that we could help.
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Breadcrumb trail #1036213

    Hey Joe,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid it’s out of the scope of our support.
    The only thing we could do is to point you to the right direction, you can use a child theme and redefine avia_breadcrumb in functions.php, currently that class is found in enfold > framework > php > class-breadcrumb.php.
    Hope this helps.

    Best regards,
    Nikko

    in reply to: Six columns isn`t working #1036109

    Hey adiwarsaw,

    Thanks for giving us admin access, I have removed those 1/5 columns.
    Then created 6 1/3 columns, each with this class: av-six-columns, however for the first one I gave it this class: av-six-columns av-six-columns-first
    In you Quick CSS in Enfold > General Styling I placed this code (above the media query):

    #top #wrap_all .flex_column.av-six-columns {
        width: 15%;
        margin-left: 2%;
        margin-top: 0;
        margin-bottom: 20px;
        clear: none;
    }
    
    #top #wrap_all .flex_column.av-six-columns-first {
        margin-left: 0;
    }

    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Nofollow for Post slider element and blog post modification #1036101

    Hey Artur667,

    1. Try to override the Post Slider, you can do this by following the instruction in: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb
    you should find it in enfold > config-templatebuilder > avia-shortcodes > postslider > postslider.php

    2. Please try to check: https://kriesi.at/support/topic/remove-link-from-page-and-post-h1-titles-permanent-link/

    3. Try also this post: https://kriesi.at/support/topic/disable-lightbox-on-single-post-featured-images-remove-featured-per-category/

    Best regards,
    Nikko

    in reply to: Help with breadcrumbs #1036086

    Hi kenwcmg,

    z-index is basically a technical term, which is used in css: https://www.w3schools.com/cssref/pr_pos_z-index.asp
    You can think of it as a layer, the layer which gets a higher z-index it’s added on the front/foreground, the lower the number then it’s positioned at the background.
    Can you try to change the z-index of the code Vinay gave from 999 to 980, so it’s:

    #main .title_container {    
        z-index: 980;
        margin-top: -12px;
        border: none;
        background: transparent;
    }

    Then add more z-index to the header, so you need to add this code also:

    #top #header_main {
        z-index: 990;
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Woocommerce in child theme #1036080

    Hi alanboyle5355,

    It still does work, I can confirm that and have tested it.
    This is a wrong path: enfold/woocommerce/includes/content-single-product.php
    Use a child theme also: enfold-child/woocommerce/content-single-product.php (there’s no includes folder)
    Also if your using an Advanced Layout Builder on the product, this doesn’t work but if you’re using the default editor then this works perfect.

    Best regards,
    Nikko

    in reply to: Enfold theme options won't accept Envato private token #1036072

    Hi Munford,

    Try checking out this thread: https://kriesi.at/support/topic/envato-private-token-doesnt-work/#post-1023876
    Most people said this works.

    Best regards,
    Nikko

    in reply to: Color section scroll down problem #1036071

    Hi grafixstudio,

    I have checked it and it is centered on my end, here is a screenshot https://imgur.com/a/7XDd1Yp

    Best regards,
    Nikko

    in reply to: Plugin conflict??? #1036069

    Hi NoraGTS,

    I think it’s because it’s there but not displayed and adds to the height at the initial loading of the site which causes the inaccurate position.
    As for the arrows, try adding this code in Quick CSS (located in Enfold > General Styling):

    #top.home .mfp-arrow {
        display: none;
    }

    if that doesn’t work use this:

    #top.home .mfp-arrow {
        display: none !important;
    }

    Best regards,
    Nikko

    in reply to: Reset theme #1036063

    Hi Trinemaija Brandt,

    It still doesn’t work, the link you gave before, please check.
    Maybe you can create a new temporary access.

    Best regards,
    Nikko

    in reply to: CSS customizations #1036061

    Hi P3T3R_0ne,

    1. I see what you mean, it does change the in that sense, because those numbers for example #av_section_1 depends on their order from top to bottom, for example if you created a Color Section on top of #av_section_1 then that becomes the new #av_section_1, while what was #av_section_1 becomes #av_section_2. You can basically use these selectors if you’re sure that the order is final, however if you need move elements and change their order, I would suggest using Custom Css Classes. To give an example I added leaf-icon on the Custom Css Class of your leaf icon, then I have replaced your css code in Quick CSS from:

    #av_section_1 > div > main > div > div > div.flex_column.av_one_third.av-animated-generic.pop-up.flex_column_div.av-zero-column-padding.avia-link-column.avia-link-column-hover.first.avia-builder-el-3.el_after_av_image.el_before_av_one_third.avia_start_animation.avia_start_delayed_animation > span > span {
      position: relative;
      left: 34px;
    }

    to:

    #top .leaf-icon  {
      position: relative;
      left: 34px;
    }

    The issue also with the code you previously used is that if on other pages it will have the same layout with different icon, that css will also apply.

    The best way to code in Enfold is to use Custom Css Classes then use this selector:

    #top .my-custom-class {
    
    }

    if it is still overridden then try using this instead:

    #top #wrap_all .my-custom-class {
    
    }

    Hope this helps.

    Best regards,
    Nikko

    in reply to: Avia Advanced Editor Loading Screen Error #1036052

    Hi ilkerkabadayi,

    I apologize for the late response.
    I have created a test page based from your contact page (link in private content).
    Then removed the javascript code and placed in a custom html widget, found in Appearance > Widgets, created Script widget area.
    It will need some css code though, let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Plugin conflict??? #1036044

    Hi NoraGTS,

    /#vision is okay since it will base on the root of your site, but using just #vision only works on the same page but not on other pages.
    I have added a test page with a button which links to another test page which is based on your homepage but I removed your mobile slider on that test page (links in private content), I tested it and it worked properly, I think the calculation on the position of your section becomes inaccurate because of the mobile slider.

    1. I think preloader is necessary since you have a lot of things in the homepage which takes some time for some elements to load, but if you don’t think it’s good idea then you can remove it since it’s really just optional.
    2. I think you can still install however we can’t really tell you what caching plugin would work properly on your end, since it also depends on the hosts settings and configuration, the plugins we recommend are what we tested that works well especially on the demo, however there are also some people who complains that this caching plugin doesn’t work for me, but this one works well, maybe some trial and testing would be needed on what works well on your site.
    3. Where is this applied? I tried to check on the page with an ID for 3153 and it is trashed. Try to replace .page-id-3153 to #top maybe this will help.
    4. You can try some of the stuff mentioned in this post which is for optimization: https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Nikko

    in reply to: Huge, Massive, UX problem with Custom Footer Page #1036038

    Hi Heathcliffe,

    Please do give us a step by step instruction, then we’ll try it on our local install.

    Best regards,
    Nikko

    in reply to: Google maps has vertical empty strokes in the footer #1036037

    Hi Sander,

    You have this code which causes this issue.
    There are 2 options you can do, you can either remove this code that you have:

    #footer img {
        max-width: 50% !important;
    }

    or if it’s important code for you, then just add this css code as well:

    #footer .avia_google_maps img {
        max-width: 100% !important;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: You tube video embed problem #1036027

    Hi madmanbean,

    I see, try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .avia-video, 
    #top .avia-iframe-wrap {
        margin-bottom: 0;
    }

    Let us know if this helps.

    Best regards,
    Nikko

    in reply to: Icon list justification issue during responsiveness. #1035431

    Hi TScursso,

    Glad that we could help. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Icon list justification issue during responsiveness. #1035429

    Hi TScursso,

    Glad that we could help. :)
    Feel free to comeback if you need further assistance.
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: codeblock not rendering #1035171

    Hey Killick,

    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 a admin user and post the login credentials in the “private data” field.

    Best regards,
    Nikko

    in reply to: i do not see some fields of a plugin #1035170

    Hey vartgraphic,

    Can you give us a screenshot of how it looks when Enfold theme isn’t used? so we can compare and make it easier for us to identify the fields which are hidden.

    Best regards,
    Nikko

    in reply to: Masonry gallery – mulitple post types #1035168

    Hey CS,

    We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid it’s out of the scope of our support.

    But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/
    This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented.

    You may also check our documentation on how to add Elements to ALB: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb
    You can try creating your own masonry gallery by copying masonry gallery from Enfold and modify it.

    Best regards,
    Nikko

    in reply to: Icon list justification issue during responsiveness. #1035163

    Hey TScursso,

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

    #top .avia-icon-list-left .iconlist_content_wrap {
        text-align: left;
    }

    Hope it helps.

    Best regards,
    Nikko

Viewing 30 posts - 14,941 through 14,970 (of 25,536 total)