Full-stack web-developer. Ex-designer
~7 let:
- Frontend vývojář: Tvorba šablon pro různé webové frameworky a CMS
- Vývojář WordPress: Zkušenosti s WooCommerce a WPML
Highly skilled full-stack web developer with a proven track record of delivering high-quality web solutions. I'm an experienced WordPress Developer with roots going back to 2015-2016 and a professional career starting in 2019. Over the years, I've taken full responsibility for WordPress project delivery—from initial coding to leading development teams.
Source: https://rudrastyh.com/woocommerce/create-product-programmatically.html
Author: Misha Rudrastyh
Updated on February 10, 2025
In this tutorial, I am going to guide you through the process of creating products in WooCommerce in code. The same way of creating products I use when crossposting products between stores in a multisite network, so, in case you need more examples, you can check out this article or my crossposting plugin.
import type { Params } from 'next/dist/server/request/params' | |
import type { SearchParams } from 'next/dist/server/request/search-params' | |
import { cookies, headers } from 'next/headers' | |
import { CodeBlock } from '@/components/development' | |
export function generateStaticParams() { | |
return [{ path: ['path'] }] | |
} | |
export default async function CatchAllPage( |
Guide on simpliest ever self-hosted next.js on VPS configuration. Designed to run on a really weak hardware.
caddy
pm2
5 minutes
The guide on NextJs with docker project setup on EasyPanel
Visit repository: https://github.com/digitalandyeu/next-with-docker
# ~/.bashrc: executed by bash(1) for non-login shells, see /usr/share/doc/bash/examples/startup-files | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# LOADS COMMON BASH ENV | |
[ -s "$HOME/.bashrc/0_common.sh" ] && \. "$HOME/.bashrc/0_common.sh" | |
# LOADS ENVIORMENT VARS IF PRESENTED | |
if [ -f "$HOME/.env" ]; then |
https://www.digitalocean.com/community/tutorials/how-to-install-the-openlitespeed-web-server-on-ubuntu-20-04 https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu-20-04 https://wpengine.com/resources/nginx-vs-apache-wordpress/ https://www.digitalocean.com/community/tutorials/how-to-configure-ssh-key-based-authentication-on-a-linux-server https://sftpcloud.io/learn/sftp/how-to-setup-sftp-server-on-ubuntu-22-04
sudo apt -y upgrade && sudo apt upgrade