Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The forum ‘GRAND Flagallery WordPress plugin’ is closed to new topics and replies.
Forum closed. Use forum at Wordpress.org: Gmedia Support
Forum
I have been trying to develop my own theme – but despite everything else working, the gallery does not show.
Link: http://bu70.zim.com/history/
There’s a div. There’s even something inside that div. But even after reinstalling, reseting and other actions, it does not work.
Help?
you forgot to include jQuery to your theme. This should be done in functions.php file of your theme, like:
function mysite_scripts_load(){
// enqueue the script
wp_enqueue_script( 'jquery' );
}
add_action( 'wp_enqueue_scripts', 'mysite_scripts_load' );Much obliged~! I also had to deal with me de-registering my jQuery earlier on in the code. And now it works~! Huzza~!
