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
| DELETE FROM wp_commentmeta WHERE comment_id IN ( SELECT ID FROM wp_comments WHERE comment_type = 'order_note' ); | |
| DELETE FROM wp_comments WHERE comment_type = 'order_note'; |
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_filter( 'manage_edit-product_columns', 'tax_status_product_column'); | |
| function tax_status_product_column($columns){ | |
| $new_columns = []; | |
| foreach( $columns as $key => $column ){ | |
| $new_columns[$key] = $columns[$key]; | |
| if( $key == 'is_in_stock' ) { | |
| $new_columns['tax_status'] = __( 'Tax status','woocommerce'); | |
| } | |
| } | |
| return $new_columns; |
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 | |
| add_action( 'wp_enqueue_scripts', 'capweb_woocommerce_style_cleaner', 99 ); | |
| /** | |
| * Manage WooCommerce styles and scripts to get a performance boost. | |
| * ref: https://docs.woocommerce.com/document/disable-the-default-stylesheet/ | |
| * Added 4/30/21 | |
| */ | |
| function capweb_woocommerce_style_cleaner() { | |
| // Unless we're in the store, remove all the stuff! |
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
| # | |
| # This script is executed from a terminal prompt at the root of your MainWP WordPress website. | |
| # It uses the same services as WP CLI, so if WP CLI runs, this should also. | |
| # | |
| # Execute MainWP CLI command to generate a list of all configured sites in MainWP | |
| # Pipe output through filter to remove columns 3 and 4 of output. These columns hold the 2 digit site number. Adjust if more than 99 sites. | |
| # Pipe that output to get rid of the comment lines in the site listing. | |
| # Pipe that output through the SED editor inserting the security scan command at the beginning of the line | |
| # Send everything to a shell script to be executed. | |
| cd /var/www/capwebwpcare.com/htdocs |
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
| /* Don't forget to add alt tag to images | |
| */ | |
| img:not([alt]){ | |
| border: 5px solid red; | |
| } |
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
| /* | |
| * Usage | |
| * Use [year] in your posts. | |
| */ | |
| function year_shortcode() { | |
| $year = date('Y'); | |
| return $year; | |
| } | |
| add_shortcode('year', 'year_shortcode'); |
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
| /** | |
| * WooCommerce add text to the thank you page to direct online class order to book class | |
| */ | |
| add_action( 'woocommerce_thankyou', 'wsm_add_content_thankyou'); | |
| function wsm_add_content_thankyou( $order_id ) { | |
| $cat_in_order = false; | |
| $order = wc_get_order( $order_id ); | |
| $order_items = $order->get_items(); |
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
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress @capwebsolutions | |
| # ver 20200413 | |
| # Forked from salcode ver 20170228 | |
| # | |
| # From the root of your project run | |
| # curl -O https://gist.githubusercontent.com/CapWebSolutions/91abad7201ca8ec092e558c15691bd62/raw/.gitignore | |
| # to download this file | |
| # | |
| # By default all files are ignored. You'll need to whitelist |
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 | |
| /** | |
| * Add Anchor Text To Event Website | |
| * | |
| * REpalce naked URL on event details website with generic Visit Website anchor text for SEO purposes. | |
| * | |
| * @link https://capwebsolutions.com | |
| * | |
| * @package WordPress | |
| * @since 1.0.0 |
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
| <script>document.write( new Date().getFullYear() );</script> |