Forum Replies Created

Viewing 30 posts - 4,171 through 4,200 (of 35,007 total)
  • Author
    Posts
  • in reply to: Breakpoint for Flipbox Grid to be set to lower. #1434029

    Hey ausgesonnen,
    This seems to ba a duplicate thread, I offered a solution in your other thread, please review.

    Best regards,
    Mike

    in reply to: Table Header Loses Stying on Mobile #1434028

    Hi,
    Don’t be embarrassed, it can happen to the best of us :) 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: 2Timeline – 2 Different views #1434027

    Hi,
    Thank you for your patience and your screenshots, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #main .avia-timeline-vertical.av-milestone-placement-left .av-milestone-content-wrap {
        width: 44%;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Full transperent Cookie-Banner #1434025

    Hey northorie,
    Try starting with the theme options to have the cookie bar at the bottom of the page, and then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top .avia-cookie-consent.avia-cookiemessage-bottom {
    	bottom: unset;
    	left: unset;
    	margin: 0;
    	position: absolute;
    	top: 50%;
    	left: 50%;
    	transform: translate(-50%, -50%);
    	background-color: rgba(0,0,0,0.3);
    }
    #top .avia-cookie-consent .avia-cookie-consent-button {
    	display: block;
        width: 60%;
        margin: 10px auto;
    }
    #top .avia-cookie-consent p {
    	 display: block;
    	 padding-bottom: 20px;
    }
    #top .avia-cookie-consent-button {
    	 border-radius: 50px;
    }
    @media only screen and (max-width: 767px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 80%;
    	}
    }
    @media only screen and (min-width: 768px) { 
    	#top .avia-cookie-consent.avia-cookiemessage-bottom {
    	width: 25%;
    	}
    }
    

    the desktop results:
    Enfold_Support_4685.jpeg
    tablet:
    Enfold_Support_4687.jpeg
    mobile:
    Enfold_Support_4689.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: adjust font size and line height #1434023

    Hey jeel147,
    Thank you for your patience, to remove the pencil icon try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .fallback-post-type-icon {
    	display: none;
    }

    The space between each item is created by the padding, this css will reduce it in half, but feel free to adjust to suit.

    .bloglist-compact.post-entry {
        padding: 7px 0;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Table Header Loses Stying on Mobile #1434021

    Hi,
    I logged into your site and review your css and found the error, your comment error disabled a large section of css:
    Enfold_Support_4683.jpeg
    in the screenshot all of the green css is disabled my the misplaced comment. I corrected it for you, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Custom Field “Hide on sigle entry”, and Gravity Forms #1434019

    Hi,
    Thanks for the video, I’m not sure how your plugin works, but your test post is a Block Editor post on the backend, but if I publish it it seems to be a ALB post on the frontend, so I believe this causes an issue. Similar to if you try to switch editors after a post is created, this often causes errors with the content.
    If you don’t want the featured image to show you can use this css to hide it:

    .single-post .big-preview.single-big {
    	display: none;
    }

    This might be the best way to work around this.

    Best regards,
    Mike

    in reply to: Hi, i need some help for the sorting function #1434017

    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: blog page customize #1434000

    Hey rqn,
    If you want to hide the prev / next post navigation and add a new blog post navigation to the bottom of the posts, above the share buttons, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter( 'the_content', 'prev_next_post_nav' );
    function prev_next_post_nav( $content ) {
    	if ( is_singular('post') ) {
    	$content .= '<div style="clear:both;"></div>';
    	$content .= '<div class="prev-next-nav-container">';
    	$content .= '<div class="prev-nav">';
    	$content .= get_previous_post_link();
    	$content .= '</div>';
    	$content .= '<div class="next-nav">';
    	$content .= get_next_post_link();
    	$content .= '</div>';
    	$content .= '</div>';
    	return $content;
    	}
    	else {
    		return $content;
    	  }
    }

    Then add this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .prev-next-nav-container {
    	width: 100%;
    	height: 70px;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .prev-next-nav-container .prev-nav {
    	display: inline-block;
    	float: left;
        border-style: solid;
        border-width: 2px;
        border-radius: 0px;
        text-align: center;
        padding: 5px;
        text-decoration: none;
    }
    .prev-next-nav-container .next-nav {
    	display: inline-block;
    	float: right;
        border-style: solid;
        border-width: 2px;
        border-radius: 0px;
        text-align: center;
        padding: 5px;
        text-decoration: none;
    }
    .prev-next-nav-container .prev-nav:hover,
    .prev-next-nav-container .next-nav:hover {
    	background-color: rgba(0,0,0,.2);
    	color: #fff;
    }
    .prev-next-nav-container .prev-nav:hover a,
    .prev-next-nav-container .next-nav:hover a {
    	color: #fff;
    }
    .prev-next-nav-container .prev-nav a,
    .prev-next-nav-container .next-nav a {
    	display: inline-block;
    }
    .prev-next-nav-container .prev-nav:empty,
    .prev-next-nav-container .next-nav:empty,
    .single-post .avia-post-nav.avia-post-prev,
    .single-post .avia-post-nav.avia-post-next {
      display: none;
    }

    This will make post navigation buttons like this:
    Enfold_Support_4679.jpeg
    The buttons only have a light styling, you can adjust to suit.
    On Advanced Layout Builder posts they will show at the bottom of the post page:
    Enfold_Support_4681.jpeg
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Title in the bottom of the images #1433998

    Hi,
    The css that Rikard posted above is specific for the one image on your page, note the specific class .av-lsh4cogd-a3efe67e0d537b1ce26e3bade8c60c08.
    You can also add the page ID if you wish:

    .page-id-1076599 .av-lsh4cogd-a3efe67e0d537b1ce26e3bade8c60c08 .av-image-caption-overlay-center {
      vertical-align: bottom;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Sticky menu on mobile #1433997

    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: Table Header Loses Stying on Mobile #1433993

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

    #top .main_color .avia-data-table.avia_pricing_minimal.not-accepted th {
    background-color: red; color: white; text-align: left;
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Copy paste html complete of one page #1433992

    Hey carmen,
    Thanks for your question, if you use the Enfold builder, (ALB) Advanced Layout Builder, to build a page please don’t edit it with another builder, like the WP Classic Editor, Block Editor, etc. This can lead to issues, if you want to see the raw page shortcode please Enable the Avia Layout Builder Debugger and this will show a new area under the builder that shows the shortcode.

    Best regards,
    Mike

    in reply to: Sticky menu on mobile #1433991

    Hi,
    Perhaps you have an error in your css like a missing bracket, the css above doesn’t change the position, it only adds padding. Try removing the code above and add it to WordPress ▸ Customize ▸ Additional CSS, perhaps you should also check your custom css with a css validator for a missing bracket.
    If it still doesn’t work then remove it so your site works as before, and include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    in reply to: pass product url or permalink to contact form #1433962

    Hi,
    Try this javascript it will get url of the product page with the “more info” button when clicked and then redirect to your contact form page and add the original page url into a form field. For this example it adds the url into the message field, but you could add another field for the url so your visitors don’t write over the url.
    Try testing this javascript as is first by adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function custom_script_to_add_product_url_into_contact_form() { ?>
      <script>
    document.addEventListener("DOMContentLoaded", function() {
        var button = document.getElementById('woocommerce-catalog_custom_button');
    
        if (!!button) {
        button.removeAttribute('href');
        button.onclick = function() {
            redirectToForm();
        };
        }
    
        function redirectToForm() {
            var currentPageUrl = window.location.href;
    
            window.location.href = 'https://www.officineditrevi.com/en/contact-us-products-info/?source=' + encodeURIComponent(currentPageUrl);
        }
    
        var urlParams = new URLSearchParams(window.location.search);
        var sourceUrl = urlParams.get('source');
    
        if (sourceUrl) {
            var formField = document.querySelector('.cf7-txt-c');
            formField.value = sourceUrl;
        }
    });
    </script>
      <?php
    }
    add_action( 'wp_footer', 'custom_script_to_add_product_url_into_contact_form', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    If it then works you can try adding another field to your form and adjust the code above.
    I tested this by injecting it in the browser and it worked for the test page and form that you linked above, I assume that all of the buttons on your product pages are the same.

    Best regards,
    Mike

    in reply to: Breakpoint for Flipbox Grid to be set to lower. #1433959

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

    @media only screen and (max-width: 1190px) {
    #top .avia-icongrid.av-flex-cells.av-break-989 .av-icon-cell-item {
        flex: 1 1 100%;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Very well, 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: Table Header Loses Stying on Mobile #1433956

    Hey beverlystone,
    Thank you for the link to your site and the screenshot, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive .avia_responsive_table .avia-data-table tr:first-child th {
        display: block;
    }
    .responsive .avia_responsive_table .avia-data-table td:before {
    	display: none;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I’m not sure if WPML works with the Elementor elements, I assume that it does.
    I don’t recommend using Elementor, Enfold has it’s own built-in builder and typically other builders can cause a conflict.
    Unless there is anything else we can assist with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Comment Moderation Issue #1433953

    Hi,
    Thank you for the link to your site but the login gives this error:
    Unknown email address. Check again or try your username.
    Please check.

    When you say that the “comments are not being received” do you mean that you are not getting the email or they are not in the comment section of WordPress?
    Enfold doesn’t customize the WordPress comment function, so if you are not getting the email alerting that you have a new comment it could be that it is going to your email spam folder, or some webhosts use Apache SpamAssassin which will sometimes delete the spam before it goes to your spam folder.

    Your site should be using the email address for your domain and you should be using a SMTP plugin to send emails, like WP Mail SMTP, because the built-in WordPress PHP mail can trigger a spam rating. You should also not use a free email box like Gmail.
    Try setting this up and see if it helps, otherwise correct the login and install the plugin WP Mail Logging to help.

    Best regards,
    Mike

    in reply to: Link from last Table entry carrying over the next section #1433952

    Hi,
    Thank you for your patience and the screenshot, please include an admin login in the Private Content area so we can investigate further.

    Best regards,
    Mike

    in reply to: Saving elements as a template #1433951

    Hi,
    Thanks Guenni007, the Layout Builder Templates are only text in the database and probably not the cause for the directory site.
    Try going to your cPanel for your webhost and click on the Disk Usage
    Enfold_Support_4675.jpeg
    then scroll to the bottom were the directory tree is and expand it to show the directories and see which ones have the largest sizes:
    Enfold_Support_4673.jpeg
    then you and determine if there is anything that you can remove to free up space.
    Also look at your trash directory it could be holding a lot of old stuff:
    Enfold_Support_4677.jpeg

    Best regards,
    Mike

    in reply to: Hi, i need some help for the sorting function #1433948

    Hi,
    Your screenshot show the “title: attribute, this is shown by the browser and is not a theme feature, to remove this try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
          var links = document.querySelectorAll('a , img');
          for (var i = 0; i < links.length; i++) {
              var link = links[i];
              link.onmouseover = function() {
                  this.setAttribute("org_title", this.title);
                  this.title = "";
              };
              link.onmouseout = function() {
                  this.title = this.getAttribute("org_title");
              };
              link.onclick = function() {
                  this.title = this.getAttribute("org_title");
              };
          }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');

    Thanks to Guenni007 for this script.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.

    Best regards,
    Mike

    in reply to: Video controls #1433947

    Hey ausgesonnen,
    Mobile devices don’t have a mouse-over trigger, so this is not possible.

    Best regards,
    Mike

    in reply to: Embedding Portrait Video vs Landscape #1433946

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

    .avia-video {
      width: 31%;
      position: relative;
      overflow: hidden;
    }
    .avia-video video {
      object-fit: cover;
    }

    this will affect all of the videos on your site, so if you only want it on a few add a custom class to the videos and then adjust the css to match.
    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Try also adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-472 .avia-data-table.avia_pricing_minimal tr {
        padding-bottom: 20px;
    }
    }

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    Your welcome, 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: videos opening a small image first #1433940

    Hi,
    In your screenshot, do you mean the orange play button that is embeded in the image and the player play button, or perhaps it is from the iPhone.
    You say that you must click twice to play the video, I’m not seeing this on Android so I believe that the iPhone is treating the lightbox video as a auto playing video and blocking it.
    IOS is the most aggressive when blocking auto playing videos, you may be able to mute the video and then it would play when the lightbox opens, but you would still need to click again to enable the sound.
    You may need to not use the lightbox so IOS will allow the video to play on one click, unfortunately there is not a way to work around the mobile video blocks that the device forces.

    Best regards,
    Mike

    Hey sky19er,
    Thank you for your patience, I have found that all LayerSlider elements have this css:
    position: static !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;

    this prevents margin to be used in the way you wish, you will note they are using the !important;
    I tried writing some javascript to try to override this but it was not working. I also tested using a HTML LayerSlider element but it also gets the above rules.
    It seems like the LayerSlider is designed to place your content exactly were you want it and not use global width for the elements.
    I tried searching Google and the LayerSlider support forum but didn’t find anything helpful.

    Best regards,
    Mike

    Hi,
    Ok, please remove the last snippet and try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field instead:

    @media only screen and (max-width: 767px) {
    .responsive #top.page-id-472 .avia_responsive_table .avia-data-table tr:first-child th {
    	display: block;
    }
    .responsive #top.page-id-472 div .avia_responsive_table .avia-data-table td, .responsive #top.page-id-472 div .avia_responsive_table .avia-data-table th {
    	padding: 0;
    }
    }

    This is the expected results:
    Enfold_Support_4669.jpeg

    Best regards,
    Mike

Viewing 30 posts - 4,171 through 4,200 (of 35,007 total)