Post by arosesiej » Mon Nov 23, 2015 9:17 pm

I'm using the Google Base for Product Feed extension in OC 1.5.5.1.

I'm making a code modification that won't index products if they match a certain criteria. Therefore they won't display on "example.com/index.php?route=feed/google_base".

Testing it out, I made a tiny modification to the catalog/controller/feed/google_base.php right before the ($products as $product) loop. This is what I did:

Code: Select all

foreach ($products as $product) {

      if ($product['name'] !== 'Example Product' ) {

          .... add to index

     } else {

         .. don't add to index 

   }

}
And the test code worked, it didn't display the "Example Product". So I was happy with that, but still developing, I removed the code and replaced it with the original file. I look at the google_base URL and the product is still gone, even though I reverted it back. It loops through the products so shouldn't it index it again and display it? I cleared my browser cache and it's still gone. I even made sure that the file didn't have that condition in there anymore.

What is going on here? Why did I lose an item even after I reverted the code?

New member

Posts

Joined
Thu Jun 25, 2015 8:52 pm
Who is online

Users browsing this forum: No registered users and 15 guests