I am using plugin for Schema. I want to remove Schema in theme because plugin Schema and theme Schema are conflicting each other. Can you resolve this? I must use plugin, cant remove plugin, so suggest me a solution.
I Want Remove Schema for Articles. Am Using Schema Pro Plugin.
Website : Careeradda.com
Note : Now Disable Schema Plugin for temp..
Hi,
Removing the theme structured data would be possible if you remove it from the theme code only. Most of the structured data for the posts is located in this file
– https://www.screencast.com/t/6afOnwYmF
The theme contains the basic required data, like author, date published, date modified, reviews etc. Only manually could this be removed.
Thanks
Hi,
@TheRiz That file was moved in the tagDiv composer plugin – http://prntscr.com/nx0d2i
This happened after the recent theme updates, you could modify it there.
Thanks
Hi Simion – for the schema Review meta information – is it possible to change the name of the item review from the name of the blog post, to the text that is entered in the field with this class: “td-review-desc”
Looks like I would need to edit this line:
$buffy .= '<meta itemprop="name " content = "' . $this->title_attribute . '">';
What should I put to call “td-review-desc” instead?
-
This reply was modified 6 years by
TheRiz.
Are we to remove this?
/**
* returns the item scope for single pages. If we have an article or a review
* @return string
*/
function get_item_scope() {
//show the review meta only on single posts that are reviews, the rest have to be article (in article lists)
if ($this->is_review && is_single()) {
return 'itemscope itemtype="' . td_global::$http_or_https . '://schema.org/Review"';
} else {
return 'itemscope itemtype="' . td_global::$http_or_https . '://schema.org/Article"';
}
}
function show_item_scope() {
echo printf( '%1$s', $this->get_item_scope());
}
I am using this:
https://remove-schema.com/
Works with Yoast SEO
Hi,
Using reviews the schema will add the review attribute http://prntscr.com/phab65 -> http://prntscr.com/phaaih if I understand correctly you want to you want instead of review to have set the text from description, unfortunately this can be achieve only with custom work, sorry.
Thank you!
Hi @Simion C. – it seems like the schema.org for single post settings are now pulled from a different area, no longer here? – http://prntscr.com/nx0d2i
I updated to Newspaper 10 and am not using the Standard Pack. Modifying TD Composer Plugin does not seem to work.
I am not trying to remove schema, just modify it. Thanks
Thanks