BLOG TOPICS

How Artificial Intelligence can Help Improve e-Commerce Sites

Written by Graham Jones

It wasn’t long ago when we heard the words “I’ll be back,” strewn across the screens of millions. Where a black sunglasses and leather clad Arnold Schwarzenegger stands with a smoking shotgun. He came from a devastated and desolate future ruled by the cruel superintelligence of SkyNet with the steel fist of the Terminators. Is this what is waiting right around the corner for humanity in the years to come?

What is Artificial Intelligence (AI)

 According to Merriam Webster

  1. a branch of computer science dealing with the simulation of intelligent behavior in computers
  2. the capability of a machine to imitate intelligent human behavior

AI is the use of predictive algorithms that use social trends to come to outcomes and that account from previous interactions. Using these features to emulate human behavior and intelligence. See, it isn’t always a robot from the future with a shotgun!

When will Artificial Intelligence be in our Daily Lives

I hate to break it to the people out there terrified by the fact of Artificial Intelligence (AI), but it is already a part of daily life. Have you ever searched on Google and the drop down attempts to guess the search result. That is AI. When you use Siri or Google Assistant to see what the weather outside is. That is AI. When you get a fraud notification from your bank stopping a possible threat to your identity. That is AI. I know this might be frightening, or surprising information to some. However, this can possibly help your e-commerce site get to the next level.

How can AI Help Improve E-Commerce Sites

Chatbots

A joke text between a person and a chatbot

 

 

 

 

 

 

 

 

Chatbots allow a way to provide customer service while simultaneously freeing up human resources saving you money and employee frustration. They provide quality customer service 24/7 with quick responses that can satisfy the most frustrated of customers. Using Chatbot AI it can reduce user errors. Plus they can sprinkle some humor into any conversation, and they never are in a bad mood. 

AI network surrounds a human brain

Inventory Management

Through the use of Artificial Intelligence inventory has never been easier to manage warehouse inventory around the world. AI has the capability to predict demand based on algorithms and external data. It can sort through massive amounts of data to determine trends and help keep items in stock. Adding the fact that robotic automation is helping save costs, streamlining production, and eliminate user error. Keeping your customers happy and your profits up.

Recommendation Upselling

Through the collection of previous users and visits to a website, AI can determine trends and pinpoint products that a specific customers might want. This provides a personal touch to an immersive website experience that allows the customer to see the products they want. Not having to wade through products that are less desirable can make the shopping experience even more streamlined.

So about the Takeover…

AI contributes to our daily life constantly whether we notice it or not. The desolate future that we see in the movies is not an issue of today. It isn’t evil, but a beneficial tool. Why not let it be a solution or improvement to some of your e-commerce needs? Let Magento be the catalyst to improving your business. Contact Crimson Agility for your Magento needs “come with us if you want to live” and get even higher profits.

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on LinkedIn.

About the Author: Originally from Canada, My family and I moved down to Arizona when I was young providing me the great opportunity to grow-up in this beautiful state and country. I previously worked in the medical field as a Quality Assurance Manager, and was given the great opportunity to break into the field of eCommerce. I am excited to work for the Crimson Agility Team as a QA Analyst!

Tips and Tricks for Styling Magento 2 Websites

Written by Rich Samartino

One of the driving principles in software development is DRY – ‘Don’t Repeat Yourself’. This has led to the rise of package managers like PHP’s Composer, which is utilized by Magento 2 – one of the key differentiators between it and Magento 1.

In a similar way, Magento 2’s usage of the Less CSS preprocessor allows frontend developers to join the DRY movement. Instead of redeclaring font colors, page widths, or input border styles in multiple places, CSS preprocessors allow these values to be declared as variables.

An even more powerful feature is mixins, which allow entire blocks of styles to be declared as a kind of function, with or without arguments, that can then be used in multiple places. It is similar in concept to declaring a PHP abstract class which is then used as-is or modified by the implementing child class.

The Magento team built an extensive frontend library utilizing Less variables and mixins so that developers can customize the default theme with minimal amounts of custom code. Below, I’ll show some examples how to do this, and highlight some other useful features to make your frontend Magento 2 development a little easier.

Utilizing the Magento UI Library 

Magento-UI Library Variables

 

 

 

 

 

 

 

 

 

 

 

 

 

As documented in Magento DevDocs, your custom theme can totally transform the look and feel of default Magento styles simply by redefining a few Less variables, as shown in this example:

