Skip to content
View tpage99's full-sized avatar

Organizations

@ShopDev-Alliance

Block or report tpage99

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tpage99/README.md

Hi I'm Taylor! 👋

I’m currently working on

I’m currently learning

Shopify App Dev.

I’m looking to collaborate on

Building community in the Shopify Developer space.

I’m looking for help with

Bringing the most value to Shopify merchants.

How to reach me

Check out my SDA profile for all the places I am online.

Fun fact

I used to be a social worker.

Pinned Loading

  1. Migrate legacy metafield definitions... Migrate legacy metafield definitions to Shopify's native editor
    1
    # Migrate Legacy Metafields 
    2
    If an error occurs for a value already existing for a metafield (legacy) but isn't available, navigate to: 
    3
    
                  
    4
    `/admin/metafields/[type]/migrate/[namespace]/[key]`
    5
    
                  
  2. a11yfirst a11yfirst Public

    Hacktoberfest project to promote accessibility and inclusion!

    JavaScript 46 19

  3. Cart API Frequently Used - Vanilla JS Cart API Frequently Used - Vanilla JS
    1
    // Always compare to the docs first: https://shopify.dev/docs/api/ajax/reference/cart
    2
    
                  
    3
    // Get the Cart
    4
    fetch("/cart.js")
    5
      .then((response) => response.json())
  4. ShopifyCounter ShopifyCounter Public

    Shopify Counter with Netlify Serverless Functions

    JavaScript

  5. A11y Tricks with JS to Improve UX A11y Tricks with JS to Improve UX
    1
    // Drop this bad chad into console to help determine active focus element and tab through items slowly
    2
    window.setInterval(()=> { console.log(document.activeElement); }, 3000)
  6. Helpful rules for Shopify Exports Helpful rules for Shopify Exports
    1
    # Helpful Tips for Shopify Exports 
    2
    Shopify provides CSV exports/imports for various resources (products, URL redirects, etc). Here are some handy rules when manipulating data from old sources such as when updating during the course of a platform migration to Shopify
    3
    
                  
    4
    
                  
    5
    ## Add two columns together