PRODUCTION
Originally, we had separate GA Instances for Blog and WP:
| <?php | |
| 54 results - 15 files | |
| web/app/plugins/woocommerce-xero/includes/class-wc-xr-address.php: | |
| 20 public function get_type() { | |
| 21: return apply_filters( 'woocommerce_xero_address_type', $this->type, $this ); | |
| 22 } | |
| 34 public function get_line_1() { |
| {"0":{"title":"Vimeo Upload","description":"","labelPlacement":"top_label","descriptionPlacement":"below","button":{"type":"text","text":"Submit","imageUrl":""},"fields":[{"type":"dgv_vimeo_upload","id":2,"label":"Video","adminLabel":"","isRequired":false,"size":"medium","errorMessage":"","visibility":"visible","inputs":null,"allowedExtensions":"mp4,mov,wmv,avi,flv","formId":1,"description":"","allowsPrepopulate":false,"inputMask":false,"inputMaskValue":"","inputMaskIsCustom":false,"maxLength":"","inputType":"","labelPlacement":"","descriptionPlacement":"","subLabelPlacement":"","placeholder":"","cssClass":"","inputName":"","noDuplicates":false,"defaultValue":"","choices":"","conditionalLogic":"","maxFileSize":"","maxFiles":"","multipleFiles":false,"productField":"","calculationFormula":"","calculationRounding":"","enableCalculation":"","disableQuantity":false,"displayAllCategories":false,"useRichTextEditor":false,"fields":"","displayOnly":""},{"type":"text","id":3,"label":"Course ID","adminLabel":"","isRequi |
| <html> | |
| <!-- Navbar | |
| ================================================== --> | |
| <div class="bs-docs-section clearfix"> | |
| <div class="row"> | |
| <div class="col-lg-12"> | |
| <div class="page-header"> | |
| <h1 id="navbars">Navbars</h1> | |
| </div> |
| [ | |
| { "keys": ["´"], "command": "insert", "args": {"characters": "{"} }, | |
| { "keys": ["ç"], "command": "insert", "args": {"characters": "}"} }, | |
| { "keys": ["`"], "command": "insert", "args": {"characters": "["} }, | |
| { "keys": ["+"], "command": "insert", "args": {"characters": "]"} } | |
| ] |
git archive will accept paths as arguments. All you should need to do is:
git archive -o ../latest.zip some-commit $(git diff --name-only earlier-commit some-commit)
or if you have files with spaces (or other special characters) in them, use xargs:
git diff --name-only earlier-commit some-commit | xargs -d'\n' git archive -o ../latest.zip some-commit
If you don't have xargs properly installed, you could cook up an alternative:
| setInterval(function(){ | |
| botao = jQuery('#smush-box-meta-boxes-bulk > div.sui-box-body > div.wp-smush-bulk-wrapper > button'); | |
| if( botao.attr('disabled') != 'disabled' ) { | |
| botao.trigger('click'); | |
| } | |
| }, 1000); |
| <?php | |
| class FitmetrixAPI{ | |
| private $base_url; | |
| private $encoded_auth; | |
| private $facility_location_id; | |
| public function __construct($token, $token_key, $facility_location_id){ | |
| $this->base_url = 'https://api.fitmetrix.io/api/'; |
| version: '3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| environment: | |
| MYSQL_ROOT_PASSWORD: somewordpress |