Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author JoomUnited

    (@joomunited)

    Hi,

    I’m sorry there is no option yet to remove the three last dots.
    And unfortunately I don’t think we can find a css trick to help you in this case.

    Cheers

    Thread Starter marcinszkodzinski

    (@marcinszkodzinski)

    Maybe php?

    Plugin Author JoomUnited

    (@joomunited)

    The problem is that with php you will have to modify directly the extension files and any update of WP Latest Posts will overwrite the modifications.

    Anyway in the file /wp-content/plugins/wp-latest-posts/inc/wplp-front.inc.php you can search all occurrences of
    $text .= "...";
    and replace it by
    //$text .= "...";

    Make sure to do a backup first.

    Cheers

    Thread Starter marcinszkodzinski

    (@marcinszkodzinski)

    Thank you for help and thank you for great plugin.

    Plugin Author JoomUnited

    (@joomunited)

    I’m glad your issue is addressed!

    If you like the plugin it would be cool to drop us a review, it really helps us especially our support team here. Direct review link: https://www.ads-software.com/support/plugin/wp-latest-posts/reviews/

    Thanks a lot!

    Cheers,

    Thread Starter marcinszkodzinski

    (@marcinszkodzinski)

    5 stars for you!
    Unfortunetly, I have one more problem.
    My posts in the slider are uneven.
    One post has a higher height than the other.
    Have a look:

    https://polskasprawa.pl

    Can you help me?

    Plugin Author JoomUnited

    (@joomunited)

    Thanks for the 5 stars.

    It will be a little bit difficult to do this and you may have other adjustments to do that.

    First you have to add some javascript to make elements to the same height. It’s not possible to do that in css:

    jQuery(document).ready(function($) { 
    
        var heights = $(".wplp_listposts li li .insideframe").map(function() {
    	return $(this).height();
        }).get(),
    
        maxHeight = Math.max.apply(null, heights);
        console.log(maxHeight);
        $(".wplp_listposts li li .insideframe").height(maxHeight);
    });

    Then change your css

    .insideframe {
        padding-top: 50px;
    }

    to

    .insideframe {
        margin-top: 50px;
    }

    And add this css

    .insideframe .insideframe {
        background-color: #FFF;
    }

    It should do the trick

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Excerpt – …’ is closed to new replies.