Hi Andrew,
If use only [first] or [first][/first], when I inspect the page, the shortcode is printed outside the tailor div.
The way I have found to solve this issues was add this:
function wp_first_shortcode()
{
ob_start(); // add this
echo "Hello, This is your another shortcode!"; // do something
return ob_get_clean(); // and this..
}
add_shortcode('first', 'wp_first_shortcode');
With this tow lines, the tailor preview works correctly and the shortcode prints inside the div.
Thanks anyway!
Hello, I have the same problem. I can upload and manage files, but Google Drive I can not see the files or folders, is this normal?
I use gmail for business, can this be related? I have no access to all folders in google drive.. maybe is this?
@kbrokaw you looked to have all permissions to view / edit in google drive?
Oh, thank you very much redywebs!