Ideally, your variable redefinitions should go in <theme_dir>/web/css/source/_extend.less (they can also go in <theme_dir>/web/css/source/_theme.less, but this will override the parent theme’s _theme.less file.)

One question is, how do you know which variables to override? Consult the Magento UI Library docs, or inspecting default styles in the browser (made easier with CSS source maps and Grunt, covered below), will reveal which Less mixin is outputting the style, and inspecting that mixin will tell you which variable contains the value you want to change.

For example, the Luma theme styles primary action buttons here with a mixin defined here. Looking at that mixin, you can see that various button styles default to Less variables; for example the background color defaults to the @button-primary__color variable. So, redefining the @button-primary__color in your _extend.less file will change the background color of those buttons throughout the website.

It’s worth reading through the DevDocs on this topic and familiarizing yourself with all of the different mixins and variables used by the UI Library because it will save you a lot of lines of code now and make your styles much more maintainable and extendable in the long run – unless you’re a WET programmer – ‘we enjoy typing’ 😉

Using Mixins Defined in _utilities.less

Some handy (and less documented, as far as I can tell) mixins are located in _utilities.less. Some styles, like flexbox, require vendor prefixes to maintain compatibility with older browsers. Magento wrote a mixin to save you from typing out these prefixes. There’s also a more generic .lib-css() mixin that will output these vendor prefixes for any CSS style if the @_prefix argument is specified.

Again, it could be worth spending a few minutes perusing _utilities.less since some other handy mixins are included, like .lib-url which makes referencing asset urls a little easier (but mysteriously isn’t used in core code anywhere…)

All Styles Should Be Wrapped in Magento Media Query

Personally I don’t think this was a great idea by Magento, but all styles, even those which don’t target a certain screen size, should be wrapped in a media query, or else they will be output in both styles-m.css and styles-l.css, making browser debugging harder and file sizes bigger. You can find many examples of these media queries in core code, including here.

Compiling Styles with Grunt

Your frontend development will be made much easier by using Grunt to compile styles, rather than clearing pub/static and relying on PHP to process Less styles. Grunt compiles styles faster and produces CSS source maps, which allow you to see exactly which Less file styles are coming from in your browser. Grunt setup and usage is well documented here.

Conclusion

As you can see above, taking some time to investigate Magento’s Less-based UI Library will make writing styles for Magento much more interesting, less repetitive and more maintainable.

While this is all a great improvement over writing styles in .css files, technologies such as Less and Grunt, originally included in Magento during its development ~5 years ago, have been surpassed in popularity or technological superiority by Sass, Gulp, npm scripts, webpack and probably many other technologies I’m not aware of. Additionally, Magento might have chosen to base its default styles on a more actively developed library like Bootstrap, which can be included in a project’s build pipeline using Sass files and extended similarly to how I described extending Magento’s homegrown UI Library above.

So, try to master, but don’t feel limited by Magento’s default styles framework. Here at Crimson Agility’s Arizona office, our goal is to make your code as DRY as the Sonoran Desert 🙂

Until next time, let’s get social! Like us on Facebookfollow us on TwitterInstagram and on LinkedIn.

 

About the Author: Drawn to the open source, modern architecture of Magento 2, Rich has channeled his passion for technology into mastering the trade of E-Commerce Engineer. Originally an IT major, Rich spent several years away from technology exploring many ‘offline’ aspects of life, picking up skills such as knitting and guitar-playing, but eventually gravitated back to technology to build web applications for several nonprofits. With the seed of object-oriented web development planted, Rich continued to blossom as a web developer with an innovative sleep technology company, playing an integral role in launching its new Magento 2 website. Hungry for more Magento 2 experience, Rich has landed at Crimson Agility, where he looks forward to applying his talents to build you a great website!

Why Magento Best Practices are Important to Your Business

Written by Erica Summers

What are you really getting out of a team of Magento experts? Why pay the extra fee to do something the “best practice” way, instead of the quickest or cheapest? And what will one approach versus another cost you in the long run?

If you ever hear from a development team about doing things to follow “best practice”, or are working on estimating different tasks or features and get a few different approaches and time estimates, there’s a very important reason why. It comes down to the versatility of Magento. For instance, Magento’s open source platform has been around for over a decade. It’s a large, complex piece of software that is continually growing and changing, with a large worldwide community of developers continuously improving it. With this never-ending change and growth, code ends up being refactored, standards change, and new features are added. All of this translates into one important takeaway: there is no one way to get something done.

In fact, for any given task or feature there’s probably tens or hundreds of different ways to do the exact same thing, and at one given point in time some of them were the “best practice” way, but that changed and has now become obsolete.

