
Originally Posted by
swguy
This is what you want:
$test = "A test string ABCDE";
$content .= $test;
I really hate to resurrect such an old post, but I cannot find a support thread for the Blank Sidebox module.. After reading through every possible "Blank Sidebox" post this is the ONLY one that comes CLOSE to what I am trying to do..
Trying to add the sign-up form for my client's mailing list to his store.. This code works on a defined page:
Code:
<?php
echo do_shortcode('[wysija_form id="1"]');
?>
This code does NOT work using the Editable Sidebox module (Editable Sidebox parses the PHP code effectively disabling it). So I'm now trying to figure out how to work this using the Blank Sidebox module.. Can any kind hearted person help me sort out how to add this to the Blank Sidebox??
I've tried:
Code:
$content .= echo do_shortcode('[wysija_form id="1"]');
AND
Code:
$content .= do_shortcode('[wysija_form id="1"]');
Neither worked