Skip to content

Instantly share code, notes, and snippets.

  • Check wp-config.php permission(Set 644)
  • Show error setting on .htaccess
php_flag display_errors on
  • Set debug mode on wp-config.php
  • Access by Firefox.(not Chrome)

About CSS unit

"line-height", "letter-spacing" should not be used "px" unit.
If you use "px" unit, it is not changed "automatically" when the font size was changed. like in PC or tablet or mobile.

http://idangero.us/swiper/api/

allowTouchMove: false can disable flick on PC & mobile.

new Swiper($(this).find('.gallery-top').get(0), {
  allowTouchMove: false
});

disable transition animation on CSS.

a {
  transition: none;
}