Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1081043

    Good evening. I need to remove the “all” entry from the masonry and increase the font size. Is it possible to do this? Thanks to all
    I enclose screenshots for clarity.
    Basically I have to remove the selected item and increase the font of everything else

    https://snag.gy/0K4UiQ.jpg

    #1081761

    Hey minogig,

    Please give us the link to your website.

    Best regards,
    Victoria

    #1081787

    The link is: http://isaporidelcancello.it/
    I state that the site does not yet have the ssl certificate installed because I still have to complete some modifications

    #1083334

    Hi,

    The site is using a different theme. Is that the old site? Please provide a link to the actual page with the issue.

    Best regards,
    Ismael

    #1083510

    good morning. I’m sorry, it’s true. The url still points to the old site,
    I hadn’t modified the DNS. You can try now thanks :).

    #1084261

    Hi minogig,

    https://cl.ly/b5cf6a6c7638 I am not seeing the “All” word. Did you manage to hide it?

    Best regards,
    Victoria

    #1086128

    Good morning.
    Finally I have no problem putting the version to edit online. I apologize if I took this ticket to the long but I could not provide the site to be modified as the customer still needed the version to be deleted. The request I made earlier remains, of which I have also attached a screenshot. I communicate the login credentials as an administrator if needed

    https://snag.gy/L8padr.jpg

    I need:
    – Delete the “All” entry
    – Increase the font size of the Masonry category index
    – Increase the space between one product and another as shown in the arrow shown in the screenshot.

    I remain available for any clarification and I thank you in advance for the support
    Best regard’s
    Mino

    #1086214

    Hi Mino,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    a[data-filter="all_sort"], a[data-filter="all_sort"] + span.text-sep.salse_sort_sep.avia_show_sort {
        display: none;
    }
    .inner_sort_button {
        font-size: 14px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1086454

    Good morning. I tried to insert the code both in Quick Css and through custom.css file but unfortunately no change happens.

    Screenshot:
    https://snag.gy/njkW9F.jpg
    https://snag.gy/fC7OHI.jpg

    #1087390

    Hi,

    Thanks for the update.

    The “All” or “Tutto” sort text is no longer visible, so the css code is working. You can add space between the masonry items, but you have to decrease the size of the images.

    .av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry {
        padding: 20px;
    }

    Try to set the columns to 4 if you prefer larger masonry images.

    Best regards,
    Ismael

    #1087738

    Good morning.
    And thank you for your availability.
    You are always very kind. It’s all very well just that I have this problem now. It is true that the word “tutto” no longer exists, but despite the first item being “jams” the first query I extract is the one referring to “Tutto”:
    I would like instead that being the first item “jams” I should see the list of jam-related products, as if it were selected, and not all products.
    I hope I was clear.
    Thank you all

    #1088465

    Hi,

    Thanks for the update.

    Do you want all items from the “jam” category to display on initial load? Try this script in the functions.php file.

    add_action('wp_footer', 'ava_trigger_category_sort', 9999);
    function ava_trigger_category_sort() {
        ?>
        <script>
        (function($) {
            $('.confetture_sort_button').trigger('click');
        })(jQuery);
        </script>
        <?php
    }

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • You must be logged in to reply to this topic.