• Home
  • Quick Start
    • Color Schemes
  • Documentation
    • Shortcodes
    • JaW Hooks
    • Screenshots of ThemeOptions
  • Tutorials
  • Forum
  • Contact
Log In

  • Home
  • Quick Start
    • Color Schemes
  • Documentation
    • Shortcodes
    • JaW Hooks
    • Screenshots of ThemeOptions
  • Tutorials
  • Forum
  • Contact

HomeShortcodeSlidersShortcode Tiles Slider
tileslider (2)

Shortcode Tiles Slider

  • admin
  • Posted in Sliders
0
SHARES
SHARESHARESHARESHARE
SHARESHARE

Tiles Slider Attributes

  • cats – Choose the categories you want to use in the carousel (ID). Doesn`t include child categories
  • tag__in – Choose the tags you want to use in the carousel (ID). Doesn`t include child tags
  • author__in – Choose the authors you want to use in the carousel (ID).
  • post__in – The specific posts you want to display (in format 52, 45, 87)
  • count – Number of posts in whole slider. (default 10)
  • post_in_slide – Set number of posts to be shown in one slide (default 3)
  • columns – Columns count (default 12)
  • slider_interval – Interval between slides (default 5000)
  • order  – Post order  (default desc)
    • asc – Ascendant
    • desc – Descendant
  • orderby – Order posts by these parameters (default date). For more info please follow this link
    • date
    • none
    • ID
    • date
    • author
    • title
    • modified
    • parent
    • rand
    • comment_count
    • most_liked
    • most_visited
  • letter_excerpt_title – Number of characters for post titles (default 60)
  • letter_excerpt – Number of characters for preview content (default 300)
  • sticky_posts – Use your sticky posts (default 0)
    • 1 – On
    • 0 – Off
  • blog_metadate – Show date in a post preview (default 1)
    • 1 – On
    • 0 – Off
  • blog_meta_author – Show author name in a post preview (default 0)
    • 1 – On
    • 0 – Off
  • blog_comments_count – Show comments count in a post preview  (default 1)
    • 1 – On
    • 0 – Off
  • blog_meta_category – Show category in a post preview  (default 0)
    • 1 – On
    • 0 – Off
  • blog_meta_like – Show likes in a post preview (default 0)
    • 1 – On
    • 0 – Off
  • blog_ratings – Show rating in a post preview (default 0)
    • 1 – On
    • 0 – Off
  • blog_readers – Show  in a post preview (default 0)
    • 1 – On
    • 0 – Off
  • blog_featured_post – If the post is Sticky, in meta will be shown “Featured post” (default 1)
    • 1 – On
    • 0 – Off
  • blog_category_inimage – Show category in an image (default 1)
    • 1 – On
    • 0 – Off
  • blog_comments_inimage – Show comments in an image (default 1)
    • 1 – On
    • 0 – Off
  • automatic_slide – Decide whether or not to allow moving a content of your carousel automatically (default 0)
    • true – On
    • false – Off
  • clickable_image –  Make post images clickable (default 2)
    • 0 – Off
    • 1 – Hyperlink
    • 2 – PrettyPhoto
  • disable_fadein – Descide if you want to show or hide fade in images description
    • 1 – on
    • 0 – off

Tiles Slider Appearance

Tiles Slider with default settings 

