• 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

    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...
  2. 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>"; }...