Title: Shortcode From Another Plugin
Last modified: June 12, 2017

---

# Shortcode From Another Plugin

 *  Resolved [creation85](https://wordpress.org/support/users/creation85/)
 * (@creation85)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/shortcode-from-another-plugin/)
 * Hello,
 * I was wondering if there is a way to get the shortcode of another plugin to work
   within your plugin. I am creating something and wanted to link a small section
   of it to the Pricing Tables plugin so that a colleague of mine can easy update
   the pricing information for the company. He would get too confused if he were
   to look at the overall design that I created within your plugin.
 * Thank you for any assistance that you can provide, I absolutely love your plugin
   and how insanely versatile it is.
 * Website working on is: [https://www.outnumberedcc.com/test/](https://www.outnumberedcc.com/test/)
 * Currently the only vehicle that works is a Ford Escort with the Exterior Option
    -  This topic was modified 8 years, 12 months ago by [creation85](https://wordpress.org/support/users/creation85/).

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [codepeople](https://wordpress.org/support/users/codepeople/)
 * (@codepeople)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/shortcode-from-another-plugin/#post-9221733)
 * Hello [@creation85](https://wordpress.org/support/users/creation85/),
 * I’m sorry, but it is not possible to include other shortcodes as part of form,
   because the majority of plugins include their own scripts and brake the form’s
   structure, an alternative would be insert the third party shortcode in the same
   webpage, and import the resulting code to the form, for example:
 * 1. Insert the third party shortcode into a “DIV” tag with an unique id:
 * `<div id="external_shortcode" style="display:none;">[shortcode_here]</div>`
 * 2. And then, insert a “HTML Content” field in the form with a piece of code similar
   to the following one:
 *     ```
       <div id="imported_shortcode"></div>
       <script>
       jQuery(document).one('showHideDepEvent', function(){
       jQuery('#imported_shortcode').html(jQuery('#external_shortcode').html());
       });
       </script>
       ```
   
 * and that’s all.
 * Best regards.
 *  Thread Starter [creation85](https://wordpress.org/support/users/creation85/)
 * (@creation85)
 * [8 years, 12 months ago](https://wordpress.org/support/topic/shortcode-from-another-plugin/#post-9222320)
 * Thank you very much! I was able to get it to do exactly what I wanted it to do
   using your solution.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Shortcode From Another Plugin’ is closed to new replies.

 * ![](https://ps.w.org/calculated-fields-form/assets/icon-256x256.jpg?rev=1734377)
 * [Calculated Fields Form](https://wordpress.org/plugins/calculated-fields-form/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/calculated-fields-form/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/calculated-fields-form/)
 * [Active Topics](https://wordpress.org/support/plugin/calculated-fields-form/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/calculated-fields-form/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/calculated-fields-form/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [creation85](https://wordpress.org/support/users/creation85/)
 * Last activity: [8 years, 12 months ago](https://wordpress.org/support/topic/shortcode-from-another-plugin/#post-9222320)
 * Status: resolved