Forum Replies Created

Viewing 30 posts - 11,101 through 11,130 (of 34,910 total)
  • Author
    Posts
  • in reply to: block collant en dessous du menu collant #1359358

    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: Breakpoint burger menu #1359355

    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: Contact Formular doesnt work anymore #1359337

    Hi,
    Oh, ok, my mistake, but from the text above please ensure you are using an email from the webhost, and try the SMTP plugin.

    Best regards,
    Mike

    in reply to: Contact Formular doesnt work anymore #1359335

    Hey rixi,
    Thanks for your question, as I read the mail heading you have provided below and the text from your webhost above I believe that you will need to use the plugin WP Mail SMTP and use an email from your webhost, you can not use a gmail address any longer.
    Please note that the contact form will also be re-configured to your new webhost email address, and the email set in your WordPress user profile for your admin may need to also be this new address.

    Best regards,
    Mike

    in reply to: SVG logo settings on Mobile #1359332

    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: Masonry categories as sticky menü #1359331

    Hey Mike1050,
    Thanks for your question, to make the masonry sort sticky on that page for tablets and above, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function sticky_masonry_sort_waypoint() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
      (function($){
      	var width = $(window).width();
        var $stickyTop = $('#top.page-id-102 .av-sort-by-term');
        if (width >= 767) {
        $stickyTop.waypoint(function(direction) {
          if (direction === 'down') {
             $stickyTop.addClass('sticky-top');
          }
          if (direction === 'up') {
             $stickyTop.removeClass('sticky-top');
          }
        }, {
          offset: '118px'
        });
        }
      })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'sticky_masonry_sort_waypoint');

    and this css in the General Styling ▸ Quick CSS field:

    .sticky-top {
        position:fixed!important;
        top:118px!important;
        z-index:510!important;
        background-color: #fff;
    }

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

    Best regards,
    Mike

    in reply to: Color of headline of portfolio name in masonry #1359328

    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: SVG logo settings on Mobile #1359327

    Hi,
    Thanks for the link to your test page, please give the following css a try in my tests on your site it seems to achieve what you are looking for.
    I was not sure what was your custom css and what is the default, but this overwrites all of it so you may be able to trim it down some.
    Currently the theme sets the image using height: auto; and a number for the width, my idea is to reverse that so you can set the height to 80px as you wish. Also, the logo container is only 80px high and the svg has a top: 15px;, bottom: 15px;
    Anyways please give this css a try and see the screenshot in the Private Content area of the expected results.

    @media only screen and (max-width: 767px){
    .responsive #top #wrap_all .logo,
    .responsive #top #wrap_all #header {
        height: 100px !important;
    }
    .responsive #top #wrap_all .logo a {
        display: flex;
    }
    .responsive #top .logo svg {
        width: auto !important;
        height: 80px !important;
        top: 10px !important;
        bottom: unset !important;
    }
    }

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

    Best regards,
    Mike

    in reply to: Video background #1359324

    Hi,
    Thanks for your question, since this thread is from 2014, please create a new thread and include a link to your page so we can see the issue. Perhaps including some screenshots would help and tell us which device you are using, IOS or Android.
    Since this is not your thread posting your site url here will not be private and you will not see anything we write in the Private Content area about your issue.
    We will close this thread and look forward to helping you with your issue in your new thread
    Thank you for your patience and for using Enfold.

    Best regards,
    Mike

    in reply to: Some Woocommerce styling questions #1359323

    Hi,
    Thanks, I updated how your “Add View Cart button to product page” was written and that allowed my script after it to work correctly, please check

    Best regards,
    Mike

    Hey ivanglaser,
    Thanks for your question, to add a “view cart” button to your shop page only on mobile and only if there are products in the cart, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_view_cart_button() { ?>
      <script>
    (function($){
      var width = $(window).width();
      var add_cart_btn = '<div class="cart_btn" style="display:flex;justify-content:center;"><a href="/cart/" class="button wc-forward">View Cart</a></div>';
      if ($('#top.woocommerce-shop .menu-item.cart_dropdown .av-cart-counter').hasClass('av-active-counter') && width <= 767) {
       $(add_cart_btn).insertAfter( ".woocommerce-products-header" );
      }
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_view_cart_button');

    Please see the screenshot in the Private Content area of the expected results.
    I was not sure where you wanted the button so if you want it elsewhere let us know.

    Best regards,
    Mike

    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: Some Woocommerce styling questions #1359317

    Hi,
    Yes, I work weekends :) can you include a login so I can see why the subtotal is not working?

    Best regards,
    Mike

    in reply to: Breakpoint burger menu #1359315

    Hi,
    Try this solution, you may need to remove any other custom css for the mobile break point that you have tested, if this doesn’t help then remove this and any other custom css for the mobile break point and link to your site so we can check.

    Best regards,
    Mike

    in reply to: Some Woocommerce styling questions #1359311

    Hi,
    Glad to hear, to change the color of the items in the checkout to all black, try this css:

    #top.woocommerce-checkout .main_color tr:nth-child(even){
    	color: #000;
    }

    to change the mini-cart “subtotal” to total, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_mini_cart_total_script() { ?>
      <script>
    (function($){
      $(function() {
    $( "p.woocommerce-mini-cart__total strong" )
      .text( "Total" );
     });
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_mini_cart_total_script');

    After making these changes please check, I believe this was all of the items on your list.

    Best regards,
    Mike

    in reply to: Slider caption and arrows outside the images #1359309

    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: CUSTOM FIELDS IN POST SLIDER #1359308

    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: CUSTOM FIELDS IN POST SLIDER #1359299

    Hi,
    Thank you, I believe this is working now please check.
    The solution was $autore = get_post_meta( $the_id, 'autore_articolo', true);
    without the $the_id = avia_get_the_id();

    Best regards,
    Mike

    in reply to: CUSTOM FIELDS IN POST SLIDER #1359297

    Hi,
    Thanks for the login info, but I don’t see the url to your site, please also include.
    Please try this:
    $autore = get_post_meta( $post->ID, 'autore_articolo', true);
    or this:

    
    $the_id = avia_get_the_id();
    $autore = get_post_meta( $the_id, 'autore_articolo', true);
    

    Best regards,
    Mike

    in reply to: Hide Mason Gallery overflow #1359296

    Hey Julie,
    Thanks for the link to your page, if you want the masonry images to always be a minimum height of 300px, then try adding this css:

    #donation-gallery .av-masonry-item-with-image {
    	min-height: 300px !important;
    }

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

    If you want the masonry element to set the height of the images based on the screen width and only show one row of images, try removing your custom css:

    #donation-gallery {
        min-height: 300px !important;
        max-height: 300px !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }

    then add this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_donation_gallery_height_script() { ?>
      <script>
    (function($){
      	$(window).on('resize', function() {
      	var dg = $('#donation-gallery .av-masonry-image-container').height();
     $('#donation-gallery').css({'height':dg+'px'});
      	}).trigger('resize');
    })(jQuery);
    </script>
      <?php
    }
    add_action('wp_footer', 'custom_donation_gallery_height_script');

    this script finds the height of the images and then sets the height of the container to match and it adjusts on window resize.

    Best regards,
    Mike

    in reply to: How to add a Calendar? #1359293

    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: Some Woocommerce styling questions #1359291

    Hi,
    For the large gap between the header text and the main body of the linked page please try this css:

    #top.archive .woocommerce-products-header #after_full_slider_2 .template-page {
    	padding-bottom: 0;
    }
    #top.archive .template-shop .template-shop.content {
    	padding-top: 0;
    }

    After applying the css, please clear your browser cache and check this page and others to ensure that this doesn’t cause a conflict on other pages, if it does please link to these pages so we can check and adjust.

    Best regards,
    Mike

    Hi,
    Thank you for your patience, I check the first Galleria Fotografica on my Android phone with Chrome and for me the horizontal gallery images open in the lightbox on the first tap, I didn’t need to “double tap”.
    What phone and browser are you using?

    Best regards,
    Mike

    Hi,
    Sorry for our delayed response, to remove the opacity from the masonry element on hover, on the page you linked to, please try this css:

    #top .av-hover-overlay-fade_out .av-masonry-entry:hover .av-masonry-image-container {
        opacity: 1;
    }

    For the second issue please try this css:

    @media only screen and (min-width: 768px) and (max-width: 989px){
    .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 88px !important;
    }
    }

    To center the masonry title please change this css:

    
    /* Title Position and Caption Box Size */
    .av-masonry-entry .av-masonry-entry-title {
    text-align: center !important;
    position: absolute;
    bottom: 5px;
    padding: 5px;
    }
    /* Title */
    #top .av-masonry-entry-title {
    font-size: 120% !important;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: .08em;
    text-align: left !important;
    text-shadow: 2px 2px 0px rgba(133,133,133,.4)!important;
    margin-left: 5%;
    }

    to this:

    
    /* Title Position and Caption Box Size */
    .av-masonry-entry .av-masonry-entry-title {
    text-align: center !important;
    bottom: 5px;
    padding: 5px;
    }
    /* Title */
    #top .av-masonry-entry-title {
    font-size: 120% !important;
    color: #555555;
    line-height: 1.6;
    font-weight: 600;
    letter-spacing: .08em;
    text-shadow: 2px 2px 0px rgba(133,133,133,.4)!important;
    width: 100%;
    }

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

    Best regards,
    Mike

    in reply to: Some Woocommerce styling questions #1359287

    Hi,
    Thank you for your patience, as I understand you still have these issues:

    5. Is there any way to increase the space between the PRICE and the quantity selector?
    Please try this css and adjust to suit.

    #top .woocommerce-variation-price {
    	padding-bottom: 20px;
    }

    6. There is a large green box that appears after clicking “Add to Cart”. How can I change the color of that box?
    Please try this css and adjust the colors to suit.

    #top div.woocommerce-message {
        border-color: #5b61af;
        background-color: #bbb5f1;
        color: #eeeeee;
    }

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

    Best regards,
    Mike

    in reply to: change layout search results #1359284

    Hey Antonio,
    Thanks for your question, I tested this solution and found that it still works.
    I used this css to hide the metadata and to make the featured image 300px x 215px square:

    #top.search-results .search-result-counter {
        padding: 0;
    }
    #top.search-results .search-result-counter img {
      border-radius: 0;
      height: 100%;
    }
    #top.search-results .search-result-counter {
        height: 215px;
        width: 300px;
        background: transparent;
    }
    #top.search-results .template-search.content .entry-content-wrapper {
        height: 215px;
    }
    #top.search-results #main .post-meta-infos {
       display: none;
    }
    #top.search-results .entry-content,
    #top.search-results .post-title {
    margin-left: 280px;
    }
    #top.search-results .post-entry {
        padding-bottom: 20px;
    }

    here was my results:
    2022-07-23_001.jpg

    Best regards,
    Mike

    in reply to: masonry is not displayed on the page #1359283

    Hi,
    Thanks for the login, the jQuery error that I see is: Uncaught TypeError: elem.getClientRects is not a function , my research points to this occuring when scripts written for an older version of jQuery are used with the newer version of jQuery.
    I see that you are using Enfold v4.4.1, which is old now compared to our current version 5.0.1, I recommend updating to v5.0.1 and see if this resolves.
    If you are concerned about how your site might behave after an update, try creating a staging site and upgrading it first.
    The easiest way to create a staging site is if your webhost has the one click staging site option, this is an option in most cPanels to create a staging clone of your site so we can test on it and you site will stay up and running. You can always ask your webhost to help you with setting this up if you want.

    Here are some screenshots of what it would look like:
    staging-1.jpg
    staging-2.jpg

    Best regards,
    Mike

    in reply to: Masonry blog filter not working #1359248

    Hi,
    Sorry that we were not able to help more, but glad Ismael was able to address this for you, 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: Blog tags minor meta – text wrap doesn't look good #1359246

    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: Footer/socket fixes #1359244

    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

Viewing 30 posts - 11,101 through 11,130 (of 34,910 total)