Forum Replies Created

Viewing 30 posts - 4,081 through 4,110 (of 35,007 total)
  • Author
    Posts
  • in reply to: Change all button sizes/font sizes site-wide #1434707

    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 all button sizes/font sizes site-wide #1434704

    Hi,
    The code I posted also has !important; so if I misunderstood and the css is woring for you now then go ahead and use it.
    Unless there is anything else we can assist with on this issue, shall we close this thread then?

    Best regards,
    Mike

    in reply to: Website for ceramicist #1434703

    Hi,
    I don’t have a very large Mac screen that some people use, so perhaps you would want to use a larger image, it is up to you though.

    Best regards,
    Mike

    in reply to: Adress fb and ig buttons in headerline #1434702

    Hi,
    Do you mean drag and drop in the backend? When you add new content won’t it go to the bottom? If you need to add something to the middle you can still drag more items there, it won’t be as handy as a color sections, but since you want to show the sidebar this seems like the best solution.

    Best regards,
    Mike

    in reply to: Advanced Custom Fields broken since update #1434701

    Hi,
    The CSS File Merging And Compression has not change, you can see our change log also I’m unable to reproduce any errors with ACF standard or pro. Typically this kind of error is due to another caching plugin that is minifying and compressing the the files a second time, as Ismael pointed out above.
    If you are using another plugin you can leave the theme option disabled or try the third option Use minified theme CSS files without merging.
    We will close as you have asked, thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Website for ceramicist #1434699

    Hi,
    There is not a max size, it depends on your screen size, you can upload very large images and they will only show within the height of the screen, below I link to a test page with a image that is 2560px x 1963px it shows with a height of 1030px on my screen, so the lightbox close betton works.

    Best regards,
    Mike

    in reply to: Change all button sizes/font sizes site-wide #1434697

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

    @media only screen and (max-width: 767px) {
    #top #wrap_all .avia-button {
      padding: 30px 30px 30px 30px !important;
      font-size: 20px;
    }
    }

    I’m looking at this button on your homepage as an example:
    Enfold_Support_4758.jpeg
    these are the correct buttons, right?
    If you have a missing bracket in your css somewhere it could cause issues for new css, so try adding the css to WordPress ▸ Customize ▸ Additional CSS and see if that makes a difference.

    Best regards,
    Mike

    in reply to: Adding child theme crashes #1434691

    Hi,
    Juergen thanks for sharing your solution.

    Best regards,
    Mike

    in reply to: Styles don’t load on iPhone #1434690

    Hi,
    Your site loads correctly on my iPhone and Android, perhaps you have data saver turned on, or another setting on your device.

    Best regards,
    Mike

    in reply to: Adress fb and ig buttons in headerline #1434687

    Hi,
    I did this for you already on the page that you linked to, please check, there is no color section.

    Best regards,
    Mike

    in reply to: Website for ceramicist #1434686

    Hi,
    The theme makes a few different sizes when you upload an image, one of them is 705px square and this is what this element typically uses, but you have the option to choose other sizes
    Enfold_Support_4754.jpeg
    You can add a cation, that by default is an overlay:
    Enfold_Support_4756.jpeg
    but in our documentation we provde a solution for it to be under the image.

    Best regards,
    Mike

    in reply to: Adress fb and ig buttons in headerline #1434681

    Hi,
    Perhaps your page should not use the color section, I adjusted please check.
    By default the sidebar is hidden for mobile, I enabled this for you in the theme settings:
    Enfold_Support_4752.jpeg

    Best regards,
    Mike

    in reply to: Adress fb and ig buttons in headerline #1434679

    Hi,
    I added another column with the widget element and disabled the sidebar for that page:
    Enfold_Support_4749.jpeg
    please check

    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: Shorten masonry blogpost excerpt length #1434675

    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,
    It seems to show correctly for me:
    Enfold_Support_4745.jpeg

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434672

    Hi,
    Glad that this helped, I didn’t find any other working solution, the manual excerpts are not as easy.

    Best regards,
    Mike

    in reply to: Enfold Woocommerce checkout page #1434671

    Hey Hawkthalas,
    Thank you for your patience but unfortunately we don’t have a way to disable Enfold from the checkout page alone. You can view the file \enfold\config-woocommerce\config.php to see the layout, but typically I find jQuery the easiest way to adjust, if you are having issues with it typically wrapping your script with this helps:

     
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    
      // script here
    
    
    }(jQuery)); 
    });

    note the addEventListener(‘DOMContentLoaded’ or using a

    setTimeout(function () {
        // script here
    }, 500);

    may help.
    If you explain what you want to achieve a add a link to your page we could help further.

    Best regards,
    Mike

    in reply to: Advanced Custom Fields broken since update #1434668

    Hi,
    Thanks for your feedback, I’m not sure that I follow along, but when I check your page the section seems to be correct now, did you need further help with this or shall we close this thread then?

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434667

    Hi,
    I added this to your child theme functions.php

    function custom_excerpt_setting(){
    ?>
    <script>
    (function($){
        function trimByWord(sentence,wordcount = 10) {
            var result = sentence;
            var resultArray = result.split(" ");
            if(resultArray.length > wordcount){
            resultArray = resultArray.slice(0, wordcount);
            result = resultArray.join(" ") + "...";
            }
            return result;
        }
        $(document).ready(function(){
            $('.av-masonry-entry-content').each(function() {
                 $(this).text(function(index, currentText) {
                    return trimByWord(currentText);
                 });
            });
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_excerpt_setting');

    please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434664

    Hi,
    How long? Do you want read more buttons?

    Best regards,
    Mike

    Hey heldentraeume,
    Perhaps some css is hiding the sections, I don’t have the premium version to test with, please include a admin login in the Private Content area so we can examine further.

    Best regards,
    Mike

    in reply to: Adress fb and ig buttons in headerline #1434661

    Hi,
    Thanks for the link to your post, when you use a color section it is full width so it pushs the sidebar down, so try adding a column in your color section with the widget element in it and then hide the sidebar on the post, if you wish we can adjust the post that you linked to this way so you can see, if you include a admin login in the Private Content area.

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434660

    Hi,
    Please note that this depends on many factors, please fully explanin what you are trying to achieve, are you going to be using manual excerpts on your items? Do you want a read more button? what limit do you want? Some of your items don’t use manual excerpts, so all of your items need to be the same.

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434656

    Hi,
    Now I see there are excerpts showing, so it seems that one of these snippets was working, right?

    Best regards,
    Mike

    in reply to: Shorten masonry blogpost excerpt length #1434653

    Hi,
    Thanks for the link to your page, it looks like each item is showing no words in the excerpt, only a “more” link, your titles show words but the word limits don’t work on titles, perhaps this is why it is not working as you thought.

    Best regards,
    Mike

    in reply to: Masonry – next, previous #1434652

    Hey Dave,
    Thank you for your patience, when you say the next and previous buttons cycle through all post categories do you mean the pagination of the masonry element of the post next and previous buttons on the side of the page?
    Enfold_Support_4743.jpeg
    the masonry element doesn’t control the post next and previous buttons, these are not limited to a specific category they cycle through all posts.

    Best regards,
    Mike

    in reply to: Hide / Show Section #1434650

    Hi,
    Sorry for the confusion, the triangle icon only hides the element in the backend, to hide a element in the frontend go to the element Advanced ▸ Responsive ▸ Element Visibility
    Enfold_Support_4741.jpeg
    If you would like to request a icon feature please use our Github Feature Request to place requests and follow them as the Dev Team reviews them.

    Best regards,
    Mike

    in reply to: Preview not working #1434649

    Hey Grosetheme,
    Please note that the WordPress preview option doesn’t always work correctly because WordPress doesn’t always load all of the theme files for every element in preview mode, unfortunately we can not override WordPress for this. We recommend opening your page in a new tab and after saving your changes switch tabs an reload the page to check.

    Best regards,
    Mike

    in reply to: Hide Alt Tags #1434648

    Hey annameis,
    Typically it is the title tags that show on hover, try this solution.

    Best regards,
    Mike

Viewing 30 posts - 4,081 through 4,110 (of 35,007 total)