Skip to content

Instantly share code, notes, and snippets.

@hounw
hounw / shopify_opencart_export.php
Created April 24, 2025 00:46
Create a shopify import CSV from your Opencart 2.3.x catalog using a simple php script.
<?php
// Place in your opencart 2.3.x root directory to create a CSV file to import in a shopify store. Only simple products exported.
// Include OpenCart config to get DB + URL constants
require_once('config.php');
try {
$pdo = new PDO(
"mysql:host=" . DB_HOSTNAME . ";dbname=" . DB_DATABASE . ";charset=utf8",
@hounw
hounw / example.php
Created July 29, 2020 16:28
card.js in woocommerce payment gateway
<?php
/*
... omitted all other functions...
*/
/**
* Add custom credit card form
*/
public function payment_fields() {