⚫ EC 測試商店功能都開放,但是每個商店可以用的功能,會跟商家使用的版 本有關) ⚫ EC 測試的商店前台 https://apidemo.cyberbiz.co ◆ 登入密碼:54688786 ⚫ EC 測試的商店後台 https://apidemo.cyberbiz.co/admin ◆ 登入帳號: service@sinlead.com ◆ 登入密碼: #@9@PN8Md5xA['?gZ9f ⚫ POS 測試的商店後台 https://apidemopos.cyberbiz.co/admin ◆ 登入帳號: service@sinlead.com ◆ 登入密碼: #@9@PN8Md5xA['?gZ9f
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
| # Generated by Powerlevel10k configuration wizard on 2025-04-01 at 03:12 CST. | |
| # Based on romkatv/powerlevel10k/config/p10k-lean.zsh, checksum 37983. | |
| # Wizard options: powerline, unicode, lean, 24h time, 1 line, compact, concise, | |
| # instant_prompt=verbose. | |
| # Type `p10k configure` to generate another config. | |
| # | |
| # Config for Powerlevel10k with lean prompt style. Type `p10k configure` to generate | |
| # your own config based on it. | |
| # | |
| # Tip: Looking for a nice color? Here's a one-liner to print colormap. |
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
| https://line.me/R/ti/p/{LINE_id} |
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
| <img src="<?php echo wp_get_attachment_image_url( $attachment_id, 'medium' ) ?>" | |
| srcset="<?php echo wp_get_attachment_image_srcset( $attachment_id, 'medium' ) ?>" | |
| sizes="<?php echo wp_get_attachment_image_sizes( $attachment_id, 'medium' ) ?>" /> |
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
| /* Box sizing rules */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| } | |
| /* Prevent font size inflation */ | |
| html { | |
| -moz-text-size-adjust: none; |
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
| function wp_maintenance_mode() { | |
| if (!current_user_can('edit_themes') || !is_user_logged_in()) { | |
| wp_die('<h1>網站維護中</h1><br />網站維護中,請稍後再來,要停止維護模式請洽網站維護人員。'); | |
| } | |
| } | |
| add_action('get_header', 'wp_maintenance_mode'); |
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_action('admin_init', function () { | |
| // Redirect any user trying to access comments page | |
| global $pagenow; | |
| if ($pagenow === 'edit-comments.php') { | |
| wp_safe_redirect(admin_url()); | |
| exit; | |
| } | |
| // Remove comments metabox from dashboard |
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
| <link href="/templates/projectclub/css/fixed-btn-join.css?20230315-1" rel="stylesheet"> | |
| <div class="fixed-btn-container"><a class="fixed-btn-join" target="_blank" href="https://www.projectclub.com.tw/class/224-bigdatamap/individual-registration.html" id="fixed-btn-join">立即上課 NT$ 18,000</a></div> |
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: //www.cloudways.com/blog/create-woocommerce-custom-order-status/ | |
| function register_shipped_unpaid_order_status() { | |
| register_post_status( 'wc-shipped-unpaid', array( | |
| 'label' => '已完成未付款', | |
| 'public' => true, | |
| 'show_in_admin_status_list' => true, | |
| 'show_in_admin_all_list' => true, | |
| 'exclude_from_search' => false, |
NewerOlder