Title: Issue When Using The DIVI Theme
Last modified: November 11, 2017

---

# Issue When Using The DIVI Theme

 *  Resolved [luremarketing](https://wordpress.org/support/users/luremarketing/)
 * (@luremarketing)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/issue-when-using-the-divi-theme/)
 * Hello, love the plugin! Very easy to use. When using the structured data testing
   tool I noticed something though. I use the DIVI theme, which uses shortcodes 
   to structure the pages.
 * The description tag that is included using your plugin therefore starts with 
   a bunch of shortcodes before the actual description of the page. Is it possible
   to either filter out shortcodes when building the description tag or give users
   the option to override the description tag entirely?

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

 *  Plugin Author [Hesham Zebida](https://wordpress.org/support/users/hishaman/)
 * (@hishaman)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/issue-when-using-the-divi-theme/#post-9672333)
 * Glad you like the plugin.
 * There is a way to overcome that using a filter to override the description output,
   you can use something like:
 *     ```
       add_filter( 'schema_output', 'schema_wp_override_description_yoast_seo_56398955' );
       /*
       *	Override description in Schema plugin
       */
       function schema_wp_override_description_yoast_seo_56398955( $schema_output ) {
   
       	// override the values in schema output
       	$schema_output["description"] = 'Your own description goes here...';
   
       	// return our schema array
       	return $schema_output;
       }
       ```
   
 * Also, here is a couple of other ways to overcome this issue:
 * – [Using Post Meta Generator for Headline and Description](https://schema.press/docs/post-meta-generator/)
   –
   [Use Yoast SEO Title and Description in Schema Output](https://schema.press/docs/yoast-seo-title-description/)
 * I will also look at it when I have a chance, maybe I can fix this win the core.
 *  Thread Starter [luremarketing](https://wordpress.org/support/users/luremarketing/)
 * (@luremarketing)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/issue-when-using-the-divi-theme/#post-9673072)
 * Thanks for the detailed response! Using the Yoast Title and Description worked
   perfectly.
 *  Plugin Author [Hesham Zebida](https://wordpress.org/support/users/hishaman/)
 * (@hishaman)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/issue-when-using-the-divi-theme/#post-9673121)
 * Great!

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

The topic ‘Issue When Using The DIVI Theme’ is closed to new replies.

 * ![](https://ps.w.org/schema/assets/icon-256x256.png?rev=1750173)
 * [Schema](https://wordpress.org/plugins/schema/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/schema/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/schema/)
 * [Active Topics](https://wordpress.org/support/plugin/schema/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/schema/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/schema/reviews/)

## Tags

 * [description](https://wordpress.org/support/topic-tag/description/)

 * 3 replies
 * 2 participants
 * Last reply from: [Hesham Zebida](https://wordpress.org/support/users/hishaman/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/issue-when-using-the-divi-theme/#post-9673121)
 * Status: resolved