Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1018951
    worldofjames
    Participant

    Is this possible at all?

    I like the look of the full width slider and it would be great to be able to employ one below the header and above the post title.

    Alternatively (and I know this is not a WordPress/ third-party plug-in support forum, but is there a plug in that can add categories to pages without conflicting with X?

    Many thanks in advance as ever…

    James

    site: http://www.liveeveryminute.com
    theme: ethos

    #1019182
    Prasant Rai
    Moderator

    Hello James,

    Thanks for writing in!

    To display revolution slider above blog post please walk-through following thread:

    https://community.theme.co/forums/topic/ethos-display-above-masterhead-slider-on-blog-index-page/#post-170742

    You can use Post Tags and Categories for Pages plugin to categorize pages:

    Add Category to Pages

    Here a online tutorial on how to implement the plugin:

    http://www.wpbeginner.com/plugins/how-to-add-categories-and-tags-for-wordpress-pages/

    Thanks.

    #1019363
    worldofjames
    Participant

    Thanks Prasant

    Before I make the code changes in the thread above, will the above allow me to set a different slider on every blog post? Or will it give me a global slider that will run throughout all?!
    It’s the first one I want to achieve (a different slider on every post)

    Many thanks
    James

    #1019486
    Lely
    Moderator

    Hello James,

    That is possible by using is_single().
    Just follow above suggestion but change this part:

      if (is_home()): 
        echo do_shortcode('[rev_slider video]');
      endif; 

    To this:

      if (is_single(1)): 
        echo do_shortcode('[rev_slider video]');
      elseif ( is_single(2) ) : 
       echo do_shortcode('[rev_slider video]');
      elseif ( is_single(3) ) : 
       echo do_shortcode('[rev_slider video]');
      else ( is_single(4) ) : 
       echo do_shortcode('[rev_slider video]');
      endif; 

    Change the number on this line with your own single post id is_single(1) and preferred revslider shortcode.

    Hope this helps.

  • <script> jQuery(function($){ $("#no-reply-1018951 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>