Hello, According to wordpress, This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
When do you suspect it will be updated next?
Thank you
]]>In shopping-feed/src/Product
there is a mistake in the code which makes the editing of products impossible when Yoast SEO is enabled
private function set_category() {
$return = '';
$term = ShoppingFeedHelper::wc_category_taxonomy();
if ( class_exists( 'WPSEO_Primary_Term' ) ) {
// Show Primary category by Yoast if it is enabled & set
$wpseo_primary_term = new WPSEO_Primary_Term( $term, $this->id );
The problem is that this file is namespaced and the WPSEO_Primary_Term
is not thus it’s looking for it in the local namespace (and not the global one) and obviously it doesn’t find it
PHP Fatal error: Uncaught Error: Class 'ShoppingFeed\\ShoppingFeedWC\\Products\\WPSEO_Primary_Term' not found in ...
It needs a slash in front:
private function set_category() {
$return = '';
$term = ShoppingFeedHelper::wc_category_taxonomy();
if ( class_exists( '\WPSEO_Primary_Term' ) ) {
// Show Primary category by Yoast if it is enabled & set
$wpseo_primary_term = new \WPSEO_Primary_Term( $term, $this->id );
Or a use \WPSEO_Primary_Term;
at the top of the file
Hello,
I have setup this plugin as per guidelines provided here. I have two issues I am not able to import catalog to shopping feed and I get an error on generated feed.
This page contains the following errors:
error on line 3 at column 6: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.
When I run import from shopping feed I get an error “No products were found in your feed.”
Help appreciated.
Thanks
Bonjour,
Le feed ne fonctionne pas. Il génère une erreur XML : https://preprod.e-zicom.com/shopping-feed/
“This page contains the following errors:
error on line 2 at column 6: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.”
Hi,
Impossible de passer la première étape de configuration du plugin.
Answer after launch: The site is experiencing technical difficulties. Please check the site administrator account mailbox for instructions.
Where can the problem come from?
Cordialy
David