Skip to content

Commit

Permalink
Fixed undefined constant
Browse files Browse the repository at this point in the history
  • Loading branch information
hallowichig0 committed Dec 27, 2019
1 parent c57048f commit 567fa17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions acf_slick_slider.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ function acf_slick_slider_enqueue() {

// styles
wp_enqueue_style( 'aaslider-slick-style', ASSlider__PLUGIN_URL . 'assets/slick/slick.css' );
wp_enqueue_style( 'asslider-venobox-style', AAGG__PLUGIN_URL . 'assets/venobox/venobox.css' );
wp_enqueue_style( 'asslider-venobox-style', ASSlider__PLUGIN_URL . 'assets/venobox/venobox.css' );
wp_enqueue_style( 'asslider-style', ASSlider__PLUGIN_URL . 'acf_slick_slider.css' );

// scripts
wp_enqueue_script( 'aaslider-slick-script', ASSlider__PLUGIN_URL . 'assets/slick/slick.js','','',true );
wp_enqueue_script( 'aaslider-venobox-script', AAGG__PLUGIN_URL . 'assets/venobox/venobox.min.js','','',true );
wp_enqueue_script( 'aaslider-venobox-script', ASSlider__PLUGIN_URL . 'assets/venobox/venobox.min.js','','',true );
wp_enqueue_script( 'asslider-js', ASSlider__PLUGIN_URL . 'js/acf_slick_slider.js','','',true );

}
Expand Down

0 comments on commit 567fa17

Please sign in to comment.