View woocommerce_simple_add_to_cart.js
This file contains 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
<script type="text/javascript"> | |
function m_wc_add_to_cart( product_id ) { | |
if ( 'undefined' === typeof wc_add_to_cart_params ) { | |
// The add to cart params are not present. | |
return false; | |
} | |
var data = { | |
product_id: product_id, |
View wp_admin_product_search_results_meta.php
This file contains 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
/** | |
* Alter the query vars to include products which have the meta we are searching for. | |
* | |
* @param array $query_vars The current query vars. | |
* | |
* @return array | |
*/ | |
function m_request_query( $query_vars ) { | |
global $typenow; |
View class-m-custom-uploads-filename.php
This file contains 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 | |
/** | |
* Class M_Custom_Uploads_Filename | |
*/ | |
class M_Custom_Uploads_Filename { | |
/** | |
* M_Custom_Uploads_Filename constructor. | |
*/ |
View wc_vendors_custom_percent_commission.php
This file contains 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_filter('wcv_commission_rate', 'm_commission_update', 20, 5); | |
/** | |
* @param $commission | |
* @param $product_id | |
* @param $product_price | |
* @param $order | |
* @param $qty |
View search_wp_index_woocommerce_variation_data.php
This file contains 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 | |
/** | |
* @param array $extra_meta | |
* @param WP_Post $post_being_indexed | |
* | |
* @return array | |
*/ | |
function m_index_woocommerce_variation_isbn( $extra_meta, $post_being_indexed ) { |
View m_hide_gateways.php
This file contains 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 | |
/** | |
* @param $available_gateways array of available WooCommerce gateways | |
* | |
* @return array Updated gateways | |
*/ | |
function m_disable_gateways_for_loggedout_users( $available_gateways ) { | |
if ( ! is_user_logged_in() && ! current_user_can( 'manage_options' ) ) { |
View print_this_example.html
This file contains 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
<a href="#" class="wsl_print" data-target=".search-results"> | |
Print element | |
</a> |
View clipboard_js_example.html
This file contains 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
<a href="javascript:void(0);" data-clipboard-text="This is the text to copy!" class="btn-copy"> | |
<span class="m_copy_text">Copy Link</span> | |
</a> |
View gform_sections_accordion.css
This file contains 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
.m_collapse_text, .show_collapse .m_expand_text, .m_section{ | |
display: none; | |
} | |
.show_collapse .m_collapse_text { | |
display: inline; | |
} |
View gform_sections_accordion.css
This file contains 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
.m_collapse_text, .show_collapse .m_expand_text, .m_section{ | |
display: none; | |
} | |
.show_collapse .m_collapse_text { | |
display: inline; | |
} |
NewerOlder