Forum Replies Created

Viewing 30 posts - 9,691 through 9,720 (of 34,221 total)
  • Author
    Posts
  • in reply to: Remove time from Sidebar-Blog #1369281

    Hi,
    Thanks for your patience, I assume that you are referring to the Latest News & Latest Portfolio widgets:
    2022-10-18_006.png
    Try adding this code to the end of your functions.php file in Appearance ▸ Editor:

    add_filter('avia_widget_time', 'change_avia_date_format', 10, 2);
    function change_avia_date_format($date, $function) {
      $output = get_option('date_format');
      return $output;
    }

    the expected results:
    2022-10-18_007.png

    Best regards,
    Mike

    in reply to: Menu custom link in a new page #1369278

    Hi,
    Thanks for the login to your site, I corrected your TikTok icon function and the css for it and now it is working, please clear your browser cache and check.
    2022-10-18_005.png

    Best regards,
    Mike

    in reply to: Layer slider / text layer background appearance #1369277

    Hi,
    Thanks for the link to your site, I believe that the slider image is not showing right away because the WP Rocket lazyload option is preventing it from loading, try disabling the Rocket lazyload option. If this doesn’t help try disabling the WP Rocket plugin and clear your browser cache and check again.

    Best regards,
    Mike

    in reply to: Google Fonts… #1369276

    Hey Katja,
    I believe the font you are seeing is loaded by Google maps, try this solution.

    Best regards,
    Mike

    in reply to: Broken revisions on home page #1369272

    Hi,
    Sorry for that, I have disabled it, unless there is anything else we can help with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: White border in facebook likebox #1369219

    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: google fonts #1369217

    Hey rixi,
    The font you are seeing is loaded by Google maps, try this solution.

    Best regards,
    Mike

    in reply to: Child Theme #1369214

    Hi,
    You could add the function container above to the parent theme but when you update it would be lost as the functions.php file is overwritten.
    It would be better to first add a child theme and then add this to the child theme functions.php, please note that if you have more custom functions each one must have a different name, so your second function could be named like this:

    function second_add_custom_code_head(){
    ?>
      YOUR SCRIPT GOES HERE
    <?php
    }
    add_action('wp_head', 'second_add_custom_code_head');

    Best regards,
    Mike

    in reply to: Broken revisions on home page #1369213

    Hi,
    If this occurs try clicking on the Advanced Layout Builder button at the top of the page, when I checked the pages open in the Advanced Layout Builder correctly, but sometimes it took an extra minute for the builder to show and the debugger window showed first, perhaps this is what you mean:
    2022-10-18_001.png
    but in the end the builder loaded correctly.
    I don’t recall if you had Enabled the Avia Layout Builder Debugger of if I did, I can disable it if you wish.
    If you mean the first text block with the button shortcode, this was always like this and it is fine to use shortcode like this:
    2022-10-18_002.png
    instead of using the shortcode in the text element you could use the notification and button elements, I created a test page for you linked below:
    2022-10-18_003.png

    Best regards,
    Mike

    in reply to: Change Active Menu Color for One Item #1369182

    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: Menu Item Border on Click #1369180

    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: Conditional Link in Mobile Menu #1369178

    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: Column Photo to Responsive Full Width Pic #1369175

    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: Remove date from Masonry Grid iPad #1369040

    Hi,
    Glad Nikko was 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: Update an Imported Demo Theme #1369039

    Hi,
    Do you want all H1 & H2 to be changed? You can set this in the Enfold Theme Options ▸ Advanced Styling just choose the font from the drop down menu.

    Best regards,
    Mike

    in reply to: fallback image not working on ipad #1369036

    Hi,
    Thanks for the link to your page, I tested in my Chrome Dev Tools for tablet (768px) and on BrowserStack.com iPad & iPad Pro and your fallback image showed for them, please see the screenshots in the Private Content area.
    Do you have a strong wifi connection? Try with the iPad plugged in to see if that helps.
    Also try to clear the cache, and note that for Safari you often need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    in reply to: Submenu collapse/expand on click, not hover #1369034

    Hi,
    Thanks for the screenshot, the following script and css will remove the hover effect of the sidebar menu and open and close the submenu items on click below the menu item.
    Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_sidebar_menu_open_on_click_script() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $(".menu-item-has-children").click(function() {
      	var clicks = $(this).data('clicks');
      if (clicks) {
      	$(this).removeClass('open');
      } else {
        $(this).addClass('open');
      }
      $(this).data("clicks", !clicks);
      });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_sidebar_menu_open_on_click_script');

    Add this CSS to Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #avia-menu.av-main-nav .menu-item-has-children:hover ul.sub-menu {
    	opacity: 0 !important;
        visibility: hidden !important;
    }
    #avia-menu.av-main-nav ul.sub-menu {
        top: unset;
        left: unset;
        position: relative;
    }
    #avia-menu.av-main-nav .menu-item-has-children ul.sub-menu li {
    	display: none;
    }
    #avia-menu.av-main-nav .menu-item-has-children.open ul.sub-menu li {
    	display: block;
    }
    #avia-menu.av-main-nav .menu-item-has-children.open ul.sub-menu {
    	opacity: 1 !important;
        visibility: visible !important;
    }
    #avia-menu.av-main-nav .menu-item-has-children.open ul.sub-menu li:last-child {
        padding-bottom: 25px;
    }

    After applying the css, please clear your browser cache and check.
    The expected results:
    2022-10-16_019.png
    Please ensure to copy the code from the forum and not an email notification.

    Best regards,
    Mike

    in reply to: Update an Imported Demo Theme #1369031

    Hi,
    Do you mean that you want to change the “Get in Touch” to be a different font?
    2022-10-16_018.png
    which font do you want it to be?

    Best regards,
    Mike

    in reply to: Search resultes are showring short code in the text? #1369028

    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: Product Variation Images Not Displaying in Lightbox #1369027

    Hi,
    Sorry for the late reply and thank you for your patience, the only time the product image is a link to the larger image for lightbox is when the Product Image option in the sidebar is used, this is also the only time the Product Gallery is included in the page source code:
    2022-10-16_017.png
    But if you use the Product Image option the Variation Images will not show, you can only use one or the other.
    This is the default Woocommerce behavior, to use additional variation images and open them in a lightbox Woocommerce has an addon plugin. There may be other plugins that will also add this feature, I don’t know, and I don’t know if this plugin requires the Woocommerce lightbox or if it will work with our lightbox as it is a paid plugin and I can’t test it.

    Best regards,
    Mike

    in reply to: Broken revisions on home page #1369022

    Hi,
    I tested the test page linked below and made two small edits and it created two more revisions for a total of six now, I also tested the preview and found no errors.
    I’m not sure what is the issue with your homepage but the copy has been working correctly for a month, perhaps you should delete the home page and use the copy.

    Best regards,
    Mike

    Hi,
    Please try this css in Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.tribe-theme-enfold.single-tribe_events #main .av-single-event-content {
        float: none;
        order: unset;
        margin: auto;
        text-align: center;
    }
    #top.tribe-theme-enfold.single-tribe_events #main .tribe-events-event-image img {
    	margin: auto;
    }
    #top.tribe-theme-enfold.single-tribe_events #main .tribe-events-c-subscribe-dropdown__container,
    #top.tribe-theme-enfold.single-tribe_events #main .tribe-events-schedule{
        justify-content: center;
        margin: auto;
    }

    The expected results: https://savvyify.com/img/image/5mmz

    Best regards,
    Mike

    in reply to: Content Elements > icon : It doesn't move with sentence.. #1369019

    Hi,
    Thanks for the screenshot and the link to your site, for the first request try this css in the Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .page-id-378 #av_section_2 .av_textblock_section p {
    	width: 470px;
        margin: auto;
    }

    For the second request try this css:

    .page-id-378 #av_section_5 .avia_codeblock iframe {
    	width: 100%;
    }

    After applying the css, please clear your browser cache and check.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Submenu collapse/expand on click, not hover #1369018

    Hey luismc83,
    Do you mean that you are using a header sidebar layout so the main menu is vertical in the sidebar?
    If so is the menu item with the sub-menu items also have an activate link or does it have no link?
    Typically menu items with a toggle on click interfere with the link of the parent, so you would want to have no link on the parent so your toggle doesn’t trigger the link target.

    Best regards,
    Mike

    in reply to: line break in top navi without background color #1369015

    Hey Tilman,
    First ensure that you have enabled the custom class option for menu items in the Screen Options
    Then wrap the second word in your menu item with a span and the custom class line-break like this:

    Allgemeinmedizin /<span class="line-break">Naturheilkunde</span>

    and add the custom class line-break-item to the menu item:
    add_custom_class_to_menu_item_for_line_break.png
    Then add this CSS to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #avia-menu .line-break-item a {
    	line-height: 40px;
    	transform: translateY(18%);
    }
    .line-break-item .line-break {
        display: block;
    	line-height: 0px;
    }
    

    Now the menu item will be two lines and centered:
    2022-10-16_014.png
    I was testing with the default settings for the 2017 Demo, since your settings may be a little different you can adjust the CSS to place the menu text where you wish, if you have trouble link to your page with an admin login so we can assist.

    Best regards,
    Mike

    in reply to: overlapped images #1369013

    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: fallback image not working on ipad #1369012

    Hey hochenb,
    Thank you for your question, mobile browsers such as Safari and Chrome block background videos from auto-playing, this has been the standard for for many years, this is why there is a notice in the elements:
    2022-10-16_003.png
    Some plugins offer “Hacks” around this, but Safari and Chrome block more of these “Hacks” with each update, Enfold follows the browser rules and doesn’t add these “Hacks”
    The LayerSlider may play a background video on mobile devices, but it is unknown how long this will work.

    As for the fallback image not loading on tablets, I tested this with the color section, I added a Background Video and checked the option Hide Video On Mobile Devices:
    2022-10-16_004.png
    then I added a Custom Background Image for mobile & tablets:
    2022-10-16_005.png
    Now on desktop the background video plays:
    2022-10-16_006.png
    and on tablet the background image shows:
    2022-10-16_007.png
    below I have linked to my test page, are these the steps you tried, if not please explain and link to your test page.
    I will point out that I don’t have an actual tablet device so I tested with the Dev Tools in Chrome and BrowserStack.com which uses real devices, the standard iPad showed the background image:
    2022-10-16_011.png
    and the iPad Pro showed the background video, so that was an added bonus:
    2022-10-16_008.png

    Best regards,
    Mike

    in reply to: "font-awesome" in functions.php? #1369009

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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: subsequent removal of a sidebar on several pages #1369008

    Hi,
    This doesn’t change the Site Layout, it only changes it for the one page that you are working on, all other pages will not be changed.
    For this one page above you wrote that you want a completely empty page, so you don’t want the menu in the right sidebar correct?
    I believe that you are not seeing the above backend page admin sidebar because you have customized the options, perhaps with the plugin Admin Menu Editor or perhaps with a function in your child theme functions.php, I’m not familiar with the customizations that you have made but you admin menu options are quite different that the normal options. Try restoring the default page options.
    2022-10-16_001.png

    Best regards,
    Mike

    in reply to: overlapped images #1369007

    Hi,
    The arrows you are referring to are part of the built-in lightbox, if the plugin doesn’t offer this feature then disable the plugin and enable the built-in lightbox.
    You can not have both activate at the same time.

    Best regards,
    Mike

Viewing 30 posts - 9,691 through 9,720 (of 34,221 total)