• Resolved j4jameel

    (@j4jameel)


    Hi,

    I am using nemus slider in one of my project to slide content from JOBs created as POST in wordpress. What i want is to show is a POST title, a short description of that post, a READ MORE link to see the full post, and link to see all the JOBS LISTING page to view all recent jobs.

    The slider works fine with the POSTS with images but in my case i dont have any image attached with my posts thus Nemus Slider does not show any content. Is there any fix?

    Thanks,
    Jameel

    http://wordpress.org/plugins/nemus-slider/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Viszt Péter

    (@passatgt)

    Hi!

    Thats interesting, looks like a bug. I’ll post an update soon. In the meantime, you can remove the conditional logic for a temporarly fix and you can update the plugin once its ready:

    Open wp-content/plugins/nemus-slider/nemus-slider.php, look for line 1226:

    <?php if(has_post_thumbnail()): ?>

    And change it to

    <?php if(true): ?>

    This is a bad solution, so only use it temporarily until the update is ready.

    Hi,

    seems like the Automated slides option is broken altogether. I can’t manage to make slides from posts or flickr.

    It’s not a must, but it would be nice to have!

    George

    Plugin Author Viszt Péter

    (@passatgt)

    A filter was created called nemus-slider-auto-slide-has-thumbnail, you can use the following code do enable slides without an image when using automated posts slides:

    add_filter('nemus-slider-auto-slide-has-thumbnail','enable_noimg_slides');
    function enable_noimg_slides() {
    	return true;
    }

    The update is not ready yet, but i will mark this as resolved for now, the update is coming in a couple of days.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can Nemus Slider be used for sliding post without any images?’ is closed to new replies.