Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1334214

    Add read more button on portfolio grid titles? Is this possible?

    Thanks

    #1334293

    Hey Sam_ADSeries,

    Thank you for the inquiry.

    You can use the avf_portfolio_title filter in the functions.php file to adjust the value of the portfolio title and append a read more text.

    add_filter('avf_portfolio_title', function($title) {
        return $title . "<span class='readmore'>Read more</span>";
    }, 10, 1);
    

    It might require a few css adjustments.

    Best regards,
    Ismael

    #1352978

    https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    I have done this and works great on my single product pages. However, when I look on mobile it make my text weird?

    #1353019

    Hi,

    Thank you for the update.

    Are you referring to the sidebar or the portfolio title? Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot. Thanks!

    Best regards,
    Ismael

    #1353039

    HI,

    Uploaded screenshot here:
    IMG 64F39EAB83C3 1
    IMG 64F39EAB83C3 2

    So I followed the instruction on this blog: https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220

    This worked perfectly to add a side bar to my individual product pages as before my product categories were below the product. Works perfectly on desktop/laptop: https://www.adseries.com/?product=avx430-android-8-1-player

    However, on mobile it appears that the product description is now pushed over to the left side of the page rather than stretching across.

    Hopefully with the screenshots this makes sense?

    Many thanks, Sam

    #1353227

    Hi,
    Thanks for the screenshots and the link, please try adding this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:

    @media only screen and (max-width: 767px) { 
    #main .sidebar_right .single-product-summary {
        width: 100%;
    }
    }

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

    Best regards,
    Mike

    #1353429

    Thank you Mike.

    Works perfectly.

    Best, Sam

    #1353431

    Hi,

    Great, I’m glad that you got it working. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

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