SNIP

I don't know what I did, but I simply editing a post to add a second photo, and then the featured gallery stopped working. I have went into style.css and reuploaded the default code and still not working. Please help.
I did a check on firebug althrough i really dont know what im doing and came back with this

Dani AI

Generated

later reported the problem was solved. When a featured gallery suddenly stops after a minor content change the usual culprits are JavaScript/CSS conflicts, duplicate library loads, or a plugin enqueueing assets incorrectly. The checklist below is a compact, practical guide that helps isolate and fix the root cause without guesswork.

Recommended steps:

  • Inspect the browser console for errors (Uncaught TypeError, ReferenceError, or 404s) to see which file or line fails.
  • Temporarily disable all plugins and test; re-enable them one at a time to find the conflict.
  • Switch to a default theme (Twenty*) to rule out theme-side interference.
  • Clear any cache/minifier (server, plugin, CDN) after changes; minification can hide ordering issues.
  • Search plugin/theme code for wp_enqueue_script/wp_enqueue_style or duplicate jQuery inclusions; correct handles and dependencies are essential.

Quick test snippet to temporarily dequeue a suspect handle (add to the child theme functions.php, then remove when done):

add_action('wp_enqueue_scripts', 'dw_test_dequeue', 100);
function dw_test_dequeue() {
  // replace 'plugin-script-handle' with the actual script handle found in the plugin
  wp_dequeue_script('plugin-script-handle');
  wp_dequeue_style('plugin-style-handle');
}

Enable WordPress debugging only on a staging site (WP_DEBUG, WP_DEBUG_LOG, SCRIPT_DEBUG) to capture errors. After isolating the offender, either update/fix the plugin (proper enqueueing, dependency lists, no hard-coded jQuery) or contact the plugin author with the console log and exact steps that reproduce the issue.

nevermind i found my problem not that anyone cared. The flowplayer for wordpress plugin stopped my featured gallery from working, but hey thanks for all the help

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.