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
| FROM php:7.2-fpm | |
| COPY app /var/www/ | |
| EXPOSE 9000 |
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 | |
| /** | |
| * == About this Gist == | |
| * | |
| * Code to add to wp-config.php to enhance information available for debugging. | |
| * | |
| * You would typically add this code below the database, language and salt settings | |
| * | |
| * Oh.. and *do* make sure you change the path to the log file to a proper file path on your server (make sure it exists). | |
| * |
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: Gist oEmbed | |
| Plugin URI: http://ninnypants.com | |
| Description: Embed gists into posts | |
| Version: 1.0 | |
| Author: ninnypants | |
| Author URI: http://ninnypants.com | |
| License: GPL2 |
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: Custom Registration Fields | |
| Plugin URI: | |
| Description: | |
| Version: 0.1 | |
| Author: CSSIgniter | |
| Author URI: | |
| License: GPLv2 or later | |
| License URI: http://www.gnu.org/licenses/gpl-2.0.html |
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 tax exempt fields to checkout | |
| **/ | |
| add_action('woocommerce_before_order_notes', 'taxexempt_before_order_notes'); | |
| function taxexempt_before_order_notes( $checkout ) { | |
| woocommerce_form_field( 'tax_exempt_checkbox', array( | |
| 'type' => 'checkbox', | |
| 'class' => array('tiri taxexempt'),array( 'form-row-wide', 'address-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
| <?php | |
| // Adds a custom rule type. | |
| add_filter( 'acf/location/rule_types', function( $choices ){ | |
| $choices[ __("Other",'acf') ]['wc_prod_attr'] = 'WC Product Attribute'; | |
| return $choices; | |
| } ); | |
| // Adds custom rule values. | |
| add_filter( 'acf/location/rule_values/wc_prod_attr', function( $choices ){ |
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 hwid_load_custom_tab( $tab_key, $tab_info ) { | |
| echo apply_filters( 'the_content', $tab_info['tabContent'] ); | |
| } | |
| function hwid_add_content_tabs( $tabs ) { | |
| global $post; | |
| $custom_tabs = get_field( 'tabs', $post->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
| <?php | |
| if( function_exists('acf_add_local_field_group') ): | |
| acf_add_local_field_group(array ( | |
| 'key' => 'acf_product_options', | |
| 'title' => 'Product Options', | |
| 'fields' => array ( | |
| array ( | |
| 'key' => 'acf_product_options_tabbedcontent_label', | |
| 'label' => 'Tabbed Content', |
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
| FROM alpine:3.8 | |
| LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | |
| ENV NGINX_VERSION 1.14.0 | |
| RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \ | |
| && CONFIG="\ | |
| --prefix=/etc/nginx \ | |
| --sbin-path=/usr/sbin/nginx \ |
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
| Ansible playbook to setup HTTPS using Let's encrypt on nginx. | |
| The Ansible playbook installs everything needed to serve static files from a nginx server over HTTPS. | |
| The server pass A rating on [SSL Labs](https://www.ssllabs.com/). | |
| To use: | |
| 1. Install [Ansible](https://www.ansible.com/) | |
| 2. Setup an Ubuntu 16.04 server accessible over ssh | |
| 3. Create `/etc/ansible/hosts` according to template below and change example.com to your domain | |
| 4. Copy the rest of the files to an empty directory (`playbook.yml` in the root of that folder and the rest in the `templates` subfolder) |