kwon
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Draw Comments] How to Activate for Only One Post/Page?just released version 0.0.6, now the smilies “:), :lol:” should be converted to images again..
Forum: Plugins
In reply to: [Plugin:Draw Comments] Min/Max addition in pluginyeah maybe a paint bucket tool to fill areas 🙂
Forum: Plugins
In reply to: [Plugin:Draw Comments] Min/Max addition in pluginyeah, maybe i add it to the next version 🙂
I think the problem is that you use visibility, it should work with display none/block instead…
the drawing area is bigger than the image, because it’s a lot easier to
draw in a big area 🙂Forum: Plugins
In reply to: [Plugin:Draw Comments] Min/Max addition in pluginYou can disable the hook for my plugin, by going to Settings => Draw Comments and set the Option to “No” and than put this in your comments.php, before your submit buttons…
<script> function clickMeCSS(ID, text) { div = document.getElementById(ID); link = document.getElementById(text); link.innerHTML = (link.innerHTML == "Show Drawing Board") ? "Hide Drawing Board" : "Show Drawing Board"; div.style.visibility = (div.style.visibility == "hidden") ? "visible" : "hidden"; // if it doesnt work try div.style.visibility = true } </script> <a href="Javascript:clickMeCSS('drawingboard', 'drawingtext');" id="drawingtext">Show Drawing Board</a> <span id="drawingboard" style="visibility:hidden;"> <p><label>DrawBoard: (optional)</label> <?php echo getDrawArea().getColors(); ?> </p> </span>I hope it works out 🙂
Forum: Plugins
In reply to: [Plugin: Draw Comments] How to Activate for Only One Post/Page?Ok thanks for the info, i’ll try to figure it out as soon as possible.
Forum: Plugins
In reply to: [Plugin: Draw Comments] How to Activate for Only One Post/Page?Hi,
thanks for loving and using my plugin 🙂
I published a new version (0.0.4), which adds an option to not hook into do_action. Just go to Settings => Draw Comments and set the option to “No”. Now you have to embed the drawing area with
echo getDrawArea().getColors();andcomment_formis out of use.–
andreas