Forum Replies Created

Viewing 30 posts - 17,011 through 17,040 (of 35,071 total)
  • Author
    Posts
  • in reply to: Weird bullets appeared #1213670

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Portfolio Template using shortcodes #1213669

    Hi,
    Sorry, I’m not seeing a second button on that page.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the login and links, I tested on an Android device and when I scrolled the page the slider played again. I tried many settings in your slider, but it still seems that the scroll triggers the slider. This doesn’t occur on desktop dev tools emulating a mobile device.

    Best regards,
    Mike

    Hey Maarten,
    Sorry for the late reply and glad to hear it is resolved. If you don’t mind sharing the solution it may help someone in the future.

    Best regards,
    Mike

    in reply to: Link to a tab in a Tab Section #1213650

    Hi,
    Sorry for the late reply, when I check your links page I find the link to the tab section is #Tabsection but it should be #tabbransch .
    I don’t believe that script is needed anymore, you can link to a tab using the ID, but you can not link to a section inside of a tab.

    Best regards,
    Mike

    in reply to: Testimonials minimum height #1213551

    Hi,
    Please see the solution at your other thread with the same question, please reply to that one.

    Best regards,
    Mike

    in reply to: Lock Testimonial Slider height #1213550

    Hi,
    Please see the solution at your other thread with the same question, please reply to that one.

    Best regards,
    Mike

    in reply to: Stop testimonials slider from jumping around #1213549

    Hi,
    Thanks for the link, the following script looks for each testimonial slider and finds the tallest inner content and then sets all of the sliders to the same height. Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_testimonial_height_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      	$('.avia-testimonial-row').each(function(){  
         var $columns = $('.avia-testimonial_inner',this);
         var maxHeight = Math.max.apply(Math, $columns.map(function(){
             return $(this).height();
         }).get());
         $columns.height(maxHeight);
    });
      });
      })(jQuery);
      </script>
    <?php
    }
    add_action('wp_footer', 'custom_testimonial_height_script');

    This code sets the height of .avia-testimonial_inner which keeps the testimonial author title close to the content, this screenshot highlights the area.
    2020-05-16_065932.png
    If you replace .avia-testimonial_inner with .avia-testimonial-content in the code then the testimonial author title will stay in the same place for each slider, this screenshot highlights the area.
    2020-05-16_071109.png
    This script will work across your whole site, you can always restrict this to the one page by adding the page ID #top.page-id-5666 to the beginning of .avia-testimonial-row with a space like this:
    #top.page-id-5666 .avia-testimonial-row
    Please clear your browser cache and check after adding this code.

    Best regards,
    Mike

    in reply to: Weird bullets appeared #1213544

    Hi,
    Thank you, I was able to update your site by renaming your current theme directory to “enfold-old” and upload the new version to “enfold” Please clear your browser cache and check. If you are satisfied with how the new version works you can delete “enfold-old” via ftp, if you wish to roll back to your old version, simply delete “enfold” via ftp and rename “enfold-old” to “enfold”.

    Best regards,
    Mike

    in reply to: How to change Icon Box Font Size? #1213525

    Hi,
    Simply change the heading tag to “p” instead of “H3”
    2020-05-16_043336.png

    Best regards,
    Mike

    in reply to: irregular font size #1213523

    Hi,
    Ok, I removed the custom class, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Image wirh link jumps onmouseover #1213522

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

    .entry-content-wrapper a:hover .aligncenter {
    	margin: 0 !important;
    }

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

    Best regards,
    Mike

    in reply to: irregular font size #1213292

    Hi,
    Thank you for the links and the login, this is odd because the “Personal Theme Packs” looks thinner to me also, but I don’t see any roge css changing the font-weight, and the element tree is the same. If this is the only page with the error we can adjust by adding a custom class to your titles, for example, I added the custom class “font-fix” to your title like this:

    <h5 style="text-align: center;"><span class="font-fix" style="color: #000000;">Personal Theme Packs</span></h5>

    and then I added this css in your Quick CSS:

    .font-fix {
    text-shadow: 3px 0 0 currentColor;
    }

    and this seems to help, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Portfolio Template using shortcodes #1213267

    Hi,
    Sorry for the late reply, I see the “RICHIEDI PREVENTIVO” button at the top of your page opens an iframe to a blank page, if you try to load the page directly it leads to a “500 internal error”, so I would say that your error is with the content of the page and not so much the iframe. What is supposed show on the page, a shortcode for a plugin?

    Best regards,
    Mike

    in reply to: Mega menu images size #1213265

    Hi,
    Sorry for the late reply, is the page in the Private Content area the correct one to see the images with a border that disappear on hover? If not please include a link to see the issue.

    Best regards,
    Mike

    in reply to: Google Tag Manager Gdpr Opt out #1213261

    Hi,
    Sorry for the late reply, according to this article you can use both google analytics and google tag manager on same page, I understand you don’t need to do this but it would trigger the opt out option of the cookie notification.

    Best regards,
    Mike

    in reply to: irregular font size #1213250

    Hi,
    Sorry for the late reply, I took a look at the heading “Personal Theme Packs” on /one-shots/ and “Spotlight” on /beats/
    and they look the same to me, both are using the font “Montserrat, 60px”
    Am I looking at the correct sections?

    Best regards,
    Mike

    in reply to: background and safari 13+ #1213247

    Hi,
    Thanks, @Guenni007 good point +1 👍

    Best regards,
    Mike

    in reply to: Set no index to portfolio items #1213239

    Hi,
    Thanks for the update.

    Best regards,
    Mike

    in reply to: Translation of 'share this entry' not showing #1213237

    Hi,
    Thank you for the feedback, I found an error in your css, I changed screen and (max-width 767px) to screen and (max-width: 767px) an now your mobile css works.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Weird bullets appeared #1213228

    Hi,
    Sorry I didn’t receive any other messages, thanks for the link I got the file, but the ftp details lead to an empty directory, please check the ftp user account and replace the directory /kriesi with / so we have access to the WordPress directory.
    Please also include an admin login so we can check that the update is successful.

    Best regards,
    Mike

    in reply to: Woocommerce product page and ajax product filter #1213218

    Hi,
    Sorry, I have not tested woocommerce filter plugins, but it looks like the built-in widget filters “Filter Products by Attribute” work for the shop page, does it work for you?

    Best regards,
    Mike

    in reply to: Editing search dropdown #1212950

    Hey fcp,
    Sorry for the late reply, to add the custom search function to your child theme you can copy the full function from the functions-enfold.php file into your child theme functions.php, 194 lines.
    Although, I didn’t find a way to add the price to the Ajax search results.
    The only solution I found was to replace the search with the product search.
    I did find a working example of Add Product Price in WooCommerce as a Shortcode I was hoping it could be added to the search results, but it doesn’t work for that.

    Best regards,
    Mike

    Hi,
    Thanks for sharing your solution, I will submit it to the team. We will close this now, thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Weird bullets appeared #1212928

    Hi,
    Sure we can help, we will need an admin login, FTP access, and a link to your Enfold theme download, perhaps in DropBox or Google Drive.

    Best regards,
    Mike

    in reply to: Header Issues #1212923

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

    @media only screen and (max-width: 988px) { 
    #top #header_meta {
        background: transparent;
        box-shadow: none;
        border-bottom: 1px solid rgba(255,255,255,0.25);
    }
    #top .social_bookmarks li a {
        border-color: rgba(255,255,255,0.25);
        color: transparent !important;
    }
    .avia-menu.av_menu_icon_beside {
        border-right-width: 0 !important;
        border-right-style: none !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Lightbox Change Event or Click Handler? #1212920

    Hi,
    Very good, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Set no index to portfolio items #1212919

    Hi,
    If the code is working correctly and you can see the code in your header, then ask Google to recrawl your site.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, probably when you translated the element and moved it to another page the ID changed and the css didn’t work. In the css I used the ID #attivita with the expectation that this css would not work on other pages.
    So on your other pages please try adding the ID to the element for the css to work.

    Best regards,
    Mike

    in reply to: How to change Icon Box Font Size? #1212913

    Hi,

    @Walrus11
    thank you, we are waiting for the dev team to check.

    Best regards,
    Mike

Viewing 30 posts - 17,011 through 17,040 (of 35,071 total)