So what does this mean for you as a client?

In short, it comes down to picking the right team and knowing you can rely on their expertise.

There is a growing number of Magento-specific developers and each will have their own way of doing things. Often, you get what you pay for, with cheaper services getting the same thing done but in a way that’s inefficient, disorganized, and ends up costing more in the long-run to fix or upgrade when needs change. Sometimes you’ll lose inbuilt Magento features, or they won’t work as intended because updates were not completed in a way that is upgrade-safe working within Magento official guidelines.

The value you get when working with a certified Magento partner is knowing that not only will the work get done and things will be up and running, but that we will ensure we are working within best practices, keeping up with the standards. This means you have a reliable site that leverages all the exciting inbuilt Magento features and is easy to upgrade, customize, or change. It gives you more flexibility, ability to grow, and reduce cost over time. It also means that you’ll work with a team who won’t just hack at the code to get something done, but will think critically about what the best approach is to get the work done, and how it might need to grow in the long run.

You need a team focused on the big picture. A team that’s dedicated to high-quality service, keeping up with industry standards, and is always learning and growing.

That’s where we come in.

How Can Crimson Agility Help you Graduate to Magento Commerce 2?

We have migration options! We offer three MAGENTO QUICK START PACKAGES that are fixed-cost implementation solutions. Our packages offer great price points whether you are a small business or large enterprise wanting to move to Magento Commerce. Making the move doesn’t have to be hard and will result in improved security & performance, seamless shopping everywhere with PWA, increased conversion rates, more streamlined operations, and a better overall end-user experience.

Contact us today and learn more, we are here to help and love what we do.

About Author: Erica Summers, is passionate about both design and functionality, creating the best tool for the job and then giving it an edge. I started as a designer and front-end developer over a decade ago before jumping into JavaScript and PHP and have been focused on backend ever since. I love technology and finding new creative ways to solve problems! Also, I’m new to Arizona and learning my way around the area but I’m loving it so far!

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on LinkedIn.

 

picture to promote blog post

6 Ways to Have an Effortless Summer BBQ

6 Ways to Have an Effortless Summer BBQ

Here comes summer and it couldn’t be any warmer here in the Valley of the Sun. With summer temperatures sure to soar into the hundreds, we recommend you set aside a few weekends for relaxing by the pool. Hosting a fun family BBQ is a great way to endure the summer sun.

1.  Protect yourself from the flames of summer with a sturdy apron. Staying safe from the heat of the grill is just as important as staying safe from the sun.

Apron – Mason Brown by The Spice & Tea Exchange $45.99

2. Shake down for some well grilled meat with these great flavors. Bring that restaurant quality steak to your home kitchen.

Griller’s Shaker Gift Set by The Spice & Tea Exchange $38.99

3. Pick up the slack with this great array of utensils. You’ll need more than just your average kitchen tongs to do battle with the fiery flames on the grill.

BBQ Tool Set – 3 PC by The Spice & Tea Exchange $29.99

4. Stay prepped and ready for anything. A mess, a spill or a bit of dirt can be gone in a flash if you have a towel on hand.

Tea Towel – Renew Denim by The Spice & Tea Exchange $9.99

5. Add some spice to the sea with a set of spice shakers. You’ll seem like a well seasoned chef right of the high seas.

Fisherman’s Shaker Gift Set by The Spice & Tea Exchange $38.99

6. After you have finished showing off your masterful cooking and grilling skills, sit back and relax with a nice cup of your favorite homemade iced tea. Fresh and delicious can be just a few minutes away.

Infuser- Tea Nest by The Spice & Tea Exchange $15.99

All these products are available from The Spice & Tea Exchange. They offer more than 140 spices, over 80 exclusive hand-mixed blends, 20+ naturally-flavored sugars, an array of salts from around the world, and more than 40 exotic teas. The Spice & Tea Exchange uses the eCommerce platform Magento to process its online store.

Magneto is an eCommerce platform recently bought by Adobe that is helping businesses like theirs manage their orders and buying process. Magento takes all your website’s needs and puts them into the same experience. No matter what you decide to do this summer, keep us in mind. Here at Crimson Agility we can help you keep your Magento site in tip top shape. Whether you need an upgrade or just a bit of help we’ve got you covered, so call us and relax poolside this summer.

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on Linked In.

Thanks for stopping by!

Crimson Agility Team

header image for blog post

Why Use Two-Factor Authentication?

