Forum Replies Created

Viewing 30 posts - 7,321 through 7,350 (of 34,891 total)
  • Author
    Posts
  • Hi,
    Thanks for the feedback, I see that you are minifying your css & js with wprocket and with the theme, this double minifying and or merging can cause issues, I would recommend only using one or the other for minifying and merging.
    Please note that we ask that each thread stays “on topic” and different threads are used for multiple questions, this helps future users find solutions easier and multiple Moderators assist you with a solution, thank you for understanding.

    Best regards,
    Mike

    in reply to: Add background color to full width easy slider #1408174

    Hi,
    Thanks for the feedback, for mobile screens try adding this css:

    @media only screen and (max-width: 767px) { 
    #top.home #main #full_slider_1 {
        background-image: url(https://bastiontechnologies.com/wp-content/uploads/2023/02/slider-systems-engineering-1000x375-1.jpg);
    	background-size: cover;
    	background-position-x: center;
    	background-repeat: no-repeat;
    }
    }

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

    Best regards,
    Mike

    in reply to: tweaking hamburger mobile menu #1408172

    Hi,
    Thanks for the feedback, when I check the burger menu is centered in it’s element header_main, please see the screenshot in the Private Content area, the blue highlighting is the element.
    If you are not seeing this try clearing your browser cache, if I misunderstood please explain, a screenshot may help.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider Titel Position // Button Hover #1408171

    Hi,
    Thanks for the feedback, I was not able to login, but your font-color: #65877f; is not correct you should use color: #65877f; and your min-hight: 180px; is misspelled try: min-height: 180px;
    If you want the text in the button centered try using this css instead of yours:

    #top #wrap_all .main_color .avia-color-theme-color.avia-slideshow-button {
        background: rgba(255,210,62,.75);
        color: #65877f;
        padding: 20px;
        min-width: 300px;
        min-height: 180px;
        border-radius: 15px;
        font-size: 20px;
        line-height: 20px;
        align-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    Best regards,
    Mike

    in reply to: Irrevelant heading tags on page #1408168

    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

    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: function for truncate breadcrumbs not working #1408127

    Hi,
    Thank you for your patience and the link to your site, I was not able to view your Code Snippets plugin as I got the error: Du bist leider nicht berechtigt, auf diese Seite zuzugreifen. but I was able to disable the plugin.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor or add it to your Code Snippets plugin as a php snippet:

    function truncate_breadcrumb_trail_end() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    var elem = $(".breadcrumb-trail .trail-end");
    if(elem){
        if (elem.text().length > 20)
                elem.text(elem.text().substr(0,20)+'...');
    }
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action( 'wp_enqueue_scripts', 'truncate_breadcrumb_trail_end', 99 );

    This will truncate the breadcrumb trail-end to 20 characters:
    Enfold_Support_2129.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: Fill fold with whitespace only if there’s room #1408100

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

    .html_stretched #top.home #wrap_all {
        height: 100vh;
    }
    #top.home #socket {
    	position: fixed;
    	bottom: 0;
    	width: 100%;
    }

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

    Best regards,
    Mike

    Hi,
    Thank you for your patience and the link to your site, I assumed that you wanted the creation date and last modified date in a single line so I added this to your child theme functions.php:

    function add_postdate_after_single_post_titles() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    	var publishdate = '<?php echo get_the_time(get_option('date_format'));?>';
    	var modifieddate = '<?php echo get_the_modified_date( get_option('date_format'));?>';
    	$('#top.single-post').each(function () {
    		$('<time class="date-container minor-meta updated">Publish Date: ' + publishdate + ' Modified Date: ' + modifieddate + '</time>').css({'top':'-25px','position':'relative'}).insertAfter('.blog-categories.minor-meta');
    	});	
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'add_postdate_after_single_post_titles');

    and now both are showing:
    Enfold_Support_2127.jpeg

    Best regards,
    Mike

    in reply to: Burger Menu open delay on product pages #1408098

    Hey El,
    Thank you for your patience, on my Android device I notice that the blue messager icon doesn’t load on page load and clicking the burger icon has a delay, but after closing the menu the blue icon shows and then reopening the burger menu is much faster.
    But if you scroll down on the page first until the blue icon shows and then open the menu it is normal.
    So I believe this is related, try allowing the blue icon to load on page load and check the menu then.

    Best regards,
    Mike

    Hey BeeCee,
    Thanks for your patience and the link to your site, if I try to go to your snippets plugin I see this error: Sorry, you are not allowed to access this page.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor, or in your snippets plugin as a php snippet:

    function custom_script_move_category() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
    $( '.single-post .entry-content-header' ).each(function() {
    $( this ).find( '.blog-categories.minor-meta' ).insertBefore( $(this).find('h1.post-title.entry-title ') );
    $( this ).find( '.blog-categories.minor-meta' ).contents().filter(function(){ return this.nodeType == 3; }).remove();
    $( this ).find( '.post-meta-infos .text-sep:last-child' ).css({'display':'none'});
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action( 'wp_enqueue_scripts', 'custom_script_move_category', 99 );

    Best regards,
    Mike

    in reply to: Critical error after updating to Enfold 5.5 #1408096

    Hi,
    Thank you for your patience, your two pages on your staging site seem to be working correctly and I don’t see any errors, try making a backup of your live site and update to see if you get the same results.

    Best regards,
    Mike

    in reply to: team member picture less high #1408094

    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 Link to a Lightbox (?) #1408093

    Hi,
    Thanks for your patience, I checked your page and the images and buttons both open the iframe lightbox for me in Windows on Chrome.
    It looks like you are using a image with a link instead of the column link and a button link, this is probably the best approach, I imagine the issue you were having was using a button with a link inside a column link, this would create a link inside a link which would cause a conflict.
    Please let us know if we should cloase this thread or if you want to try something else.

    Best regards,
    Mike

    Hey davidv126,
    Thank you for your patience, try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enabling Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and then clear and disable any caching plugins.
    Then clear any server caching or CDN that you may have, and clear your browser cache, Please note that Safari can be hard to clear the cache, often you 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.
    This should resolve the error, if it does then try enabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and check if it is still solved, it should be. If not then please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Portfolio page always scrolls back to the top #1408089

    Hi,
    Glad to hear that you have found a workaround, 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: Add a widget on a mobile menu at the button #1408088

    Hi,
    Thank you for your patience, I saw your widget area with your name and address and the text below it with the three links, and as I understood you wanted this to show in your mobile menu below the other menu items. I thought the best way would be to add these as menu items, so I added your name, email, address to one custom menu item and made the link your mailto email link and added line breaks between the items. I thought you would like this text to be a little smaller to distinguish it from the other menu items. I also added the other three links below it and three separate menu items. Then I added this css to your Enfold Theme Options ▸ General Styling ▸ Quick CSS field

    @media only screen and (max-width: 767px) { 
    	#av-burger-menu-ul .menu-item-22286 .avia-menu-text,
    	#av-burger-menu-ul .menu-item-22287 .avia-menu-text,
    	#av-burger-menu-ul .menu-item-22288 .avia-menu-text,
    	#av-burger-menu-ul .menu-item-22289 .avia-menu-text {
    		font-size: 18px;
            line-height: 18px;
            display: inline-block;
    	}
        .html_av-overlay-full #top #wrap_all #av-burger-menu-ul .menu-item-22287,
    	.html_av-overlay-full #top #wrap_all #av-burger-menu-ul .menu-item-22288,
    	.html_av-overlay-full #top #wrap_all #av-burger-menu-ul .menu-item-22289 {
            line-height: 18px;
            padding: 0;
    	}
    }
    @media only screen and (min-width: 768px) { 
    	#top #wrap_all #avia-menu #menu-item-22286,
    	#top #wrap_all #avia-menu #menu-item-22287,
    	#top #wrap_all #avia-menu #menu-item-22288,
    	#top #wrap_all #avia-menu #menu-item-22289 {
            display: none;
    	}
    }

    this will hide this on desktop and show on mobile, please clear your browser cache and check and let us know if this is what you had in mind.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Fullwidth Easy Slider Titel Position // Button Hover #1408086

    Hi,
    Thanks for your patience, as I understand you would like the caption of your homepage slider to be more to the top, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top.home .avia-fullscreen-slider .slideshow_caption * {
        vertical-align: top;
    }
    #top.home .avia-fullscreen-slider .avia-caption-title br {
    	display: none;
    }

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

    Best regards,
    Mike

    in reply to: Paid for support and not getting answers #1408085

    Hey Dustin,
    Thank you for your patience, I have replied to your original thread, but unfortunately I don’t have experience with pinterest and I’m not sure why the plugin is not working, but I have asked the rest of the team if they have any advise and we will follow up in the thread.
    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    Hey Dustin,
    Thank you for your patience, I have replied to your original thread, but unfortunately I don’t have experience with pinterest and I’m not sure why the plugin is not working, but I have asked the rest of the team if they have any advise and we will follow up in the thread.
    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    in reply to: Pinterest Tag Checkout not firing #1408083

    Hi,
    Sorry for the late reply I’m not sure that I understand this plugin, and I don’t have experience with pinterest, but I found that the tags not working is a common issue on their support page: https://wordpress.org/support/plugin/pinterest-for-woocommerce/
    and I found their documentation:

    Pinterest for WooCommerce

    When I check your page I don’t see any errors in your page so I’m not sure why the plugin is not working, but I have asked the rest of the team if they have any advise.

    Best regards,
    Mike

    in reply to: center social icons mobile #1408082

    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: default editor and avia layout #1408081

    Hey Martin,
    Thank you for the link to your site on your homepage I see that you are using the Advanced Layout Builder, and in the bulider you have one text element, you can use many more elements on your page like columns and images, please see the video Build a web page with Advanced Layout Builder in our documentation to see how it works.

    Best regards,
    Mike

    in reply to: Portfolio page always scrolls back to the top #1408080

    Hey Swarez,
    Thanks for the link to your page, I believe that if you used a different element than the masonry element this would work for you but the masonry element builds the grid after the page load so the height of the page changes. Try watching the scroll bar when you click to a page and then use the back button, on load the page shows the scroll bar scorlled as before but then the masonry element builds the grid changing the page height.
    Try using the Blog element with the grid layout showing your portfolio items and see if that helps, in my test on my demo pages scrolling to a place on the page and then clicking to another page and then back again the page returns the same place. My research on stackoverflow.com says: If the content is loaded after page “load” event firing, then the back button would not take you back to the position you were. Because the browser scrolls before the ‘load’ event. and this is the case with the masonry element.
    The Page scroll to id plugin suggests it may help with this, but I tend the think it doesn’t mean in this situation, but you could try it or perhaps a different plugin.
    I think changing your element is probably the best option.
    I note that your masonry element loads slowly for me, if you are using a plugin to lazy load try disabling it to see if it will load faster, this may help some.

    Best regards,
    Mike

    in reply to: Portfolio sorting options #1408078

    Hey fabienneRedUmb,
    Thanks for your patience but the portfolio grid will only sort by category, I’m not aware of a search and filter plugin will achieve this but, there could be one.

    Best regards,
    Mike

    Hi,
    I believe this is the solution for both.

    Best regards,
    Mike

    Hi,
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function remove_lightbox_from_iconlist() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $("a.iconlist_icon").addClass("noLightbox").removeClass("lightbox-added");
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'remove_lightbox_from_iconlist');

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

    Best regards,
    Mike

    Hey davidv126,
    It sounds like your issue is similar to this thread, please try the solution to see if it helps.

    Best regards,
    Mike

    Hey Fieldtripper,
    Thanks for the login, when I checked you pages the Advanced Layout Builder seemed to work fine, I checked your site health tab and the only thing I saw that you could improve is the PHP max input variables yours is set to 3k but you could try 10k, try asking your webhost to help you set this on the server.

    Best regards,
    Mike

    in reply to: Lightbox #1408069

    Hi,
    Thanks for the links to your examples, this is my review of them:
    This site popup under OUR WORK doesn’t show a full page only a little and uses an element like our ajax portfolio
    This site under OUR PORTFOLIO doesn’t use popups, it links to a new page.
    This site popup under WORKS doesn’t show a full page only a single image and a little text in a element on the page just like the text box solution I created for you earlier.

    I changed the /popup-example/ page for you so you can see how the iframe popup works, first you use the link setting in your image and link to your other page with this at the end ?iframe=true then you need to disable the header and footer on the other pages and add css to make the lightbox as large as possible, I did this for you, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 7,321 through 7,350 (of 34,891 total)