menu-widget6
How to add more Widget areas to menu.
You’ll have to change code of a JaW Menu plugin. Please open plugins\jaw-menu-gdaynews\menu\JawMenu.class.php between lines 17 – 22 $_widgets_area = array( 'widget-menu-area-1' => 'Widget menu area 1', 'widget-menu-area-2' => 'Widget menu area 2', 'widget-menu-area-3' => 'Widget...
wpseo2
WordPress SEO Plugin Cannot Find an Image on JaW Gallery Pag...
If you use WordPress SEO Plugin (do not forget to turn the built-in plugin off via theme options->general settings->Use Built-in SEO) you can notice that when you share an image, it takes randomly (most likely an image with the biggest size) generated image. The JaW Gallery does not use any po...
exclude3
How to Exclude Elements for Image Effects
If you do not want to use that image effect on some parts of a page, e.g. on sidebar (first post widget), you can simply exclude that element (image effect). Open your browser debug stuff and find its class Then go to ../themes/gdaynews/js/ and open file jaw.utils.php on line 104 and add there that ...
wphooks
Filter jaw_section_title
This filter is used in Section Bar. function my_section_title($title){ return " " . $title; } add_filter('jaw_section_title', 'my_section_title'); The result can look like this: List of all hooks you can find HERE
wphooks
Filter jaw_cropped_text
This filter is used in post box. It’s the cutted description and title text of your post. By standard way it looks like this. function my_cropped_text($text){ return strtoupper($text); } add_filter('jaw_cropped_text', 'my_cropped_text'); The result can look like this: List of all hooks you can...
wphooks
Filter jaw_excerpt
This filter is used in post box. It’s the description text of your post. By standard way it looks like this. function my_excerpt($excerpt){ return str_replace("e", "-SECRET-", $excerpt); } add_filter('jaw_excerpt', 'my_excerpt'); The result can look like this: List of all hooks you can find HE...
wphooks
Filter jaw_breadcrumbs_title
This filter is used in breadcrumbs title. By standard way is there just “Home”. function my_breadcrumbs_title($breadcrumbs_title){ return "My " . $breadcrumbs_title; } add_filter('jaw_breadcrumbs_title', 'my_breadcrumbs_title'); The result can look like this: List of all hooks you can fi...
new option
How to use your own options
We recommend to you to do all these changes in your Child Theme. Now we have Placed New Option in Theme Options. So how to bring it to life. Anywhere in your child theme just use this code to get the value: jwOpt::get_option('my_awesomeness', 'SOME_DEFAULT_VALUE'); so we can use it e.g. by this way:...
show
How to create own shortcode
Also, we recommend to you, to do all these changes in Child Theme. So we’ve got this shortcode from RevoComposer [jaw_my_element title="" ...  ]. Add this code to your child theme’s function.php function jaw_my_element_func($atts, $content=""){ $atts = shortcode_atts( array( 'title' => '', ...
show2
How to add element to RevoComposer
In case of you want to add some elements to RevoComposer, you can use our filters in your Child Theme. Simply add this code to your child theme’s function.php function my_revocomposer_elements($elements){ $myelements = array(); $myelements[] = array( "name" => "Awesome Shortcode",//name it "desc"...
show2
How to add element to RevoComposer
show
How to create own shortcode
new option
How to use your own options
wphooks
Filter jaw_breadcrumbs_title
wphooks
Filter jaw_excerpt
wphooks
Filter jaw_cropped_text
wphooks
Filter jaw_section_title
exclude3
How to Exclude Elements for Image Effects
wpseo2
WordPress SEO Plugin Cannot Find an Image on JaW Gallery Pag...
menu-widget6
How to add more Widget areas to menu.

[jaw_slider_3 cats="50,157,34,89,112,98" tag__in="" author__in="" post__in="" order="desc" orderby="date" count="10" slider_interval="5000" letter_excerpt="300" letter_excerpt_title="60" sticky_posts="0" clickable_image="1" automatic_slide="1" disable_fadein="1" ]

Tiles Slider with custom settings 

cta (2)
Shortcode CTA –...
  Call to Action Attributes button_text – Button’s name link – URL target – The target attribute specifies a wi...
gfonts (2)
Shortcode Google Fon...
Google Fonts Attributes content – Insert a content to be shown using the Google font specified in the Design tab font_family – I...
infobox (2)
Shortcode Info Box
Info Box Attributes panel_title – Title of your info box message_style – Select a type of message. Depending on the selected ite...
msgtext (2)
Shortcode Message Te...
Message Text Attributes message_style – Select a type of message. Depending on the selected item, the look of your message will vary s...
tabs (3)
Shortcode Tabs
Tabs Attributes style – Tab style light colored class – What tab is active active id – Random ID (whatever) Tabs Appearanc...
tabs (3)
Shortcode Tabs
msgtext (2)
Shortcode Message Te...
infobox (2)
Shortcode Info Box
gfonts (2)
Shortcode Google Fon...
cta (2)
Shortcode CTA –...

[jaw_slider_3 cats="116" tag__in="" author__in="" post__in="" order="asc" orderby="author" count="5" slider_interval="1000" letter_excerpt="140" letter_excerpt_title="20" sticky_posts="0" clickable_image="0" automatic_slide="1" disable_fadein="0" ]


List of All Shortcodes

If you have any issues, please give us a feedback

If you like GDayNews Theme, we would be very happy for stars rating :)

Related Posts

gridslider (2)
0 comments
Sliders

Shortcode Grid

fullwidthslider (2)
0 comments
Sliders

Shortcode Fullwidth Stripe Slider

stripeslider (2)
0 comments
Sliders

Shortcode Stripe Slider

stripeslider (2)

Shortcode Stripe Slider

fullwidthslider (2)

Shortcode Fullwidth Stripe Slider

Related Posts

gridslider (2)
0 comments
Sliders

Shortcode Grid

fullwidthslider (2)
0 comments
Sliders

Shortcode Fullwidth Stripe Slider

stripeslider (2)
0 comments
Sliders

Shortcode Stripe Slider

specialslider (2)
0 comments
Sliders

Shortcode Special Slider

Tags

  • shortcode
  • sliders
  • tiles
  • Tiles Slider
  • Was this Helpful ?
  • yes   no
Copyright © 2016 jawtemplates - WordPress Design Studio Disable responsivity