Why Use Two-Factor Authentication?

Using the web can be rewarding, but with those rewards come some risks. We’re all connected on the internet, and with that connectivity we are at risk from malicious actions and attempts to gain access to our sensitive information. In E-Commerce we apply best practices to protect companies and individual buyers from these potential security risks. Magento Two-Factor Authentication (TFA) allows for all users to secure their information from cyber attacks.  This authentication method works by attaching specific accounts to a users personal device which adds an additional layer of confirmation for the online service, and peace of mind for the individual logging in. Protecting users from fraud protection is only one of the benefits to using this method. It also provides a way for technology novices and experts to better safeguard their account information. Here are some of the best Magento extensions and tips that can protect your website and your customers from potential attacks.

Improved Security

Strong passwords are a great place to start, but hackers still have methods to crack even the most creative of passwords. Two-Factor Authentication adds a physical action to logging in by incorporating a device, such as a smartphone, tablet, or token. A one time code is generated and delivered to the user in the form of an SMS or automated call that cannot be hacked. 

Lower Customer Service Cost

Using a Two-Factor Authentication can help curb the cost of customer service issues. Auth0 states from an HDI study that 35-40% of service calls are related to password resets. By implementing TFA you can effectively eliminate password reset calls from getting to customer service. TFA can save the company money and resources by reducing low tier issue calls and keeping customer service focused on other, more important, issues.

Reduce Online Fraud

There have been a recent slew of data breaches recently. Large companies like  Facebook, Yahoo, and Target have suffered from successful cyber attacks exposing hundreds of millions of customers personal information.  It becomes apparent that data breaches could happen to any company. This is why companies like Gmail, Apple Pay, PayPal, Evernote, Dropbox, and LinkedIn have moved to Two-Factor Authentication. It prevents sensitive information from falling into the wrong hands. However, the protection of data can be left in the right hands, every company should be proactive and take it upon themselves to protect their customers from potential threats online.

How to Better Protect Your Users?

You can start taking action by using Magento Two-Factor Authentication extensions on your E-Commerce store. Some extensions that are already in use: Google Authenticator, U2F Devices, Duo Security, and Authy. Become proactive and don’t wait to react to cyber threats. Empower yourself and your customers to bring cyber security into the physical world by using TFA.

Security and staying updated is essential for any eCommerce experience. Let us here at Crimson Agility handle your Magento and eCommerce questions. Contact Crimson Agility today to see what would work for your security needs.

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on Linked In.

Thanks for stopping by!

Crimson Agility Team

The Top 5 Best Places to Hike in Arizona

The Top 5 Best Places to Hike in Arizona

We all need a little time spent outside of the office and there is no better place to go than the great outdoors. Much of what is Arizona used to be volcanic. These long dormant volcanoes are now part of the many scenic hiking trails scattered throughout the state. With so many great places to visit, you may have to limit yourself to just a few. That is why we’ve put together a list of our top 5 favorite places to hike in Arizona.

1. The Grand Canyon

One of the natural wonders of the world, the Grand Canyon draws millions of people to the stunning nature preserve in northern Arizona. With breathtaking views from a mile above the Colorado river it is no wonder so many people choose to make the all-day hike from rim to rim. Here, the weather can change drastically between the rim and the basin, so you will need to be prepared for both extremes and the even colder temperatures that come at night.

2. Sedona

Like the Grand Canyon, the red rock mountains of Sedona are both striking and memorable. The contrast of red rock jutting out from the lush pine forests can take your breath away. A popular spot to visit is the Devil’s Bridge, a nearly freestanding tower of stone. The hike to the stone bridge can go from hot to chilly as you move into the shade of the buttes. Another great spot is Bell Rock which is an easy walk to the top.

3. Camelback Mountain

Named for its appearance, Camelback Mountain is one of the most accessible hiking spots in Phoenix. It is in the center of the urban sprawl making it a great spot for a quick early morning hike. From the top, it has spectacular views of the city scape and the other smaller hiking spots sprinkled throughout the valley. If you plan on experiencing the dramatic colors of an Arizona sunset, there is no better place than from atop Camelback Mountain.

4. Superstition Mountain

Located to the east of the Phoenix Valley are the majestic Superstitions Mountains. The remnants of long dormant volcanoes, they possess a unique appearance and an interesting past. These mountains are known for their many jutting red rocks and superstitious legends. The most famous story is of the Lost Dutchman Mines, a gold mine worth over 2 million dollars that has been lost for centuries.

5. Humphrey’s Peak

