Hi All,
There a number of different things that can cause the shortcode popup not to work. Here are the first steps you should all try in order.
First, disable all plugins you have running and test the functionality again. If it works at this point you can being re-enabling them again one by one to find the offending plugin.
Second, make sure the theme and wordpress are both updated.
Third, ask your hosting provider to disable/modify the mod_security settings for your site as its causing a conflict. This is a common request specifically if you are using Host Gator so they should understand the request.
Fourth, Try:
Opening then modify
propulsion\framework\php\avia_shortcodes\tinymce\dialog.php
and
propulsion\framework\php\avia_shortcodes\preview-shortcode-external.php
search for following line to find the right code:
foreach ($paths as $path)
{
if(@include_once($path.'/wp-load.php')) break;
}
replace with:
foreach ($paths as $path)
{
if(@file_exists($path.'/wp-load.php')) {
include($path.'/wp-load.php');
break;
}
}
Finally, if you are still having issues let us know. So far the issue where we are unable to solve the problem has been limited to a small handful of people but if we can identify a common thread there is a greater chance we can find a fix.
If you need to use the shortcodes for creating a layout, create a new page in your site and paste this into your visual editor: http://pastebin.com/ZyDVH0Z4
Then save the page as a draft and use the shortcode layout as a reference since they all still work, just are not available as a pop-up.
Regards,
Devin