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
| MacBook-Pro:vagrant-local leon.shelhamer$ vagrant provision | |
| Ignoring ffi-1.9.10 because its extensions are not built. Try: gem pristine ffi --version 1.9.10 | |
| Ignoring nokogiri-1.6.3.1 because its extensions are not built. Try: gem pristine nokogiri --version 1.6.3.1 | |
| Ignoring unf_ext-0.0.7.1 because its extensions are not built. Try: gem pristine unf_ext --version 0.0.7.1 | |
| __ ___ ___ __ ____ | |
| \ \ / \ \ / \ \ / / |___ \ | |
| \ \ / / \ \ / / \ \ / / __) | | |
| \ V / \ V / \ V / / __/ |
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
| sites: | |
| trg: | |
| repo: https://github.com/JPry/vvv-base.git | |
| hosts: | |
| - trg.dev | |
| custom: | |
| admin_user: trg | |
| admin_password: trg | |
| admin_email: [email protected] | |
| title: TRG |
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
| #!/usr/bin/env ruby | |
| require 'tempfile' | |
| require 'fileutils' | |
| # Signals | |
| trap("SIGINT") { exit } | |
| # Setup | |
| TARGET_FOLDER = ARGV[0] | |
| TARGET_URL = ARGV[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 | |
| /** | |
| * Move WooCommerce subcategory list items into | |
| * their own <ul> separate from the product <ul>. | |
| */ | |
| add_action( 'init', 'move_subcat_lis' ); | |
| function move_subcat_lis() { | |
| // Remove the subcat <li>s from the old location. |
OlderNewer