Title: Adding additional types question
Last modified: August 30, 2016

---

# Adding additional types question

 *  Resolved [kskerp](https://wordpress.org/support/users/kskerp/)
 * (@kskerp)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/adding-additional-types-question/)
 * Hi,
 * I am using the Page Builder plugin in conjunction with my Namaste! LMS plugin.
 * The Namaste! LMS plugin uses types called ‘Namaste_lesson’ and ‘Namaste_course’
   which are basically ‘posts’.
 * By editing lines 116&117 of the settings.php page to include the types:
    // Post
   types $defaults[‘post-types’] = array(‘page’, ‘post’, ‘namaste_course’, ‘namaste_lesson’);
 * I am able to edit the panels inside the ‘posts’.
 * I was wondering if you could give me any advice as to if there are any other 
   locations I should instantiate these types so that the page builder plugin works
   seamlessly?
 * [https://wordpress.org/plugins/siteorigin-panels/](https://wordpress.org/plugins/siteorigin-panels/)

Viewing 1 replies (of 1 total)

 *  Thread Starter [kskerp](https://wordpress.org/support/users/kskerp/)
 * (@kskerp)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/adding-additional-types-question/#post-6865204)
 * I did find a solution.
 * add_filter( ‘the_content’, ‘siteorigin_panels_filter_content’ );
 * This command located in ‘siteorigin-panels.php’ on line 854 was creating a default
   $priority =10.
 * By editing the add_filter command so that the $priority=1, the add_filter command
   that is called from the Namaste! LMS plugin is no longer having its permissions
   overwritten.
 * I edited the command to the following:
 * add_filter( ‘the_content’, ‘siteorigin_panels_filter_content’, ‘1’, ‘1’);
 * I thought I would leave this incase anyone is trying to use the Namaste plugin
   in connection with this page builder plugin.

Viewing 1 replies (of 1 total)

The topic ‘Adding additional types question’ is closed to new replies.

 * ![](https://ps.w.org/siteorigin-panels/assets/icon.svg?rev=2556869)
 * [Page Builder by SiteOrigin](https://wordpress.org/plugins/siteorigin-panels/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/siteorigin-panels/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/siteorigin-panels/)
 * [Active Topics](https://wordpress.org/support/plugin/siteorigin-panels/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/siteorigin-panels/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/siteorigin-panels/reviews/)

 * 1 reply
 * 1 participant
 * Last reply from: [kskerp](https://wordpress.org/support/users/kskerp/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/adding-additional-types-question/#post-6865204)
 * Status: resolved