This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ?php | |
| $product = new WC_Product( get_the_ID() ); // in function.php maybe... | |
| if( $product->is_type( 'simple' ) ){ | |
| // a simple product | |
| } elseif( $product->is_type( 'variable' ) ){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function egyedi_jellemzok() { | |
| echo'IDE JÖHET MINDEN SZÖVEG, AKÁR HTML IS, VAGY SCRIPT'; | |
| } | |
| add_action('woocommerce_after_add_to_cart_button', 'egyedi_jellemzok'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //https://woopress.hu/forumok/tema/rende/ | |
| function RENDELES_DATUMA_ES_IDO_OSZLOP( $columns ) { | |
| $new_columns = ( is_array( $columns ) ) ? $columns : array(); | |
| unset( $new_columns[ 'order_actions' ] ); | |
| $new_columns['RENDELES_DATUMA_ES_IDO'] = 'Rendelés dátuma'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| add_action( 'admin_init', 'redirect_non_admin_users' ); | |
| function redirect_non_admin_users() { | |
| if ( ! current_user_can( 'manage_options' ) && '/wp-admin/admin-ajax.php' != $_SERVER['PHP_SELF'] ) { | |
| wp_redirect( home_url() ); | |
| exit; | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //https://woopress.hu/forumok/tema/rende/ | |
| function woocommerce_add_order_page_date_and_time($h_time) | |
| { | |
| return get_the_time(__('Y/m/d G:i', 'woocommerce')); | |
| } | |
| add_filter('woocommerce_admin_order_date_format', 'woocommerce_add_order_page_date_and_time'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_custom_admin_url($path) { | |
| return str_replace('wp-admin', 'beallitasok', $path); | |
| } | |
| add_filter('admin_url', 'my_custom_admin_url'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^beallitasok[^/]*$ beallitasok/ [R=301,L] | |
| RewriteCond %{QUERY_STRING} (.*)$ | |
| RewriteRule ^beallitasok(.*)$ wp-admin$1? [QSA,L,NE] | |
| RewriteCond %{QUERY_STRING} (.*)$ | |
| RewriteRule ^wp-admin/?$ / [NE,R=404,L] | |
| RewriteCond %{QUERY_STRING} (.*)$ | |
| RewriteRule ^wp-admin/(.*)$ beallitasok/$1 [QSA,R=301,L,NE] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'plugin_row_meta', 'custom_plugin_row_meta', 10, 2 ); | |
| function custom_plugin_row_meta( $links, $file ) { | |
| if ( strpos( $file, 'plugin-file-name.php' ) !== false ) { | |
| $new_links = array( | |
| 'donate' => '<a href="donation_url" target="_blank">Donate</a>', | |
| 'doc' => '<a href="doc_url" target="_blank">Documentation</a>' | |
| ); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ifModule mod_gzip.c> | |
| mod_gzip_on Yes | |
| mod_gzip_dechunk Yes | |
| mod_gzip_item_include file .(html?|txt|css|js|php|pl)$ | |
| mod_gzip_item_include handler ^cgi-script$ | |
| mod_gzip_item_include mime ^text/.* | |
| mod_gzip_item_include mime ^application/x-javascript.* | |
| mod_gzip_item_exclude mime ^image/.* | |
| mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* | |
| </ifModule> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Plugin Name: Swift Performance early loader | |
| */ | |
| class Swift_Performance_Loader { | |
| public static function load(){ | |
| wp_cookie_constants(); |
OlderNewer