It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries
It's time someone compiled a list of nationalities to use within a web application. This gist attempts to make a first move at that.
I've also compiled a list of countries
This entire guide is based on an old version of Homebrew/Node and no longer applies. It was only ever intended to fix a specific error message which has since been fixed. I've kept it here for historical purposes, but it should no longer be used. Homebrew maintainers have fixed things and the options mentioned don't exist and won't work.
I still believe it is better to manually install npm separately since having a generic package manager maintain another package manager is a bad idea, but the instructions below don't explain how to do that.
Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.
div.wpcf7-response-output, div.wpcf7-validation-errors { display: none !important; } | |
span.wpcf7-not-valid-tip { display: none; } | |
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: red; background-color: rgba(153,0,0,0.3); } |
#!/bin/bash | |
########################################################################### | |
# AUTHOR: Mauro Marano | |
# SITE: mauromarano.it/com | |
# Questo script serve per tenere organizzato il desktop | |
# Una volta impostate le variabili lui andrà a creare delle cartelle | |
# Per ogni tipo di file specificato. | |
# La cosa migliore è farlo girare con un cronjob. | |
# crontab -e |
/*Extra field on the seller settings and show the value on the store banner -Dokan*/ | |
// Add extra field in seller settings | |
add_filter( 'dokan_settings_form_bottom', 'extra_fields', 10, 2); | |
function extra_fields( $current_user, $profile_info ){ | |
$seller_url= isset( $profile_info['seller_url'] ) ? $profile_info['seller_url'] : ''; | |
?> | |
<div class="gregcustom dokan-form-group"> |
<?php | |
const API_KEY = "YOUR API KEY HERE"; | |
const API_URL = "https://api.cloudways.com/api/v1"; | |
const EMAIL = "YOUR EMAIL GOES HERE"; | |
/* examples | |
const BranchName = "master"; | |
const GitUrl = "git@bitbucket.org:user22/repo_name.git"; | |
*/ |