{"id":15695176,"date":"2022-05-31T11:33:10","date_gmt":"2022-05-31T11:33:10","guid":{"rendered":"https:\/\/wordpress.org\/support\/topic\/php-error-529\/"},"modified":"2022-05-31T11:33:10","modified_gmt":"2022-05-31T11:33:10","slug":"php-error-529","status":"publish","type":"topic","link":"https:\/\/wordpress.org\/support\/topic\/php-error-529\/","title":{"rendered":"PHP Error"},"content":{"rendered":"<p>In <code>shopping-feed\/src\/Product<\/code> there is a mistake in the code which makes the editing of products impossible when Yoast SEO is enabled<\/p>\n<pre><code>\n\tprivate function set_category() {\n\n\t\t$return = &#039;&#039;;\n\t\t$term   = ShoppingFeedHelper::wc_category_taxonomy();\n\n\t\tif ( class_exists( &#039;WPSEO_Primary_Term&#039; ) ) {\n\t\t\t\/\/ Show Primary category by Yoast if it is enabled &amp; set\n\t\t\t$wpseo_primary_term = new WPSEO_Primary_Term( $term, $this-&gt;id );\n<\/code><\/pre>\n<p>The problem is that this file is namespaced and the <code>WPSEO_Primary_Term<\/code> is not thus it&#8217;s looking for it in the local namespace (and not the global one) and obviously it doesn&#8217;t find it<\/p>\n<p><code>PHP Fatal error: Uncaught Error: Class &#039;ShoppingFeed\\\\ShoppingFeedWC\\\\Products\\\\WPSEO_Primary_Term&#039; not found in ...<\/code><\/p>\n<p>It needs a slash in front:<\/p>\n<pre><code>\n\tprivate function set_category() {\n\n\t\t$return = &#039;&#039;;\n\t\t$term   = ShoppingFeedHelper::wc_category_taxonomy();\n\n\t\tif ( class_exists( &#039;\\WPSEO_Primary_Term&#039; ) ) {\n\t\t\t\/\/ Show Primary category by Yoast if it is enabled &amp; set\n\t\t\t$wpseo_primary_term = new \\WPSEO_Primary_Term( $term, $this-&gt;id );\n<\/code><\/pre>\n<p>Or a <code>use \\WPSEO_Primary_Term;<\/code> at the top of the file<\/p>\n","protected":false},"template":"","class_list":["post-15695176","topic","type-topic","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/15695176","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic"}],"about":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/types\/topic"}],"version-history":[{"count":0,"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/topic\/15695176\/revisions"}],"wp:attachment":[{"href":"https:\/\/wordpress.org\/support\/wp-json\/wp\/v2\/media?parent=15695176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}