Want to know if SmartCrawl will properly index the pages created by Oxygen page builder.

I have a site on which I am using Oxygen page builder to build my pages. Oxygen page builder saves its shortcode in a separate table named “ct_builder_shortcodes”. I wanted to know whether SmartCrawl will properly index the pages created by Oxygen page builder.

For SEO Press, we have to add a code as follows to get the indexing done

add_filter( ‘seopress_content_analysis_content’, ‘sp_content_analysis_content’, 10, 2 );

/**

* Filter the analyzed content to add content from Oxygen editor.

* param string $content Current content in the WordPress editor.

* param int $id ID of the current entry.

* @return string Modified content.

*/

function sp_content_analysis_content( $content, $id ) {

// HTML of Oxygen’s content.

$cf = do_shortcode( get_post_meta( $id, ‘ct_builder_shortcodes’, true ) );

return $content . $cf;

}

Do we need to add anything like that to get the SmartCrawl working?

Please advise.

  • Adam
    • Support Gorilla

    Hello Giorgio

    I hope you’re well today!

    It should be fine as long as the content is properly generated on front-end. SmartCrawl is scanning content on front-end instead of reading posts directly from the database so as long as there’s a valid HTML markup generated along with the valid content, it should deal with it.

    In case you were experiencing any issues related to this, let us know please and we’ll investigate it.

    Kind regards,

    Adam