If you’re looking for a challenge, head north to Humphrey’s Peak, the highest point in Arizona and home of some fantastic views. This is a high difficulty hike and not for the light of heart. It can be a long hike to the top where the total elevation is 12,633 feet. Stay aware of other hikers as you make your journey and come prepared for the difficult terrain.

 

No matter what height you aspire to Biofreeze can help you reach it. For the past 25 years, they have been helping people overcome their pain with their pain relief formula that comes in a variety of convenient forms such as spray or gel. It’s fast acting, long lasting, and powerful enough to keep you going.

To manage their online store, Biofreeze uses the eCommerce platform Magento. Magento is an eCommerce platform recently bought by Adobe that is helping businesses like theirs manage their orders and buying process. Biofreeze has customized Magento to fit their unique needs through their partnership with Crimson Agility, a Magento services firm. Crimson Agility is a full service Magento services firm with in-depth knowledge of the Magento platform and e-Commerce as well as years of industry experience and successful implementations.

If you are also interested in using Magento contact us to see how you can make the switch

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on Linked In.

Thanks for stopping by!

Crimson Agility Team

Why You Should Upgrade to Magento 2.3

Magento has announced that as of January 2020, Magento 2.2 will no longer be supported. This means new versions will no longer be released for any Magento 2.2 instance, whether it’s security updates or bug fixes. With this news, you should be looking to upgrade to Magento 2.3 in the near future. In this post, I will explain the major differences between 2.2 and 2.3, and why you should be upgrading. There are many minor bug fixes and security updates that have happened in the changelogs for 2.3, but I will be mainly focused on the major changes: new functionality and major security improvements.

Magento Open Source

Magento Open Source 2.3 comes with quite a few new features, such as Multi Source Inventory, PWI, declarative schema, GraphQL, and many others. In this section we will go in-depth for each one.

Multi-Source Inventory

Multi Source Inventory (MSI) allows merchants to have multiple different warehouses, brick and mortar stores, or distribution centers, and ship from each one depending on which location has the product ordered in stock and even which warehouse is closest to the shipping address on the order. This can help decrease not only shipping times, but also shipping costs.

PWA Studio

Progressive Web Apps (PWA) Studio allows for developers to create a much more intuitive mobile application and can increase performance on mobile devices immensely. In 2018, over 52% of all web traffic came from mobile devices, so having a performative, intuitive, and attractive mobile website is vital in today’s day and age.

GraphQL

This is more of a developer’s tool, however it’s incredibly useful. This allows much quicker and easier manipulation of databases. When used correctly, it can send and receive database information much more efficiently than the standard MySQL system that Magento 2.2 uses 

Declarative Schema

This is another developer tool but is also really helpful for Magento when releasing new security patches. Declarative schema allows developers to declare how they want the database to be structured without having to maintain an upgrade or install script in the module. This means that Magento can make database schema changes in patches, which wasn’t previously possible. 

Magento Commerce

Magento Commerce has all of the Magento Open Source changes, along with a few extras. In this section we will go over a few of the improvements that aren’t included in the Magento Open Source Version.

Page Builder

One of the most impressive improvements in Magento 2.3 thus far is the page builder. This has vastly improved the CMS content development and makes it extremely easy for merchants to set up their static content without the need of a developer.

CMS Improvements

In situations where you use the WYSIWYG editor but the page builder isn’t available, the WYSIWYG editor has also had some great improvements. If you’ve used the Magento 2.2 WYSIWYG editor, you have probably noticed a plethora of icons, many of which are hard to understand. In 2.3 they streamlined the WYSIWYG editor to look much more simplistic and easier to understand.

 

There’s a multitude of reasons to upgrade to Magento 2.3. Due to a SQL injection vulnerability found in 2.3.0, we highly recommend skipping 2.3.0 and upgrading straight to 2.3.1. If you are already on 2.3.0 and haven’t applied the patch to fix the vulnerability or upgraded to 2.3.1, upgrade immediately. For those of you currently on 2.2, due to Magento dropping support of 2.2 as of January 2020, it’s best to upgrade soon. We can help you upgrade to 2.3.1 as well! Just contact us here so we can get started. 

Have you heard about our new webinar happening on June 20th? We are going to be discussing about B2B commerce and using Magento 2.3 It will begin at 9:00 AM

Until next time, let’s get social!  Like us on Facebookfollow us on TwitterInstagram and on Linked In.

Thanks for stopping by!

Crimson Agility Team

Technology

Support

Responsive Web Design