Forum Replies Created

Viewing 30 posts - 13,081 through 13,110 (of 25,536 total)
  • Author
    Posts
  • in reply to: blog post pagination displays page 1 results #1082502

    Hi kylerollins,

    I have checked it and there are 2 enfold themes, I removed version 3.5 since it may cause conflict.
    I then used Enfold 4.5.4 to make sure that the child theme isn’t causing any issues and after changing it, it works fine.
    Please try to check your child theme, also in your child theme remove all // as css doesn’t use it for commenting out the code. It uses the multi-line one /* some code here */

    Best regards,
    Nikko

    in reply to: Font color #1082492

    Hi aabeve,

    I have checked it and refreshed it several times as you have mentioned and it’s consistently orange in color.
    See screenshot in private content, can you try checking on a different browser? it’s most likely a browser cache fetching the older css you have.

    Best regards,
    Nikko

    in reply to: A link to preselect Masonry displayed category? #1082479

    Hey MORTULGAAH,

    We apologize for the delay in response.
    Unfortunately we don’t have that feature yet, so it’s not possible.

    Best regards,
    Nikko

    in reply to: Lightbox problem in secondary menu #1082477

    Hi CoreyNordwall,

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

    Best regards,
    Nikko

    in reply to: Layerslider issue with transitions #1082475

    Hey Pixel_Production,

    I checked your site using Firefox but I don’t see it on my end.
    Are you windows or mac or another OS?

    Best regards,
    Nikko

    Hi Melanie Downing,

    Thanks for contacting us.

    We have a license, but this is with the previous hosts, so we can’t login to their account.

    Are you referring to the the themeforest account that is used to purchase Enfold? if yes, then I’m afraid to say having an access to that themeforest account is an absolute requirement.
    You might need to contact themeforest/envato’s support regarding this since we don’t have control over API keys generated in themeforest.

    Best regards,
    Nikko

    in reply to: Position caption title and button in full-width slider #1082466

    Hi Tobias,

    I’m not sure what you meant with changing the position of the slider image in the fullwidth slider, can you give a screenshot of what you’re trying to achieve compared to what you have now?
    Slider Images are like background images so no need for it to change its position.

    Best regards,
    Nikko

    in reply to: Bug with animated Masonry Gallery #1082087

    Hi Sebastian,

    Thanks for the admin access.
    I duplicated the page with the issue, removed the image from the textblock and used an image element instead.
    I then tried to use the same image and the issue was still there but when I changed the image to something else, the issue doesn’t show anymore.
    It’s hard to figure out what’s exactly triggering this issue, maybe you can try to re-upload the image or maybe crop it?

    Best regards,
    Nikko

    in reply to: Header / logo and Main Menu problem #1082085

    Hi Kuba,

    For the easyslider, there’s this option ‘Apply a link to the slide?’ which you can use to set a link on the slider image.
    I’m not familiar with meta slider, maybe you can try to clear the browser cache in the desktop, that might be causing the issue.

    Best regards,
    Nikko

    Hi MeghanNathanson,

    I have checked your site and it works since the navigation controls are visible at all times on your site without having to hover over it.
    You can add this code for the caption title in the 2nd slide:

    #top.home #wrap_all .avia-slideshow .slide-2 h2.avia-caption-title {
        color: white;
    }

    Best regards,
    Nikko

    in reply to: Sticky posts by category in blog grid #1082082

    Hi Maureen van Goethem,

    No, it has nothing to do with it and only affects related posts.
    Try the solution in this thread: https://kriesi.at/support/topic/sticky-posts-in-b-og-grid/#post-692059
    just replace:

    $query['posts_per_page'] = 6;

    with

    $query['posts_per_page'] = 8;

    Best regards,
    Nikko

    in reply to: Überlagerter Inhalt #1082079

    Hi hansloe,

    Glad to hear that it’s resolved. :)
    Thanks also for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Überlagerter Inhalt #1081739

    Hi hansloe,

    Can we request also for ftp access? so we can try to remove it for you.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: image overlay #1081410

    Hi yampieters,

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

    Best regards,
    Nikko

    in reply to: Enfold + Toolset: implementing the layout builder #1081409

    Hi Jooster,

    1.) Just copy and paste this part of the code:

    $meta['page'][] = 'kpi';

    so it will look something like:

    $meta['page'][] = 'kpi';
    $meta['page'][] = 'post_type';
    $meta['page'][] = 'another_post_type';
    

    2.) There’s no need for that, we really appreciate your kind words as well as patience, your continual use for the theme is already a reward to us :)

    Best regards,
    Nikko

    in reply to: Header / logo and Main Menu problem #1081405

    Hi Kuba,

    The widget isn’t js dependent so it should show at all times.
    The only time the form will not show is when you have already submitted in the form.
    So far, I viewed it already a couple of times but it always load.
    If it doesn’t as you have mentioned it does sometimes, try to check what triggers it, so we can try to reproduce.
    Also you can try to use a web inspector and post a screenshot, we might just be missing something here.

    Best regards,
    Nikko

    in reply to: I Need help with Custom CSS #1081403

    Hi adaptiveseosolutions,

    Try adding this code as well:

    #top #header #header_main {
        z-index: 11;
    }
    
    #header .logo {
        margin-top: -15px;
    }

    Best regards,
    Nikko

    in reply to: Position caption title and button in full-width slider #1081402

    Hi Brautgalerie,

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

    #top.home #fullscreen_slider_1 .slideshow_caption a.avia-slideshow-button {
        position: absolute;
        right: 10px;
        bottom: 10px;
    }

    Then just adjust right and bottom values.
    You can also use for example -10px so it goes to the other direction.

    Best regards,
    Nikko

    in reply to: Sticky posts by category in blog grid #1081399

    Hi Maureen van Goethem,

    Can you try adding this css code in functions.php of your child theme?

    add_filter('avia_feature_image_slider_query', 'avia_feature_image_slider_query_mod', 10, 1);
    function avia_feature_image_slider_query_mod($query) {
    	$query['posts_per_page'] = 1;
    	$query['post__in'] = get_option( 'sticky_posts' );
    	$query['ignore_sticky_posts'] = 1;
    	return $query;
    }

    I tried adding it but I’m prevented from doing so and get this error:

    Communicatie met de site niet mogelijk om te controleren op fouten, de PHP aanpassing is teruggedraaid. De PHP-bestandswijziging moet op een andere manier worden gewijzigd, bijvoorbeeld door SFTP te gebruiken.

    Best regards,
    Nikko

    in reply to: Enfold update – http error 500 #1081381

    Hi PIX3L_r,

    Glad to hear that it’s resolved :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Enfold + Toolset: implementing the layout builder #1081380

    Hi Jooster,

    Since you have this in the code:

    $meta['page'][] = 'kpi';

    You should see the Advanced Layout Builder button on all KPI
    A sample of it shows in the link I posted in private content.

    Best regards,
    Nikko

    in reply to: Überlagerter Inhalt #1081377

    Hi,

    Thanks, I have checked the functions.php of your child theme and there’s a red dot just before:

    <?php

    which causes the error (screenshot in private content), I tried to remove it however I’m not allowed and just got this error:

    Etwas lief schief. Deine Änderung wurde vermutlich nicht gespeichert. Bitte erneut versuchen. Es besteht die Möglichkeit, dass du den Fehler manuell beheben und die Datei per FTP hochladen musst.

    Please remove it and that error should be gone. I’ll activate the theme back to fairytale.

    Best regards,
    Nikko

    in reply to: Header / logo and Main Menu problem #1081372

    Hi ablito,

    When it doesn’t work, does it still submit the form?
    Or it just doesn’t send any email?

    Best regards,
    Nikko

    in reply to: Height of layer slider not matching the screen #1081371

    Hi mritkuma99,

    Yes, any image editing software will do.
    There are also online ones that are free such as: https://www.canva.com/photo-editor/

    Best regards,
    Nikko

    in reply to: woocommerce price filter doesn't work properly #1081325

    Hi Shinya,

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

    Best regards,
    Nikko

    in reply to: Can't change visibility setting on page #1081296

    Hi solomita,

    Thanks, I have checked it out and it seems to be working properly (no js errors or visible errors on page)
    There are 3 visibility settings, Public, Private and Password protected.
    Since Password protected is already selected and the password field already shows up, clicking on it again will not cause anything to happen since it already showed the password field.
    And password protection on the page seems to work just fine.
    I also tried to temporarily set this to private then back to password protected and it works fine as well.

    Best regards,
    Nikko

    Hi biomeris,

    I see, try using this instead:

    .responsive .boxed#top, 
    .responsive.html_boxed.html_header_sticky #header, 
    .responsive.html_boxed.html_header_transparency #header {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .responsive.html_boxed.html_header_sticky #header .container, 
    .responsive.html_boxed.html_header_transparency #header .container {
        width: 90%;
        max-width: 1310px;
    }

    Best regards,
    Nikko

    Hi restube,

    Thanks for giving us more context to this.
    Here are some things you can do:
    – remove 1/1 column element (this is not needed)
    – the left 1/2 column should not be hidden on mobile, just add an image element inside it then use same image as the background image, hide this on desktop and tablet then show on mobile.
    Let us know if this helps.

    Best regards,
    Nikko

    Hi Maurice,

    Thanks for giving us admin access.
    We have checked it and and can confirm that this new popup feature isn’t working with Enfold.
    We’ll report this to our dev as incompatible, we’ll update once our dev gives feedback on it.

    Best regards,
    Nikko

    in reply to: Header / logo and Main Menu problem #1081182

    Hi ablito,

    I have tested it and it seems to work.
    How can we reproduce the issue?

    Best regards,
    Nikko

Viewing 30 posts - 13,081 through 13,110 (of 25,536 total)