This is an amazing thought-provoking new song and video from Erica Swindell. Check it out! You won’t be disappointed. Give her a follow on YouTube!
Polk Street Jazz – Music at Wellington Square Courtyard – June 19, 2021
- Doug Storey – Sax and Clarinet
- Sandy Storey – Vocals
- Jim Gardner – Piano & Synthesizer
- Susan Tarig – Drums
- Nick Scales – Bass
Join us for our first season of Music at Wellington Square Courtyard.

Time
The gates will open at 6pm for you to come in. Vendors will be set up at that time. Live music is from 7-9pm.
Cost
Online tickets are available for $12 plus processing fees until 7 pm the day the event starts. We will take tickets for $15 at the door. You can pay with CASH, CASHAP, VENMO, or PAYPAL. Children 12 and under are free.
Where
We are located in the centermost part of Wellington Square. While there are several entrances to the courtyard, we recommend that you come in through the entrance behind Fast Eddies, but any entrance will work.
What to Bring
You will need to bring something to sit on like chairs or blankets. You may also bring your own food and drinks. Alcohol is allowed but please keep it family-friendly. We recommend calling ahead and ordering from one of the restaurants in the business park. Macaroni Joes, Schlotzsky’s Deli, Dyers BBQ, and Sharky’s Burrito are all within walking distance from the courtyard.
What we Provide
We will have fun live music and vendors. For this event, our vendors are Spirit of our Awakening, Nutrify Skin, and DCoolestHenna.
The Fwoops – Music at Wellington Square Courtyard – June 12, 2021, 7:00 pm – 9:00 pm
- Antonio Charles – Vocals, Piano, Guitar, and Trumpet
- Ebbie Rachelle – Vocals
- Ben Smeaton – Drums
- CJ Carter – Saxophone and Clarinet
- Brian Osvaldo Gomez – Guitar
- Patrick Tyree – Bass
Join us for our first season of Music at Wellington Square Courtyard.

Time
The gates will open at 6pm for you to come in. Vendors will be set up at that time. Live music is from 7-9pm.
Cost
Online tickets are available for $12 plus processing fees until 7 pm the day the event starts. We will take tickets for $15 at the door. You can pay with CASH, CASHAP, VENMO, or PAYPAL. Children 12 and under are free.
Where
We are located in the centermost part of Wellington Square. While there are several entrances to the courtyard, we recommend that you come in through the entrance behind Fast Eddies, but any entrance will work.
What to Bring
You will need to bring something to sit on like chairs or blankets. You may also bring your own food and drinks. Alcohol is allowed but please keep it family-friendly. We recommend calling ahead and ordering from one of the restaurants in the business park. Macaroni Joes, Schlotzsky’s Deli, Dyers BBQ, and Sharky’s Burrito are all within walking distance from the courtyard.
What we Provide
We will have fun live music and vendors. For this event, our vendors are Spirit of our Awakening, Nutrify Skin, and DCoolestHenna.
Insufficient Funds – Music at Wellington Square Courtyard – June 5, 2021, 7:00 pm – 9:00 pm
- Chuck Alexander – Vocals – Bass
- Dean Yates – Vocals – Guitars
- Mary Lyn – Vocals – Guitar
- Vick Richardson – Drums
Join us for our first season of Music at Wellington Square Courtyard.

Time
The gates will open at 6pm for you to come in. Vendors will be set up at that time. Live music is from 7-9pm.
Cost
Online tickets are available for $12 plus processing fees until 7 pm the day the event starts. We will take tickets for $15 at the door. You can pay with CASH, CASHAP, VENMO, or PAYPAL. Children 12 and under are free.
Where
We are located in the centermost part of Wellington Square. While there are several entrances to the courtyard, we recommend that you come in through the entrance behind Fast Eddies, but any entrance will work.
What to Bring
You will need to bring something to sit on like chairs or blankets. You may also bring your own food and drinks. Alcohol is allowed but please keep it family-friendly. We recommend calling ahead and ordering from one of the restaurants in the business park. Macaroni Joes, Schlotzsky’s Deli, Dyers BBQ, and Sharky’s Burrito are all within walking distance from the courtyard.
What we Provide
We will have fun live music and vendors. For this event, our vendors are Spirit of our Awakening, Nutrify Skin, and DCoolestHenna.
Time for Holiday Marketing Campaigns

Holiday Marketing Timeline
- November 1 – Review Holiday PPC* Campaign
- November 4 – Set Up Realistic Shipping Expectations & Timeframes On Websites
- November 8 – Launch Holiday PPC Campaign
- November 11 – Prepare Holiday Email Campaigns
- November 13 – Launch Holiday Theme & New Categories on Websites
- November 18 – Launch Holiday Email Campaign, Send Holiday Gift Guide Increase PPC Bids.
- December 2 – Send Second Holiday Email Newsletter.
- December 16 – Lower Bids On High Spending Keywords & Shopping Engine Products.
- December 20 – Promote “Last Day To Order Before Christmas”
*PPC = Pay Per Click Advertising through Google and Facebook
Made in Amarillo – Loop 335 Extension Progress, Canyon High School #3, Hillside Terrace Expansion











Shot on an iPhone 11 Pro
Resources
Increase File Upload Size Limit in PHP-Nginx
Change php.ini
From Terminal
- $ nano /etc/php/7.4/fpm/php.ini
- Set…
upload_max_filesize = 120M
post_max_size = 120M
Change Nginx config
From Terminal
- $ nano /etc/nginx/nginx.conf
- Set..
http {
#...
client_max_body_size 100m;
#...
}
Restart NGINX
# systemctl restart nginx.service
# systemctl start php7.4-fpm.service
Changes in WordPress-Multisite
Network Admin >> Dashboard >> Settings >> Network Settings. Look for Upload Settings
Also change value for Max upload file size

Resources
WooCommerce – Change the Button Background Color with CSS

Procedure
- Log in to WordPress
- From the Homepage go to “Customize
- Additional CSS
- Paste the following CSS Code
- Change the line that reads “background-color:#FC0” to the color of your choice.
CSS Code
.woocommerce span.onsale {
background-color: #000000;
color: #ffffff;
}
.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {
background-color:#FC0 !important;
color:white !important;
text-shadow: transparent !important;
box-shadow: none;
border-color:#FF9900 !important;
}
.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover {
background-color:#FC0 !important;
color:white !important;
text-shadow: transparent !important;
box-shadow: none;
border-color:#FF9900 !important;
}
.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {
background-color:#FC0 !important;
color:white !important;
text-shadow: transparent !important;
border-color:#FF9900 !important;
}
.woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {
background-color:#FC0 !important;
box-shadow: none;
text-shadow: transparent !important;
color:white !important;
border-color:#FF9900 !important;
Made In Amarillo: Youngblood’s Cafe
