Usually, you only need to add 1 line to the README to submit a deal.
However, in some cases we might not be able to fetch the correct image.
It is possible to make a PR with overrides for:
- metaTitle
- metaDescription
- image (og:image)
- logo
- tags
How? You need to create a PR and add your overrides under /shipixen/data/config/product-overrides.js
Do by example.
Overriding metadata
Find your product slug (search for it on the Rare Big Deals website or find the .mdx file under /shipixen/data/products. The .mdx file name is your slug.
Add content for one or more properties, such as metaTitle, metaDescription or tags
'link-building-software': {
tags: ['SEO', 'Optimization', 'Marketing', 'Backlinks'],
metaTitle: 'LinkDR: Powerful Link Building Software for SEO',
metaDescription:
"Boost your SEO with LinkDR's powerful link building software. Automate outreach, track backlinks, and scale your backlink outreach.",
},
Raise a PR with your changes, it'll be picked up automatically.
Overriding images, logo
- Add your images under:
shipixen/public/static/images/overrides/[slug]/logo.png for the logo
- and/or
shipixen/public/static/images/overrides/[slug]/ogImage.png for the banner image
Images need to be png. For the slug, see instructions in the section above: Overriding metadata
- Add your overrides to /shipixen/data/config/product-overrides.js
Add either image or logo paths to overrides, under the property matching your slug.
For example
'link-building-software': {
logo: '/public/static/images/overrides/link-building-software/logo.png',
ogImage:
'/public/static/images/overrides/link-building-software/ogimage.png',
},
Usually, you only need to add 1 line to the README to submit a deal.
However, in some cases we might not be able to fetch the correct image.
It is possible to make a PR with overrides for:
How? You need to create a PR and add your overrides under /shipixen/data/config/product-overrides.js
Do by example.
Overriding metadata
Find your product slug (search for it on the Rare Big Deals website or find the .mdx file under /shipixen/data/products. The .mdx file name is your slug.
Add content for one or more properties, such as
metaTitle,metaDescriptionortagsRaise a PR with your changes, it'll be picked up automatically.
Overriding images, logo
shipixen/public/static/images/overrides/[slug]/logo.pngfor the logoshipixen/public/static/images/overrides/[slug]/ogImage.pngfor the banner imageImages need to be png. For the slug, see instructions in the section above: Overriding metadata
Add either image or logo paths to overrides, under the property matching your slug.
For example