tradefurniturecompany / google-shopping

An integration between Google Merchant Center and Magento 2
https://upwork.com/fl/mage2pro
0 stars 2 forks source link

Setup an automatic integration between Magento and Google Merchant Center #1

Open dmitrii-fediuk opened 4 years ago

dmitrii-fediuk commented 4 years ago

https://devdocs.magento.com/extensions/google-shopping-ads https://amasty.com/product-feed-for-magento-2.html

upwork.com/messages/rooms/room_8e141f0c39ea3e5091cd334db37aaef0/story_d15633b29dbfe796a9a9fed69de7ce1f

dmitrii-fediuk commented 2 years ago

we are having trouble with our Google shopping feed again. To avoid future issues are you able to provide an auto generating feed at all using an extension to Magento? This would ensure all products are automatically updated in line with sales and would reduce the downtime we’re seeing.

upwork.com/messages/rooms/room_8e141f0c39ea3e5091cd334db37aaef0/story_092d18dc8fa4fa368a7ac929d6ffea5e

dmitrii-fediuk commented 2 years ago

we would just need you to provide a URL providing for the feed.

upwork.com/messages/rooms/room_8e141f0c39ea3e5091cd334db37aaef0/story_f026ae234cffe70cec6bc3e364c881f2

dmitrii-fediuk commented 2 years ago

Can you start on the auto feed job now?; Is there scope for your developer to set up an auto-generating feed through Magento? This would ensure all products are automatically updated in line with sales and would reduce the downtime we’re seeing. This can be done with relative ease using a Magento 2 plug in or extension.

upwork.com/messages/rooms/room_8e141f0c39ea3e5091cd334db37aaef0/story_ed7d276f1ee8d5114b07d21ca06706b6

dmitrii-fediuk commented 2 years ago

The official Google Shopping module has been removed from Magento 2 since 2020-04-28:

Google Shopping ads Channel was disabled on April 28, 2020.

docs.magento.com/user-guide/sales-channels/google-eol.html

dmitrii-fediuk commented 2 years ago

Google Merchant Center supports structured data markup:

Use structured data markup on your product landing pages to help Google retrieve up-to-date information about your products and offers directly from your website.

support.google.com/merchants/answer/6386198 support.google.com/merchants/topic/6386199

A structured data markup is already generated by the MageWorx_SeoMarkup module:

https://github.com/tradefurniturecompany/site/blob/2021-08-31/app/code/MageWorx/SeoMarkup/Block/Head/Json/Product.php#L57-L77

<script type="application/ld+json">[
    {
        "@context": "http:\/\/schema.org",
        "@type": "Product",
        "name": "Light Mango Wood Chunky Nest",
        "description": "",
        "image": "https:\/\/www.tradefurniturecompany.co.uk\/media\/catalog\/product\/cache\/d886ca8833eeb774ff64e8bc2b9d10d5\/m\/a\/mango-light-chunky-nest-h9l_compressed_1.jpg",
        "offers": {
            "@type": "http:\/\/schema.org\/Offer",
            "price": 129.95,
            "url": "https:\/\/www.tradefurniturecompany.co.uk\/mango-light-chunky-nest-1468",
            "priceCurrency": "GBP",
            "availability": "http:\/\/schema.org\/InStock"
        }
    },
    {
        "@context": "http:\/\/schema.org\/",
        "@type": "WebPage",
        "speakable": {
            "@type": "SpeakableSpecification",
            "cssSelector": [
                ".description"
            ],
            "xpath": [
                "\/html\/head\/title"
            ]
        }
    }
]</script>