Skip to content

Commit 644a381

Browse files
author
Mario Pando
committed
update README & fixes
1 parent b6e95bf commit 644a381

File tree

2 files changed

+98
-2
lines changed

2 files changed

+98
-2
lines changed

Gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = function(grunt) {
3838
} else {
3939
res.map(function(path){
4040
_files_to_build.push({src: 'index.php', dest: path })
41-
}); console.log(_files_to_build);
41+
});
4242
}
4343
});
4444

README.md

Lines changed: 97 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,97 @@
1-
# prestashop-plugin
1+
# CryptoCompra by CryptoMarket
2+
[![N|Solid](https://www.cryptocompra.com/img/logo.png)](https://nodesource.com/products/nsolid)
3+
4+
Cryptocompra is the new way for pay with the most used cryptocurrencies in the world, this Prestashop plugin includes.
5+
- Support for Bitcoin, Stellar and Ethereum Cryptocurrencies.
6+
- New API v1.1 updates.
7+
- Payments with ARS(Argentinian Peso), BRL(Real brazilian), CLP(Chilean peso) and EUR(Euro).
8+
- Configuration panel for access credential.
9+
10+
## Development
11+
### Setup
12+
* NodeJS & NPM
13+
* Grunt
14+
* Composer
15+
16+
Clone the repo:
17+
```bash
18+
$ git clone https://github.com/cryptomarket/woocommerce-plugin
19+
$ cd woocommerce-plugin
20+
```
21+
Install the dependencies:
22+
```bash
23+
$ npm install
24+
$ curl -sS https://getcomposer.org/installer | php
25+
$ ./composer.phar install
26+
```
27+
Get the PSR-2 Coding Standard Tool Fixer:
28+
```bash
29+
$ wget https://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer
30+
$ sudo chmod a+x php-cs-fixer
31+
```
32+
### Build
33+
```bash
34+
$ ./node_modules/.bin/grunt build
35+
# Outputs plugin at dist/cryptomarket
36+
# Outputs plugin archive at dist/cryptomarket.zip
37+
```
38+
## Support
39+
40+
### CryptoCompra by CryptoMarket support
41+
42+
* Last Version Tested: Prestashop 1.6.+ | 1.7.+
43+
* [GitHub Issues](https://github.com/cryptomkt/prestashop-plugin/issues)
44+
* Open an issue if you are having issues with this plugin.
45+
* [Support](https://soporte.cryptomkt.com/)
46+
* Cryptomarket support team
47+
48+
### Prestashop support
49+
50+
* [Homepage](http://www.prestashop.com/woocommerce/)
51+
* [Documentation](http://docs.woothemes.com)
52+
* [Support](https://support.woothemes.com)
53+
*
54+
The official PrestaShop 1.7 documentation is available online [on its own website][1]
55+
First-time users will be particularly interested in the following guides:
56+
* [Getting Started][2]: How to install PrestaShop, and what you need to know.
57+
* [User Guide][3]: All there is to know to put PrestaShop to good use.
58+
* [Updating Guide][4]: Switching to the newest version is not trivial. Make sure you do it right.
59+
* [Merchant's Guide][5]: Tips and tricks for first-time online sellers.
60+
* The [FAQ][6] and the [Troubleshooting][7] pages should also be of tremendous help to you.
61+
62+
## Troubleshooting
63+
64+
1. Ensure a valid SSL certificate is installed on your server. Also ensure your root CA cert is updated. If your CA cert is not current, you will see curl SSL verification errors.
65+
2. Verify that your web server is not blocking POSTs from servers it may not recognize. Double check this on your firewall as well, if one is being used.
66+
3. Check the version of this plugin against the official plugin repository to ensure you are using the latest version. Your issue might have been addressed in a newer version! See the [Releases](https://github.com/cryptomkt/prestashop-plugin/releases) page for the latest.
67+
4. If all else fails, enable debug logging in the plugin options and send the log along with an email describing your issue **in detail** to support@cryptomarket.com
68+
69+
**TIP**: When contacting support it will help us is you provide:
70+
71+
* WordPress and WooCommerce Version
72+
* Other plugins you have installed
73+
* Some plugins do not play nice
74+
* Configuration settings for the plugin (Most merchants take screen grabs)
75+
* Any log files that will help
76+
* Web server error logs
77+
* Screen grabs of error message if applicable.
78+
79+
## Contribute
80+
81+
Would you like to help with this project? Great! You don't have to be a developer, either. If you've found a bug or have an idea for an improvement, please open an [issue](https://github.com/cryptomkt/prestashop-plugin/issues) and tell us about it.
82+
83+
If you *are* a developer wanting contribute an enhancement, bugfix or other patch to this project, please fork this repository and submit a pull request detailing your changes. We review all PRs!
84+
85+
This open source project is released under the [MIT license](http://opensource.org/licenses/MIT) which means if you would like to use this project's code in your own project you are free to do so. Speaking of, if you have used our code in a cool new project we would like to hear about it! Please send us an email or post a new thread on [CryptoMarket Developers](https://developers.cryptomkt.com).
86+
87+
## License
88+
89+
Please refer to the [LICENSE](https://github.com/cryptomkt/prestashop-plugin/blob/master/LICENSE) file that came with this project.
90+
91+
[1]: http://doc.prestashop.com
92+
[2]: http://doc.prestashop.com/display/PS17/Getting+Started
93+
[3]: http://doc.prestashop.com/display/PS17/User+Guide
94+
[4]: http://doc.prestashop.com/display/PS17/Updating+PrestaShop
95+
[5]: http://doc.prestashop.com/display/PS16/Merchant%27s+Guide
96+
[6]: http://build.prestashop.com/news/prestashop-1-7-faq/
97+
[7]: http://doc.prestashop.com/display/PS16/Troubleshooting

0 commit comments

Comments
 (0)