- Create a .gitignore file in the git repository if it does not contain one
touch .gitignore
- Open up the .gitignore and add the following line to the file
**/node_modules
| 530.satır -> assets > scss. > optimum7.scss | |
| .mobile-row-3 .part-card-not-avail { | |
| width: 90%; | |
| height: 70px; | |
| margin: 0 auto; | |
| text-align: center; | |
| font-weight: bolder; | |
| overflow-wrap: break-word; | |
| font-size: 11px; |
| //Read Default Value | |
| defaults read -g com.apple.mouse.scaling | |
| //Set New Value ( 6.5 is best for me ) | |
| defaults write -g com.apple.mouse.scaling 13.5 |
| <ul> | |
| {{#each categories}} | |
| <li> | |
| {{#if children}} | |
| <a href="{{url}}" > ALT 1->{{name}}</a> | |
| <ul> | |
| {{#each children}} | |
| <li> | |
| {{#if children}} | |
| <a href="{{url}}"> ALT 2-> {{name}} </a> |
| {{#each category.subcategories}} | |
| {{#unless @last}}{{#unless @first}} | |
| {{name}} | |
| {{/unless}}{{/unless}} | |
| {{/each}} |
| {{#partial "head"}} | |
| {{{ checkout.checkout_head }}} | |
| {{{ stylesheet '/assets/css/optimized-checkout.css' }}} | |
| {{ getFontsCollection }} | |
| <script type="text/javascript"> | |
| window.language = {{{langJson 'optimized_checkout'}}}; | |
| </script> | |
| {{/partial}} |
| //** *Enable upload for webp image files.*/ | |
| function webp_upload_mimes($existing_mimes) { | |
| $existing_mimes['webp'] = 'image/webp'; | |
| return $existing_mimes; | |
| } | |
| add_filter('mime_types', 'webp_upload_mimes'); | |
| //** * Enable preview / thumbnail for webp image files.*/ | |
| function webp_is_displayable($result, $path) { | |
| if ($result === false) { |
| <?php if ( have_comments() ) : ?> | |
| <ol class="commentlist"> | |
| <?php wp_list_comments( apply_filters( 'woocommerce_product_review_list_args', array( 'callback' => 'woocommerce_comments' ) ) ); ?> | |
| </ol> | |
| <?php | |
| if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : | |
| echo '<nav class="woocommerce-pagination">'; | |
| paginate_comments_links( | |
| apply_filters( |
| # Create a new repository on the command line | |
| touch README.md | |
| git init | |
| git add README.md | |
| git commit -m "first commit" | |
| git remote add origin https://github.com/c0ldlimit/vimcolors.git | |
| git push -u origin master | |
| # Push an existing repository from the command line |
| {% assign vari = url_1 | split: "collections/" %} | |
| {{ collections[vari[1]].products.size }} Products | |
| {% for product in collections[vari[1]].products %} | |
| {{ product.title }} | |
| {% endfor %} |