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
| id: yggapi | |
| name: Ygg API | |
| description: "Indexeur non officiel pour ygg.re" | |
| language: fr-FR | |
| type: private | |
| encoding: UTF-8 | |
| followredirect: true | |
| testlinktorrent: false | |
| links: | |
| - https://yggapi.eu |
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 | |
| /** | |
| * Email Order Items | |
| * | |
| * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-order-items.php. | |
| * | |
| * HOWEVER, on occasion WooCommerce will need to update template files and you | |
| * (the theme developer) will need to copy the new files to your theme to | |
| * maintain compatibility. We try to do this as little as possible, but it does | |
| * happen. When this occurs the version of the template file will be bumped and |
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 jk_add_custom_sku() { | |
| $args = array( | |
| 'label' => __( 'Custom SKU', 'woocommerce' ), | |
| 'placeholder' => __( 'Enter custom SKU here', 'woocommerce' ), | |
| 'id' => 'jk_sku', | |
| 'desc_tip' => true, | |
| 'description' => __( 'This SKU is for internal use only.', 'woocommerce' ), | |
| ); |
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 prefix_add_text_input() { | |
| $args = array( | |
| 'label' => '', // Text in the label in the editor. | |
| 'placeholder' => '', // Give examples or suggestions as placeholder | |
| 'class' => '', | |
| 'style' => '', | |
| 'wrapper_class' => '', | |
| 'value' => '', // if empty, retrieved from post_meta | |
| 'id' => '', // required, will be used as meta_key |
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
| <!-- // The HTML (could be part of page content) // --> | |
| <input type="text" name="keyword" id="keyword" onkeyup="fetch()"></input> | |
| <div id="datafetch">Search results will appear here</div> |