Skip to content

Instantly share code, notes, and snippets.

View PechenkiUA's full-sized avatar
💭
On vacation

Pechenki PechenkiUA

💭
On vacation
View GitHub Profile
INSERT INTO `oc_setting` (`code`, `key`, `serialized`, `value`, `store_id`) VALUES
('config', 'config_logo_multi', 1, '{\"2\":\"catalog\\/logo.png\",\"3\":\"catalog\\/logo.png\"}', 0),
('config', 'config_comment_multi', 1, '{\"2\":\"\",\"3\":\"\"}', 0),
('config', 'config_image_multi', 1, '{\"2\":\"\",\"3\":\"\"}', 0),
('config', 'config_open_multi', 1, '{\"2\":\"\\u041f\\u043d \\u041f\\u0442 <br>09:00 - 18:00\",\"3\":\"\\u041f\\u043d \\u041f\\u0442 <br>09:00 - 18:00\"}', 0),
('config', 'config_address_multi', 1, '{\"2\":\"\\u0432\\u0443\\u043b. \\u041d\\u0430\\u0443\\u043a\\u043e\\u0432\\u0430, 30 <br>\\r\\n\\u0432\\u0443\\u043b. \\u0413\\u043e\\u0440\\u043e\\u0434\\u043e\\u0446\\u044c\\u043a\\u0430, 175 <br>\\r\\n\\u043f\\u0440. \\u0427\\u0435\\u0440\\u0432\\u043e\\u043d\\u043e\\u0457 \\u041a\\u0430\\u043b\\u0438\\u043d\\u0438, 42\\u0430\",\"3\":\"\\u0443\\u043b. \\u041d\\u0430\\u0443\\u0447\\u043d\\u0430\\u044f, 30 <br>\\r\\n\\u0443\\u043b. \\u0413\\u043e\\u0440\\u043e\\u0434
@PechenkiUA
PechenkiUA / Coder_redirect_ru.ocmod.xml
Created August 23, 2024 05:54
Приховати російську мову та зробити переадресацію з усіх сторінок на укр
<?xml version="1.0" encoding="utf-8"?>
<modification>
<name>01-Coder_redirect_disabled_lang</name>
<code>Coder_redirect_disabled_lang</code>
<version>0.1</version>
<author>Pechenki</author>
<link>coder.org.ua</link>
194.180.49.41
@PechenkiUA
PechenkiUA / gist:d34ccc8b3f759b40756d2c3a06f64318
Last active July 26, 2024 18:18
woocommerce-tm-extra-product-options
<?php
function get_epo_options_for_product_in_order($order_id, $product_id = null) {
$order = wc_get_order($order_id);
if (!$order) return false;
$epo_options = array();
foreach ($order->get_items() as $item_id => $item) {
$item_product_id = $item->get_product_id();
:local CurDate [/system clock get date]
:local CurTime [/system clock get time]
#Log
:log info "Download speed is more than 50M"
#SendTelegram
/tool fetch url="https://api.telegram.org/bot<TOKEN>/sendMessage?chat_id=<Chat_ID>&text=YourMessage"
@PechenkiUA
PechenkiUA / moonraker.conf
Created May 20, 2024 16:42
notifier telegram
[notifier telegram]
url: tgram://token/chat_id
events: complete, error, cancelled
title: ⚠️3D принтер.
body: Статус принтера змінився на {event_name}. Файл: '{event_args[1].filename}'.
attach: http://127.0.0.1:8080/?action=snapshot
<?xml version="1.0" encoding="utf-8"?>
<modification>
<name>coder_customer_auth_token</name>
<code>coder_customer_auth_token</code>
<version>1.0</version>
<author>Coder</author>
<link>https://www.opencart.com</link>
<file path="system/library/cart/customer.php">
<operation>
@PechenkiUA
PechenkiUA / functions.php
Created March 20, 2024 09:48
Шорткод для виведення товарів з часом очікування 1 день та більше
<?php
/**
* Шорткод для виведення товарів з часом очікування 1 день та більше
*/
function shortcode_products_one_day_left($atts)
{
$atts = shortcode_atts(array(
'per_page' => 12,
), $atts, 'products_one_day_left');
@PechenkiUA
PechenkiUA / CodCache.php
Created March 18, 2024 11:47
opencart clear cache
<?php
/**
*
*/
class CodCache {
/**
* @var
*/
private $registry;