Forum Replies Created

Viewing 30 posts - 12,271 through 12,300 (of 34,910 total)
  • Author
    Posts
  • in reply to: Error LayerSlider #1346671

    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: Include HTML code in #1346669

    Hi,
    Glad Rikard 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: Current menu item in secondary menu #1346667

    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: Testimonial link element #1346576

    Hey Dare_Care,
    Thanks for your question, in the testimonial items if you add a website url in the advanced tab:
    2022-03-30_001.jpg
    and add this script to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_testimonial_link_script() { ?>
        <script>
    (function($) {
      $(".avia-testimonial").click(function(){
          window.location = $(this).find("a.avia-testimonial-link").attr("href");
          return false;
      });
      $(".avia-testimonial").mouseover(function(){
          $(this).css("cursor", "pointer");
      });
    }(jQuery));
    </script>
        <?php
    }
    add_action('wp_footer', 'custom_testimonial_link_script');

    then each testimonial element will have the link and show a pointer on mouse-over
    2022-03-30_002.jpg

    Best regards,
    Mike

    in reply to: Changing the breakpoint of the Hamburger Menu #1346569

    Hi,
    Glad Rikard 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

    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: Amazon Pay in Payment Methods, not on top #1346428

    Hi,
    Thank you for your question, this plugin is designed to show at the top of the page, as you see on the WooCommerce Amazon Pay page other users have pointed this out:
    2022-03-29_001.jpg
    with the following script it can be moved down to the payment method area:
    2022-03-29_002.jpg
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_amazon_pay_button_script() { ?>
        <script>
    (function($) {
         $('.woocommerce-checkout .wc-amazon-checkout-message').detach().insertBefore('.woocommerce-checkout-payment');
     })(jQuery);
     </script>
        <?php
    }
    add_action('wp_footer', 'move_amazon_pay_button_script');

    Best regards,
    Mike

    in reply to: Appearing speed of the menue #1346312

    Hi,
    Glad to hear, the original time was 0.6s, so this 1.9s makes it slower, the higher the number the slower it should be.

    Best regards,
    Mike

    in reply to: Masonry – text on top #1346311

    Hi,
    Glad to hear, for black body text try this css:

    #top #av-masonry-1 .av-masonry-entry.isotope-item .entry-content {
        color: #000;
    }

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

    Best regards,
    Mike

    in reply to: put Infos in a flyoutbox ?? #1346292

    Hi,
    I have not tested any of these, or looked for a “Floating Widget” before, but perhaps Floating Button or Side Menu Lite would work. If the player already has an icon you could try to make it sticky alone with Sticky Menu & Sticky Header (WP Sticky Anything)
    But it sounds like you might want to ask a freelancer to help you create this with javascript.

    Best regards,
    Mike

    in reply to: Masonry – text on top #1346288

    Hi,
    Please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    #av-masonry-1 .av-masonry-entry .av-inner-masonry-content {
        padding: 2px 10px;
    }
    #top #av-masonry-1.av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos, #top #av-masonry-1.av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos {
        vertical-align: top;
    }

    For the one that doesn’t show all of the text you will need to reduce the amount of text, it is too much for the space. If you are using the manual excerpt add your “read on” at the end.

    Best regards,
    Mike

    in reply to: Change animated numbers circle border #1346243

    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: Change animated numbers circle border #1346240

    Hi,
    Try this:

    #main .iconbox.whaticon01 .iconbox_icon {
    background: url(https://balrajt9.sg-host.com/wp-content/uploads/2022/03/whaticon01-1.png);
    height: 60px;
    width: 60px;
    font-size: 0px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
    background-position: center 11px;
    }

    Best regards,
    Mike

    in reply to: Masonry – text on top #1346239

    Hey lauterkeit,
    Thank you for the link to your site and the screenshot, to move the date and make it black, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function move_masonry_date() { ?>
        <script>
    (function($){
      $( 'a.av-masonry-entry' ).each(function() {
      $( this ).find( '.av-masonry-date' ).css({ 'color': '#000'}).insertBefore( $(this).find('.av-masonry-entry-content'));
      });
    })(jQuery);
    </script>
        <?php
    }
    add_action('wp_footer', 'move_masonry_date');

    the expected results
    2022-03-27_011.jpg

    Best regards,
    Mike

    in reply to: Change animated numbers circle border #1346237

    Hi,
    yes

    Best regards,
    Mike

    in reply to: Change animated numbers circle border #1346233

    Hi,
    For that one you will need to create a transparent image of the icon with the rings around it and then use it to replace the icon with css.
    For example imagine this as your image, but with a transparent background
    2022-03-27_009.jpg
    then you wouls use this css with the url to your image:

    #main .iconbox .iconbox_icon {
    	background: url(https://savvyify.com/img/images/2022/03/27/2022-03-27_009.jpg);
    	height: 60px;
    	width: 60px;
    	font-size: 0px;
    	display: inline-block;
    	background-size: contain;
    	background-repeat: no-repeat;
    	border: none;
    	background-position: center 11px;
    }

    then the result would be:
    2022-03-27_010.jpg

    Best regards,
    Mike

    in reply to: Change animated numbers circle border #1346229

    Hi,
    Sorry, not that one.

    Best regards,
    Mike

    in reply to: Add Clicky analytics code #1346227

    Hi,
    You can change the add_action to wp_head like this: add_action('wp_head', 'alwin_clicky_analytics_footer');

    Best regards,
    Mike

    Hi,
    Try adding this css:

    .caption_framed .slideshow_caption .avia-caption-content {
    	background: rgba(0,106,166,0.7);
    	padding: 0px 0px 50px 190px;
    
    }
    .caption_framed .slideshow_caption .avia-caption-content p {
    	background: unset!important;
    }
    .caption_framed .slideshow_caption .avia-caption-title {
    	margin: 0;
        padding: 50px 250px 10px 200px;
    }

    expected results
    2022-03-27_008.jpg

    Best regards,
    Mike

    in reply to: Change animated numbers circle border #1346223

    Hey navindesigns,
    Thanks for the mockup, try this css in your Quick CSS

    #av_section_1 .avia-animated-number .avia-animated-number-circle-inner {
        border: 2px solid #007da5;
        border-radius: 50%;
    }
    #av_section_1 .avia-animated-number .avia-animated-number-circle:after {
      display: block;
      border: 2px solid #969696;
      width: 100%;
      border-radius: 50%;
      transform: translateX(-6%);
    }

    this is the expected results
    2022-03-27_007.jpg

    Best regards,
    Mike

    in reply to: Problème suppression création de miniatures #1346222

    Hey sebzh22,
    Merci pour votre patience et les captures d’écran, votre première capture d’écran concerne les vignettes woocommerce, je ne pense pas que vous puissiez les désactiver et que la boutique woocommerce fonctionne correctement.
    Votre deuxième capture d’écran semble provenir de la bibliothèque multimédia principale et la plus petite vignette 150 a été supprimée, essayez donc de l’activer à nouveau.

    — Translated with Google —

    Thank you for your patience and the screenshots, your first screenshot is of woocommerce thumbnails, I don’t believe that you can disable these and have the woocommerce shop work correctly.
    Your second screenshot looks like it is of the backend media library and the smallest thumbnail 150 has been removed, so try enabling this again.

    Best regards,
    Mike

    in reply to: Google Maps not working with valid key #1346215

    Hi,
    Thank you for the link to your site, I found that the EventON plugin is causing a conflict, when it is disabled the google maps work correctly.
    I don’t know this plugin so perhaps there is a setting you can disable to solve the conflict or you can ask the plugin author to help you solve it.

    Best regards,
    Mike

    in reply to: No LayerSlider in Enfold 2017 #1346212

    Hey andreane1,
    Thanks for your question, the Enfold 2017 demo includes a layerslider, so it seems that an error occurred with your install, but this is easy to fix by importing the layerslider demo zip file in the Private Content area into the layerslider import option.
    2022-03-27_003.jpg

    If you get an error then this would post to your web server not having the PHP ZipArchive Extension installed, which allows your web server to handle zip files.
    You can check if the PHP ZipArchive Extension is installed by going to the layerslider dashboard and clicking the three dots in the upper right corner and click the System Status
    layerslider_system_status_menu_option.jpg
    then look under the Server Settings to see if PHP ZipArchive Extension is enabled.
    layerslider_system_status_PHP_ZipArchive_Extension.jpg

    Best regards,
    Mike

    in reply to: Add Clicky analytics code #1346211

    Hi,
    Glad to hear this helped, the functions.php file in a Child Theme appends the parent theme functions.php which is way you can not use a filter, action, or function with the exact same name as in the parent theme functions.php or functions-enfold.php
    The header.php and footer.php or any other file overwrites the parent theme file.
    If you can avoid using a child theme header.php or footer.php it may be a good idea, since the last few times that we updated those files it caused errors with client sites that they were not expecting. We don’t update these files often and it is always noted in the changelog, but it often catches people off guard.
    Most of the time the changes can be made in the child theme functions.php

    Hopefully this helps, shall we close this then?

    Best regards,
    Mike

    in reply to: Hide image title, etc. on hover #1346210

    Hi,
    Thanks for the login, I have installed your child theme and imported the parent theme settings and added the from Guenni007 above to remove the image titles. Please clear your browser cache and check, and let us know if we should now close the thread.

    Best regards,
    Mike

    in reply to: Featured image option missing in blog post #1346208

    Hi,
    Thank you for the login, I created a new draft post and the featured image option was visible and available, please check your site and see the screenshot in the Private Content area.
    If you don’t see this in your login try the login you posted for us.
    Perhaps for your login the option has been disabled somehow, try going to a post and click the 3 dots in the upper right corner 1
    then click the Preferences from the dropdown 2
    then look in the Panels for the Featured Image option 3
    2022-03-27_002.jpg

    Best regards,
    Mike

    in reply to: Theme update Enfold 4.9.1-dev-1 #1346204

    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: EmbedPlus YouTube Plug-in; latest video not displaying #1346201

    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: Audioplayer – delete inverted commas in the titles #1346183

    Hi,
    Glad Guenni007 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: Masonry gallery only shows first 24 elements #1346181

    Hi,
    Glad Yigit 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

Viewing 30 posts - 12,271 through 12,300 (of 34,910 total)