• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.

Search results

  1. R

    RESOLVED How to use JS snippet

    Thanks, although echo do_shortcode("[wbcr_js_snippet id= '483']"); works fine in a template too. Why is it wrong?
  2. R

    RESOLVED How to use JS snippet

    I'm trying to create a javascript snippet but it doesn't seem to want to work. I created a snippet that just has: (function(){ document.write(5+6); console.log("help"); })(); I have a shortcode of [wbcr_js_snippet id="483"]; which I place in a custom page: <?php /* Template Name...
  3. R

    RESOLVED Unable to get woody snippets to work

    Hi, Thanks for getting back. I was able to resolve the issue. I was confused by the play and stop button for the snippet under the status column. All's good. Can I use Woody snippets to create a footer that has a form and submit button in it? Is there an example or tutorial?
  4. R

    RESOLVED Unable to get woody snippets to work

    Thanks, I tried that but it still doesn't work. Are you SURE woody snippets will run in a STATIC PAGE and if so how?
  5. R

    RESOLVED Unable to get woody snippets to work

    I'm trying to use woody snippets plugin in wordpress but can't get it to work. Here's what I've done: downloaded and activated woody snippets created the following php snippet: <?php add_action('init','print2'); function print2($str){ $str = str_replace(",","<br>",$str); print $str . "<br>"; }...