Torque Toons: The Famous “Five Minute Fork” of WordPress

I was chatting with someone about ClassicPress recently and they said “You know, WordPress gets forked thousands of times a day. In the most basic sense, WordPress is forked every time you download it.” Don’t forget to check out our other editorial toons!
The post Torque Toons: The Famous “Five Minute Fork” of WordPress appeared first on Torque.
Read more

Official WooCommerce Android App Now in Beta

The first official WooCommerce Android app is now in open beta. The companion mobile app allows users to manage their WooCommerce stores on the go. Store owners who want to test the unreleased version of the mobile app can sign up with the Google Play Store. The WooCommerce app requires (more…)
Read more

Skills You Need to Develop into a Great Blogger

Are you having trouble improving the quality of your blog? Do you find it difficult taking your blog to the next level? The time and effort that is consumed to create and manage a single blog post is a struggle that bloggers know all too well. Blogging just isn’t as an easy feat as it …
The post Skills You Need to Develop into a Great Blogger appeared first on Torque.
Read more

How to Save Abandoned Carts in WooCommerce

According to Built With WooCommerce is the most popular ecommerce solution used by shop owners. And the reasons are quite clear it’s free, flexible, simple to use, and has great documentation. It’s no wonder so many people use it! Though the plugin is incredibly full-featured, it can’t help in terms of shopping cart abandonment. In …
The post How to Save Abandoned Carts in WooCommerce appeared first on Torque.
Read more

What’s the difference between ./dogs.html and /dogs.html?

They are both URL paths. They have different names, though.

<!-- root-relative -->
<a href="./dogs.html">Dogs</a>

<!– absolute –>
<a href=”/dogs.html”>Dogs</a>

There are also fully-qualified URLs that would be like:

<!-- fully qualified -->
<a href="https://website.com/dogs.html">Dogs</a>

Fully-qualified URL’s are pretty obvious in what they do — that link takes you to that exact place. So, let’s look those first two examples again.

Say you have a directory structure like this on your site:

public/
├── index.html
└── animals/
├── cats.html

The post What’s the difference between ./dogs.html and /dogs.html? appeared first on CSS-Tricks.

Read more

15+ Best VSCO Lightroom Presets

VSCO is a popular photography app for both Android and iOS, known for stunning filters and effects. Today we’re featuring a selection of VSCO Lightroom presets, inspired by the VSCO app, to help you achieve similar results with greater power and flexibility. If you have a copy of Lightroom, you probably want to have more […]
Read more

Updating a CSS Variable with JavaScript

Here’s a CSS variable (formally called a “CSS custom property“):

:root {
--mouse-x: 0px;
--mouse-y: 0px;
}

Perhaps you use them to set a position:

.mover {
left: var(--mouse-x);
top: var(--mouse-y);
}

To update those values from JavaScript, you’d:

let root = document.documentElement;

root.addEventListener(“mousemove”, e => {
root.style.setProperty(‘–mouse-x’, e.clientX + “px”);
root.style.setProperty(‘–mouse-y’, e.clientY + “px”);
});

That’s all.

See the Pen Set CSS Variable with JavaScript by Chris Coyier (@chriscoyier) on CodePen.…

The post Updating a CSS Variable with JavaScript appeared first on CSS-Tricks.

Read more

WordCamp Wilmington Cancelled Due to Hurricane Florence

Hurricane Florence is forecast to make landfall as a major hurricane near Wilmington, North Carolina bringing potentially catastrophic flooding and strong winds to the region. Hurricane Florence Forecast Track From the National Hurricane Center Because of the hurricane, WordCamp Wilmington which was scheduled to take place September 22nd and 23rd (more…)
Read more

Why State Management, Like Redux, May Solve Your Problems

It’s only recently occurred to me that I’ve been doing WordPress, PHP, and JavaScript development for a while. In the last 5-6 years, I’ve learned some best practices that are no longer the best. For example, state management — the practice of putting all of the dynamic values of your application — a user inputs …
The post Why State Management, Like Redux, May Solve Your Problems appeared first on Torque.
Read more