cytralskunk
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook Comments Notifier] Don't replace WordPress commentsThanks for the fast response! I see what you did there, but if I want to use the other Facebook comment plugin that I already have and just add email notifications with your plugin is that possible?
Forum: Plugins
In reply to: [Video.js - HTML5 Video Player for Wordpress] Add 5 second delay to autoplayNevermind I’ve got it now, turn autoplay off and wrap the play() in a setTimeout:
setTimeout(function(){
video_player.play();
video_player.posterImage.hide();
video_player.controlBar.show();
video_player.bigPlayButton.hide();
heading_links.hide();}, 5000);
Forum: Plugins
In reply to: [Social Count Plus] Facebook counter says "0"I had the same problem, but just disabled Quick Cache plugin on my site and the number is back.
Forum: Plugins
In reply to: [Simple Share Buttons Adder] "Share:000" instead of only "Share:"It looks like it’s showing the text from the counters in the title because the numbers are the first thing in the_content(); (when positioning the social counter above the content).
Forum: Fixing WordPress
In reply to: HTML Form adding BR after each hidden element…Just put the hidden <input> tags all on one line.