• I searched for a long time for a plugin that could play videos in the carousel (built using EmbedPress). Your plugin is doing a great job before the 1.9.4 update I had to roll back to 1.9.3

Viewing 5 replies - 1 through 5 (of 5 total)
  • I test from my machine and it’s working fine. make sure to refresh your cache after upgrading new version.

    If still it’s not working provide your site url so, we can inspect it.

    Thank you.

    Thread Starter coppoc

    (@coppoc)

    Unfortunately, this didn’t help. Here is the link to the site. The player should be placed immediately under the title (the embed block is located at the very beginning of each publication). Featured image is hidden by CSS.

    Hi ! I Got the same pb :
    then I roll back to my modified version (I had troubles formerly with my divi code, so I put the excerpt instead of content)

    Try to change in line 32 of post-carousel.php in carousel-slider/templates/public
    :
    $more_text = apply_filters( ‘carousel_slider_post_read_more’, ‘ …’, $post );
    $_content = apply_filters( ‘the_content’, $post->post_content );
    $_excerpt = wp_trim_words( $_content, $num_words, $more_text );

    to

    $more_text = apply_filters( ‘carousel_slider_post_read_more’, ‘ …’, $post );
    $_excerpt = wp_trim_words( wp_strip_all_tags( $post->post_content ), $num_words, $more_text );
    $_excerpt = $post->post_excerpt;

    That solve the pb of the latest upgrade that made my pages with post carousel hang !
    (the other options : like image carousel seems to be ok).

    ??

    Anyway, for the developper : thanks for your product it works perfectly ??
    (Always little things (like divi support, or post filters with variables or the category of the included page) to improve, but your job is really helpfull for most of situations ?? thanks again).

    Thread Starter coppoc

    (@coppoc)

    @brianearthcrealys The author spat on users. At this point, it has been a month since I switched the plugin to error mode at his request, so that he can look at the error. And silence…

    @coppoc
    Hi !
    Have you tried to change the code as I specified above ?
    May be, by default, that could solve your pb ?

    I’m not a pro programmer for WP so I did a little patch to solve this specific pb. For sure that could be better if the author would modify, it would be cleaner than my modification :'(

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘The update broke the carousel’ is closed to new replies.