Forum Replies Created

Viewing 30 posts - 541 through 570 (of 34,221 total)
  • Author
    Posts
  • in reply to: Enfold instagram widget doesn’t work. #1476715

    Hey cygrafix1,
    Please see this thread: https://kriesi.at/support/topic/instagram-429-error/#post-1400469

    Best regards,
    Mike

    in reply to: Server errors after recent update? #1476713

    Hey pdxammo,
    Unfortunately I don’t see any 500 errors on your site, if it is only in the backend it sounds like a admin-ajax.php error that is often a ModSecurity module for the Apache server error. There could be other issues, but I would check there first.

    Best regards,
    Mike

    in reply to: animated numbers #1476712

    Hi,
    I see that you are using vc builder to build your site, Enfold has it’s own builder and typically is not compatible with wp-blocks, elementor, or VC, or other builders.
    I believe that the “way-points” script is not firing the starts the animation after 3 seconds has a conflict with your VC builder way-point script and I don’t see a solution. Unfortunately we don’t support other builders or third party plugins.
    I also don’t see a second language on your site so I can’t tell if this is a result of your translation.

    Best regards,
    Mike

    in reply to: Problems with Enfold and Ninja Forms Paypal Add on #1476711

    Hi,
    Thank you for your patience, but your site doesn’t allow me to place an order, perhaps your plugin is blocking some IPs?
    Screen Shot 2025 02 08 at 12.53.40 PM

    Best regards,
    Mike

    in reply to: Mobile view top area formatting #1476710

    Hi,
    I can not view your screenshots without a login, was Guenni007’s css helpful?
    When I check your logo is not overlapping:
    Screen Shot 2025 02 08 at 12.36.42 PM

    Best regards,
    Mike

    in reply to: distance to the header #1476705

    Hey schweg33,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
        padding-top: 0;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: other key #1476704

    Hey schweg33,
    The Dev Team writes:
    never use .av-m1yjw3j3-8de8ef07635f179e0beedc245c4c38a7
    this will change when an element setting changes. Use custom classes or ID of element !!!

    Best regards,
    Mike

    in reply to: Tokens (plural!) not accepted by our theme update page #1476703

    Hi,
    Your version v4.5.2 can not be updated in the backend with a token, you will need to manually update, this was due to Envato switching from the API license to the Token license.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: enfold mobile burger menu social media icons #1476702

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Hamburger Menu Customization #1476697

    Hi,
    By the order that it is loaded, glad Guenni007 could help, thank you Guenni007.

    Best regards,
    Mike

    in reply to: Change font colour and size in table #1476696

    Hey Tanja,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.home .alternate_color .homepgservicestable.avia-data-table.avia_pricing_minimal td {
    	color: #fff;
    	border-color: transparent;
    	font-size: 2em;
    }

    Best regards,
    Mike

    in reply to: Logo Not Showing Up on Mobile View #1476694

    Hi,
    It is in your “snippets” plugin
    Screen Shot 2025 02 08 at 10.32.13 AM

    Best regards,
    Mike

    in reply to: Strange inline height applied to Color Sections #1476691

    Hi,
    I checked your “About BlueWillow Biologics” page, but I was not able to reproduce the error of “scrolling up and down the color section bands would continue to increase in height with each scroll” I don’t have an iPhone and I was not able to login to the site.
    Perhaps I don’t understand the issue completely or it is specific to iPhone only.
    Try to create a video of what you are seeing so we can try to reproduce.
    We don’t have experience “Solid Security plugin” so we don’t know a way around this.

    Best regards,
    Mike

    in reply to: Change Menu Text on Hover #1476690

    Hi,
    Try adding this css:

    ul.menu li a:hover .avia-menu-text {
        border: none;
    }

    Best regards,
    Mike

    in reply to: Slideshow Desktop vs. Smartphone #1476675

    Hey Martin,
    Your best solution will be to create two slideshows with portrait sized images for mobile, using your desktop landscape images for mobile will typically not look good on mobile. If you still want to try, try this css and adjust to suit:

    @media only screen and (max-width: 450px) { 
    .avia-slideshow {
      width: 300% !important; 
      position: relative !important; 
      left: calc(-90vw) !important; 
    }
    }

    Best regards,
    Mike

    in reply to: Sidebar menu – some elements are not shown #1476669

    Hi,
    Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Timeline – adding images not beneath text but next to it #1476668

    Hey michaelf245,
    I assume that this is what you have now with the image in the content box:
    Screen Shot 2025 02 08 at 7.43.12 AM
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script() { ?>
      <script>
    $(document).ready(function() {
      $('.av-milestone').each(function() {
        var image = $(this).find('img');
        var content = $(this).find('.av-milestone-content-wrap');
        content.after(image);
        $(this).css('display', 'flex');
        image.css('margin-left', '20px');
      });
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script', 99 );

    and this css in your quick css:

    .avia-timeline-vertical.av-milestone-placement-left .av-milestone-content-wrap {
        width: 50%;
    }
    .avia-timeline-vertical .av-milestone-content-wrap {
        padding: 0px 0px 30px 60px;
    }
    .avia-timeline-vertical .av-milestone-icon-wrap {
        padding: 0px 0 30px 0;    width: 90px;
    }
    html .av-milestone :where(img[class*=wp-image-]) {
        height: 180px;
    }
    .avia-timeline-vertical .av-milestone-date {
        padding: 30px 60px 0 0;
    }

    My images are 180px, so you may need to adjust the css to suit.
    result:
    Screen Shot 2025 02 08 at 7.38.29 AM

    Best regards,
    Mike

    in reply to: Enfold Language #1476649

    Hi,
    Thanks for your patience, on your page I found that “You may also like…” is now “Vous aimerez peut-être…”
    but I don’t see “in stock” only “En rupture de stock” which also seems translated.

    Best regards,
    Mike

    in reply to: How to personalize sidebar menu appearance ? #1476360

    Hi,
    So you found a soloion? Shall we close this thread

    Best regards,
    Mike

    in reply to: Enfold Language #1476359

    Hi,
    the normal /wp-admin/ doe not work for login, do you have custom login?
    What do you want “You may also like…” to say?

    Best regards,
    Mike

    in reply to: Shop page #1476357

    Hi,
    We recommend Codeable as a paid option, or possibly Upwork

    Best regards,
    Mike

    in reply to: Gallery on Smartphone looks weird #1476206

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    Hey hellsing71,
    Please link to your site so we can examine. Please note that we are now at v6.09 and updating from v4.7 will not work automatically.
    If you tried to overwrite the theme via FTP you could have errors as old theme files will still be present.
    Try installing the theme update like this:
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg

    Best regards,
    Mike

    in reply to: Categories column, read more, and images of other blogs #1476202

    Hi,
    I believe that I answered your question in this thread: https://kriesi.at/support/topic/categories-with-blog/
    If so, lets close this one, or ask more in the first one and we will close this duplicate thread.

    Best regards,
    Mike

    in reply to: Blog Page layout #1476201

    Hey MysticMimi,
    I believe that I answered your question in this thread: https://kriesi.at/support/topic/categories-with-blog/
    If so, lets close this one, or ask more in the first one and we will close this duplicate thread.

    Best regards,
    Mike

    in reply to: Multiple blog columns showing catalog side-bar #1476200

    Hey MysticMimi,
    I believe that I answered your question in this thread: https://kriesi.at/support/topic/categories-with-blog/
    If so, lets close this one, or ask more in the first one and we will close this duplicate thread.

    Best regards,
    Mike

    in reply to: Moving enfold setting and wordpress site to a new domain. #1476199

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Categories with blog #1476198

    Hi,
    It would show full width, but you have a sidebar on that page and a “grid row” element pushing the sidebar down.
    I made some changes, please check now.

    Best regards,
    Mike

    in reply to: How to personalize sidebar menu appearance ? #1476195

    Hi,
    It looks like you have already found a solution, is this true?
    Screen Shot 2025 02 02 at 11.39.48 AM

    Best regards,
    Mike

    in reply to: quick CSS for current_page_item #1476194

    Hey James,
    It looks like you have already found a solution, is this true?
    Screen Shot 2025 02 02 at 11.36.36 AM

    Best regards,
    Mike

Viewing 30 posts - 541 through 570 (of 34,221 total)