Jump to content

can anyone build me the correct function for this.


Orionsbelter

Recommended Posts

i have found a free script that allows me to create an xml data feed file for googles products search however i don't know how to build the function

 

getProducts

 

to get the product info from my table can anyone help?

 

// Gets the array of product data, replace this with the correct function for your CMS...
$products = $productClass->getProducts('subcategory,category,name');
// Now loop through each product
foreach ($products as $key => $value) {
// Check Stock level and set the required stock msg, again replace this with the correct function for your CMS...
$stockMsg = 'in stock';
// Swap your category names for the relevent Google Taxonomy Term detailed in their documentation
if ($value['subcategory'] == '19')
{
$googleCategory = '> Billiard Balls';
}
else if ($value['subcategory'] == '20')
{

It's code that was found online, so this would be the more appropriate location. I would have moved it to the "please write free code for me" forum, but that doesn't exist. :P

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.