How to write and publish an extension for Magento go? - magento

I want to write an extension that is compatible with Magento Go ...
There is anything in particular to know about Magento Go on the dev side ?

Your module should be reviewed by Magento team. See more here - Trusted Magento Extension.

Related

Magento 2.2 Configurable Product with Downloadable Option: Email doesn't include download links

I have a configurable product with a downloadable option. When I perform a test purchase of the downloadable product option, the confirmation email doesn't include a link to the download, but instead just shows which option was selected.
Does anyone know how I can setup Magento 2.2 to send out the necessary links? I'm learning more about the Magento platform, but there's still a lot I don't understand and I need some help getting pointed in the right direction.
Thanks!
EDIT: I'm prepared to write a custom module if that's what it takes.
Going to answer my own question. I wrote a module, which can be found here (in case anyone else can benefit from it): https://github.com/crankycyclops/Crankycyclops_ConfigurableProduct

Magento Extension Installation - No Magento Connect in Admin

I have one very big problem.
I have installed Magento 2 Community Edition.
I am trying to install Magento Extension from Using magento-connect, but there is one problem.
When I login to Magento Admin, and go to Tools I really do not see anything where I can paste my magento-connect URL.
Can someone help me please?
I have installed Magento 2 with Sample data.
Best regards,
Magento-2.0 does not support magento connect.
Because of syntax mismatch in magento-1.x and magento-2.x, this extenison https://www.magentocommerce.com/magento-connect/catalog/product/view/id/14604/s/dixeno-findologic-6870/ will not work in magento 2.0
Hope you understood well.

magento extension is installed in backend but not visible on frontend

I had installed a magento extension for cashu payment gateway.Earlier I could see it on the backend as well as on the frontend. Later I uninstalled it. Cashu support team gave me correct version of extension to install it manually. But this time I could see the extension only in the backend but not in frontend. What could be the possible reason for this and how do I fix it. Thanks!

How to check Magento Connect 2.0 extension source before downloading

I'm leery of just installing community extensions, even with my version control. Is there a way to get the tgz so I can unpack it and inspect the extension before installing it?
As described on this site, Magento Connect 2.0 has a specific format that is easy to decipher. 1st get the Magento Connect 2.0 key. Example:
http://connect20.magentocommerce.com/community/Raveinfosys_Deleteorder
Then go to Magento Commerce website for that extension to find its version in the Release Notes tab. For this example, the latest version is 1.0.3
Now, combine the original key into this URL:
http://connect20.magentocommerce.com/community/Raveinfosys_Deleteorder/1.0.3/Raveinfosys_Deleteorder-1.0.3.tgz
I specifically use this command to download the extension to my work's internal server:
wget http://connect20.magentocommerce.com/community/Raveinfosys_Deleteorder/1.0.3/Raveinfosys_Deleteorder-1.0.3.tgz
... and then I'll normally make changes to those files to fit our template, ie change from default/default to default/my_template. Once I'm all happy I re-tar these files, scp the new tar-ball to my live site, and tar -xzvf via the ssh shell at Magento root.
I don't use magento connect... probably should, just can't bring myself to "trust" it blindly.
Or to make generic:
http://connect20.magentocommerce.com/community/Package_Name/[ver]/Package_Name-[ver].tgz
Some websites offer the links or proxied links to download any mangeto package from mangento connect as .tgz file (that is a gzip'ed tar-file). You get the standard magento PEAR package then.
These sites require the Magento Connect key to obtain the package:
Direct Download Magento Extension Without Pear (Tangkoko)
Download Magento Extension (http://freegento.com/) (only latest package version)
The first site offers a link to the package on the Magento Connect web-server, so that you can see how it works.
For Magento Connect 2.0 it is also written about how it works in a blog-post and there is a bash script that shows it pretty well on github.

How to make a module installable in Magento?

I have successfully created a custom payment gateway module in Magento. Everything work fine as expected.
What I want to do is to make the module installable so that anyone who has the .zip file can install it rather than coping the files manually. I know this is possible with magento and I have seen such modules.
How to make the module installable in Magento which already has been developed ? Please explain the steps if possible.
Here is the step-by-step instruction on how to Package an Extension.
http://www.magentocommerce.com/wiki/7_-_magento_connect/packaging_a_magento_extension
Let me know if you run in any trouble.
Firstly, go to your Admin > System > Magento Connect > Package Extensions
There you will be greeted with New Extension where you can fill all the details of your module.
If you don't understand any field there, just check it in the above article which gives explanation of all the fields required while packaging an extension.

Resources