View reinstall.cli
wp plugin install $(wp plugin list --field=name) --force |
View functions.php
<?php | |
add_action( 'woocommerce_single_product_summary', 'show_total_number_of_sales', 11 ); | |
function show_total_number_of_sales() { | |
global $product; | |
$units_sold = $product->get_total_sales(); | |
if ( $units_sold ) echo '<p>' . sprintf( __( 'Összes eladás: %s', 'woocommerce' ), $units_sold ) . '</p>'; | |
} |
View bulk.sh
for run in {1..2}; do wp post delete $(wp wc product list --user=1 --format=ids --status=draft --per_page=100) --force; done |
View lorem.html
<a class="button is-primary"> | |
Button | |
</a> | |
<a class="button is-link"> | |
Button | |
</a> | |
<a class="button is-info"> | |
Button | |
</a> | |
<a class="button is-success"> |
View style.css
.et_boxed_layout #page-container, .et_boxed_layout #page-container .container, .et_boxed_layout #page-container .et_pb_row, .et_boxed_layout.et_non_fixed_nav.et_transparent_nav #page-container #top-header, .et_boxed_layout.et_pb_pagebuilder_layout.single #page-container .et_pb_row, .et_boxed_layout.et_pb_pagebuilder_layout.single.et_full_width_page #page-container .et_pb_row, .et_boxed_layout.et_pb_pagebuilder_layout.single.et_full_width_portfolio_page #page-container .et_pb_row, .et_fixed_nav.et_boxed_layout #page-container #main-header, .et_fixed_nav.et_boxed_layout #page-container #top-header, .et_non_fixed_nav.et_transparent_nav.et_boxed_layout #page-container #main-header { | |
width: 100% !important; | |
max-width: 100% !important; | |
margin: auto; | |
} |
View functions.php
<?php | |
// [woocommerce_checkout_nyitva_tartas] | |
function woocommerce_checkout_nyitva_tartas($atts) | |
{ | |
$jelenlegi_ido = date('h:i:s a'); | |
$nyitas = "10:00 am"; //am -> délelőtt | |
$zaras = "4:00 pm"; // pm -> délután | |
$date1 = DateTime::createFromFormat('h:i a', $jelenlegi_ido); | |
$date2 = DateTime::createFromFormat('h:i a', $nyitas); |
View nyelv-css.php
<?php | |
$current_lang = apply_filters('wpml_current_language', NULL); | |
function lang_en() { | |
wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/en.css' ); | |
} | |
function lang_it() { | |
wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/it.css' ); |
View php.ini
php_value upload_max_filesize 128M | |
php_value post_max_size 128M | |
php_value_max_execution_time 300 | |
php_value max_input_time 300 | |
max_input_vars 10000 |
View style.css
.myglow { | |
background: #FF0C0C; | |
border-radius: 50%; | |
margin: 10px; | |
height: 10px; | |
width: 10px; | |
box-shadow: 0 0 0 0 rgba(0, 0, 0, 1); | |
transform: scale(1); | |
animation: pulse 2s infinite; | |
animation-delay: 100ms; |
View toinnodb.sh
#!/usr/bin/env bash | |
WP_TABLES=($(wp db query "SHOW TABLE STATUS WHERE Engine = 'MyISAM'" --allow-root --silent --skip-column-names | awk '{ print $1}')) | |
for WP_TABLES in ${WP_TABLES[@]} | |
do | |
echo "Converting ${WP_TABLES} to InnoDB" | |
wp db query "ALTER TABLE ${WP_TABLES} ENGINE=InnoDB" --allow-root | |
echo "Converted ${WP_TABLES} to InnoDB" |
NewerOlder