• 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

HomeCode

Code

New options
0 comments
CodeJaW HooksTutorials

How to add new items to Theme Options

In case of you want to add some options to Theme Options, you can use our filters in your Child Theme. Simply add this code to your child theme’s function.php function my_themeoptions_menu($menu){ $menu['myoptions'] = array('submenu' => 0, 'name' => 'My Options', "icon" => "jaw-icon-king"); return $menu; } //add section to left menu in Theme Options add_filter('jaw_themeoptions_menu',

  • March 18, 2016
  • 0
  • 108
test (2)
0 comments
CodeTutorials

How to Change Overlay Gradient Colors to Specific Post

Here is a quick hint! We are going to show you for Reviews (bear in mind that this can be use for e.g. jaw grid as well) Globally you can set these colors in Theme Options->Styling Options->Color Settings->Overlay Gradient Colors or Overlay Colors. Bear in mind that these colors are applied for each another post or

  • February 26, 2016
  • 0
  • 164
0 comments
CodeTutorials

Post excerpt shows less letters than is set.

This is matter of WordPress. In WordPress documentation you can find this words:   So how to enlarge that limitation? If you want to print longer excerpt, please add at the end of your function.php this code: function jaw_custom_excerpt_length( $length ) { return 100; } add_filter( 'excerpt_length', 'jaw_custom_excerpt_length', 999 );

  • February 24, 2016
  • 0
  • 71
custom_banner (2)
0 comments
Code

How to Add Another Custom Banner

please go to ..\plugins\jaw-widgets\widgets\ and open file jaw_banner_widget.php. You should see this protected $options = array( 0 => array('id' => 'custom_banner', 'description' => 'Banner', 'type' => 'select', 'values' => array( array('name' => 'Custom Banner 1', 'value' => '1'), array('name' => 'Custom Banner 2', 'value' => '2'), array('name' => 'Custom Banner 3', 'value' => '3'), array('name'

  • February 22, 2016
  • 0
  • 40
jaw-gallery-order (2)
0 comments
CodeTutorials

How to Change Items Order in JaW Gallery

If you want to change items order in JaW Gallery, we can tell you that it is possible but you will have to change something in 2 files. But do not worry, its a quite easy 😉 Basically you will have to change the order of items type. Default ordering is PHOTOS, VIDEO and EMBED. If

  • February 10, 2016
  • 0
  • 84
main (2)
0 comments
CodeRevoComposerTutorials

How to Create a Custom CSS Class and a Custom Title Link via RevoComposer

Have you known that you can create a custom css class and a custom link via RevoComposer’s element? It’s really simple how to style an element and link a title for your own needs. You can add a custom class for the whole element and custom link for the the title. We are going to show you how easy it is

  • November 18, 2015
  • 0
  • 213
ko (2)
0 comments
Bug HuntingCodeTutorials

How to Bug Hunting

If you encounter with some weird bugs in the theme (you know, e.g. Oh man, there is something wrong with my theme. Really weird, it worked yesterday but now? What the hell just happened?). We bet that you are familiar with it for sure 🙂 So we are going to type some hints, some really

  • November 16, 2015
  • 0
  • 767
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_gallery_after_list_photos

This action is used after list of photos in a single gallery function my_custom_gallery_after_listphoto() { echo '<p>I am right here :)</p>'; } add_action('jaw_gallery_after_list_photos', 'my_custom_gallery_after_listphoto'); The result can look like this: List of all hooks you can find HERE

  • October 5, 2015
  • 0
  • 65
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_gallery_before_list_photos

This action is used before list of photos in a single gallery function my_custom_gallery_before_listphoto() { echo '<p>I am right here :)</p>'; } add_action('jaw_gallery_before_list_photos', 'my_custom_gallery_before_listphoto'); The result can look like this: List of all hooks you can find HERE

  • October 5, 2015
  • 0
  • 46
wphooks
0 comments
CodeJaW HooksTutorials

Action jaw_gallery_after_main_photo

This action is used after main photo in a single gallery function my_custom_gallery_after_photo() { echo '<p>I am right here :)</p>'; } add_action('jaw_gallery_after_main_photo', 'my_custom_gallery_after_photo'); The result can look like this: List of all hooks you can find HERE

  • October 5, 2015
  • 0
  • 45
  • 1
  • 2
  • 3
  • 4
Copyright © 2016 jawtemplates - WordPress Design Studio Disable responsivity