I’m new to this blogging stuff. I’m using Inmotion hosting. They installed WordPress free. I chose the “Twenty Fifteen” theme. I installed and activated the bns-inline-asides plug-in. I added my first post and started typing. A few paragraphs later I typed
“I expect to be a gracious host [note](As usual, “host” . . . ) [/note] and” . . .
I haven’t yet published my post, because it doesn’t seem to be working. When is this change supposed to occur?
]]>Thanks for the great plugin! I was hoping to nest a note inside of a note, but it doesn’t seem to work. Something like:
[aside type="note" status="closed" show="details" hide="Hide %s"]
...content...
[aside type="note" status="closed" show="more details" hide="Hide %s"]
...more content...
[/aside]
[/aside]
Any suggestions on making this work?
]]>Hi Cais,
This is a really cool plugin. I installed it on my test server which uses a separate domain for plugins. This is causing the stylesheets to not be included.
echo '<link type="text/css" rel="stylesheet" href="' . home_url( '/' ) . 'wp-content/plugins/bns-inline-asides/bnsia-style.css" />' . "\n";
could be replaced with:
wp_enqueue_style( 'taxonomy-list-shortcode', plugin_dir_url( __FILE__ ) . '/bnsia-style.css', array(), 'your-version-number-here', 'screen' );
and then hook the function into wp_print_styles
Best,
-Mike