^ Matches at the start of string or start of line if multi-line mode is
enabled. Many regex implementations have multi-line mode enabled by
default.
$ Matches at the end of string or end of line if multi-line mode is enabled.
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 | |
| /** | |
| * Display the custom text field | |
| * @since 1.0.0 | |
| */ | |
| function cfwc_create_custom_field() { | |
| $args = array( | |
| 'id' => 'custom_text_field_title', | |
| 'label' => __( 'Product Name In Thai', 'cfwc' ), | |
| 'class' => 'cfwc-custom-field', |
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( 'woocommerce_product_query', function( $qeury ) { | |
| if ( empty( $qeury->query_vars['orderby'] ) || 'popularity' !== $qeury->query_vars['orderby'] ) { | |
| return; | |
| } | |
| add_filter( 'posts_clauses', function( $args ) { | |
| $args['orderby'] = ' CASE wc_product_meta_lookup.min_price WHEN 0 THEN 1 | |
| ELSE -1 | |
| END ASC, wc_product_meta_lookup.total_sales DESC, wc_product_meta_lookup.product_id DESC | |
| '; |
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
| /** | |
| * @package Thz Framework | |
| * @author Themezly | |
| * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only | |
| * @websites http://www.themezly.com | http://www.youjoomla.com | http://www.yjsimplegrid.com | |
| */ | |
| class ThzelGetElementSettings { | |
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
| // Create post WP REST API with Framework7 | |
| app.request({ | |
| url: 'https://example.com/wp-json/wp/v2/posts', | |
| dataType: 'json', | |
| crossDomain: true, | |
| contentType: 'application/json', | |
| data: { | |
| title: 'The title for the object.', | |
| content: 'The content for the object.', | |
| status: 'publish', |
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
| var brandSlider = $('.brand-banner'); | |
| brandSlider.owlCarousel({ | |
| loop: false, | |
| nav: false, | |
| dots: false, | |
| smartSpeed: 500, | |
| margin: 0, | |
| responsive: { | |
| 0: { | |
| items: 1 |
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 | |
| //* Do NOT include the opening php tag shown above. Copy the code shown below into functions.php | |
| /** | |
| * Manage WooCommerce styles and scripts. | |
| */ | |
| function grd_woocommerce_script_cleaner() { | |
| // Remove the generator tag | |
| remove_action( 'wp_head', array( $GLOBALS['woocommerce'], 'generator' ) ); |
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
| // Extend jQuery addClass function to accept callback function | |
| var oAddClass = $.fn.addClass; | |
| $.fn.addClass = function () { | |
| for (var i in arguments) { | |
| var arg = arguments[i]; | |
| if ( !! (arg && arg.constructor && arg.call && arg.apply)) { | |
| arg(); | |
| delete arg; | |
| } | |
| } |
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 | |
| use Elementor\Controls_Manager; | |
| use Elementor\Element_Base; | |
| use Elementor\Core\Files\CSS\Post; | |
| use Elementor\Core\DynamicTags\Dynamic_CSS; | |
| // Exit if accessed directly | |
| if (!defined('ABSPATH')) { | |
| exit; |
To install macOS High Sierra 10.13.5 on a virtual machine using VMware:
- If you have not installed VMware Workstation on a Windows operating system before, please refer to the following video.
➦ https://www.youtube.com/watch?v=-Uf9-6SPiMY
- After installing VMware Workstation, you need the VMware Unlocker program to create a new virtual machine for the MacOS High Sierra 10.13.5 installation. To download the VMware Unlocker program to your computer, visit the link below.
Article ➦ https://www.sysnettechsolutions.com/en/vmware/download-vmware-unlocker-2-1-1/