SELECT 
  products.*, 
  product_descriptions.*, 
  MIN(
    IF(
      product_prices.percentage_discount = 0, 
      product_prices.price, 
      product_prices.price - (
        product_prices.price * product_prices.percentage_discount
      )/ 100
    )
  ) as price, 
  GROUP_CONCAT(
    CASE WHEN (
      products_categories.link_type = 'M'
    ) THEN CONCAT(
      products_categories.category_id, 
      'M'
    ) ELSE products_categories.category_id END 
    ORDER BY 
      categories.storefront_id IN (0, 1) DESC, 
      (
        products_categories.link_type = 'M'
      ) DESC, 
      products_categories.category_position ASC, 
      products_categories.category_id ASC
  ) as category_ids, 
  popularity.total as popularity, 
  company_descr.i18n_company as company_name, 
  cd.terms, 
  seo_names.name as seo_name, 
  seo_names.path as seo_path, 
  company_descriptions.company_description, 
  discussion.type as discussion_type 
FROM 
  products 
  LEFT JOIN product_prices ON product_prices.product_id = products.product_id 
  AND product_prices.lower_limit = 1 
  AND product_prices.usergroup_id IN (0, 0, 1) 
  LEFT JOIN product_descriptions ON product_descriptions.product_id = products.product_id 
  AND product_descriptions.lang_code = 'en' 
  LEFT JOIN company_descriptions as company_descr ON company_descr.company_id = products.company_id 
  AND company_descr.lang_code = 'en' 
  LEFT JOIN companies as companies ON companies.company_id = products.company_id 
  INNER JOIN products_categories ON products_categories.product_id = products.product_id 
  INNER JOIN categories ON categories.category_id = products_categories.category_id 
  AND categories.storefront_id IN (0, 1) 
  AND (
    categories.usergroup_ids = '' 
    OR FIND_IN_SET(0, categories.usergroup_ids) 
    OR FIND_IN_SET(1, categories.usergroup_ids)
  ) 
  AND (
    products.usergroup_ids = '' 
    OR FIND_IN_SET(0, products.usergroup_ids) 
    OR FIND_IN_SET(1, products.usergroup_ids)
  ) 
  AND categories.status IN ('A', 'H') 
  AND products.status IN ('A', 'H') 
  LEFT JOIN product_popularity as popularity ON popularity.product_id = products.product_id 
  LEFT JOIN company_descriptions AS cd ON cd.company_id = products.company_id 
  AND cd.lang_code = 'en' 
  LEFT JOIN seo_names ON seo_names.object_id = 450154 
  AND seo_names.type = 'p' 
  AND seo_names.dispatch = '' 
  AND seo_names.lang_code = 'en' 
  LEFT JOIN company_descriptions AS company_descriptions ON company_descriptions.company_id = products.company_id 
  AND company_descriptions.lang_code = 'en' 
  LEFT JOIN discussion ON discussion.object_id = products.product_id 
  AND discussion.object_type = 'P' 
WHERE 
  products.product_id = 450154 
  AND (
    companies.status IN ('A') 
    OR products.company_id = 0
  ) 
GROUP BY 
  products.product_id

Query time 0.00571

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost_info": {
      "query_cost": "5.22"
    },
    "grouping_operation": {
      "using_filesort": false,
      "nested_loop": [
        {
          "table": {
            "table_name": "products",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY",
              "status",
              "idx_company_id",
              "idx_usergroup_ids"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.00",
              "eval_cost": "0.10",
              "prefix_cost": "0.00",
              "data_read_per_join": "4K"
            },
            "used_columns": [
              "product_id",
              "product_code",
              "product_type",
              "status",
              "company_id",
              "list_price",
              "amount",
              "weight",
              "length",
              "width",
              "height",
              "shipping_freight",
              "low_avail_limit",
              "timestamp",
              "updated_timestamp",
              "usergroup_ids",
              "is_edp",
              "edp_shipping",
              "unlimited_download",
              "tracking",
              "free_shipping",
              "zero_price_action",
              "is_pbp",
              "is_op",
              "is_oper",
              "is_returnable",
              "return_period",
              "avail_since",
              "out_of_stock_actions",
              "localization",
              "min_qty",
              "max_qty",
              "qty_step",
              "list_qty_count",
              "tax_ids",
              "age_verification",
              "age_limit",
              "options_type",
              "exceptions_type",
              "details_layout",
              "shipping_params",
              "weight_lbs",
              "weight_oz",
              "product_tax_code",
              "deleted_at",
              "archived_at",
              "position"
            ]
          }
        },
        {
          "table": {
            "table_name": "popularity",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY",
              "total"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.00",
              "eval_cost": "0.10",
              "prefix_cost": "0.00",
              "data_read_per_join": "32"
            },
            "used_columns": [
              "product_id",
              "total"
            ]
          }
        },
        {
          "table": {
            "table_name": "cd",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "company_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.00",
              "eval_cost": "0.10",
              "prefix_cost": "0.00",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "company_id",
              "lang_code",
              "terms"
            ]
          }
        },
        {
          "table": {
            "table_name": "product_prices",
            "access_type": "ref",
            "possible_keys": [
              "usergroup",
              "product_id",
              "lower_limit",
              "usergroup_id"
            ],
            "key": "product_id",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.26",
              "eval_cost": "0.10",
              "prefix_cost": "0.36",
              "data_read_per_join": "24"
            },
            "used_columns": [
              "product_id",
              "price",
              "percentage_discount",
              "lower_limit",
              "usergroup_id"
            ],
            "attached_condition": "<if>(is_not_null_compl(product_prices), ((`goimagine`.`product_prices`.`lower_limit` = 1) and (`goimagine`.`product_prices`.`usergroup_id` in (0,0,1))), true)"
          }
        },
        {
          "table": {
            "table_name": "product_descriptions",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY",
              "product_id"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "product_id",
              "lang_code"
            ],
            "key_length": "11",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.63",
              "eval_cost": "0.10",
              "prefix_cost": "1.09",
              "data_read_per_join": "5K"
            },
            "used_columns": [
              "product_id",
              "lang_code",
              "product",
              "shortname",
              "short_description",
              "full_description",
              "meta_keywords",
              "meta_description",
              "search_words",
              "page_title",
              "age_warning_message",
              "promo_text",
              "cls_stop_words",
              "how_its_made",
              "custom_header"
            ]
          }
        },
        {
          "table": {
            "table_name": "company_descr",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "company_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.90",
              "eval_cost": "0.10",
              "prefix_cost": "2.09",
              "data_read_per_join": "1K"
            },
            "used_columns": [
              "company_id",
              "lang_code",
              "i18n_company"
            ]
          }
        },
        {
          "table": {
            "table_name": "companies",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "company_id"
            ],
            "key_length": "4",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 1,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.68",
              "eval_cost": "0.10",
              "prefix_cost": "2.87",
              "data_read_per_join": "14K"
            },
            "used_columns": [
              "company_id",
              "status"
            ],
            "attached_condition": "<if>(found_match(companies), ((`goimagine`.`companies`.`status` = 'A') or false), true)"
          }
        },
        {
          "table": {
            "table_name": "products_categories",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "pt"
            ],
            "key": "pt",
            "used_key_parts": [
              "product_id"
            ],
            "key_length": "3",
            "ref": [
              "const"
            ],
            "rows_examined_per_scan": 3,
            "rows_produced_per_join": 3,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.75",
              "eval_cost": "0.30",
              "prefix_cost": "3.92",
              "data_read_per_join": "48"
            },
            "used_columns": [
              "product_id",
              "category_id",
              "link_type",
              "category_position"
            ]
          }
        },
        {
          "table": {
            "table_name": "categories",
            "access_type": "eq_ref",
            "possible_keys": [
              "PRIMARY",
              "c_status",
              "p_category_id"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "category_id"
            ],
            "key_length": "3",
            "ref": [
              "goimagine.products_categories.category_id"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "5.00",
            "cost_info": {
              "read_cost": "0.75",
              "eval_cost": "0.02",
              "prefix_cost": "4.97",
              "data_read_per_join": "402"
            },
            "used_columns": [
              "category_id",
              "usergroup_ids",
              "status",
              "storefront_id"
            ],
            "attached_condition": "((`goimagine`.`categories`.`storefront_id` in (0,1)) and ((`goimagine`.`categories`.`usergroup_ids` = '') or (0 <> find_in_set(0,`goimagine`.`categories`.`usergroup_ids`)) or (0 <> find_in_set(1,`goimagine`.`categories`.`usergroup_ids`))) and (`goimagine`.`categories`.`status` in ('A','H')))"
          }
        },
        {
          "table": {
            "table_name": "seo_names",
            "access_type": "ref",
            "possible_keys": [
              "PRIMARY",
              "dispatch"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "object_id",
              "type",
              "dispatch",
              "lang_code"
            ],
            "key_length": "206",
            "ref": [
              "const",
              "const",
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.13",
              "eval_cost": "0.02",
              "prefix_cost": "5.11",
              "data_read_per_join": "260"
            },
            "used_columns": [
              "name",
              "object_id",
              "type",
              "dispatch",
              "path",
              "lang_code"
            ]
          }
        },
        {
          "table": {
            "table_name": "company_descriptions",
            "access_type": "const",
            "possible_keys": [
              "PRIMARY"
            ],
            "key": "PRIMARY",
            "used_key_parts": [
              "company_id",
              "lang_code"
            ],
            "key_length": "10",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.05",
              "eval_cost": "0.02",
              "prefix_cost": "5.17",
              "data_read_per_join": "266"
            },
            "used_columns": [
              "company_id",
              "lang_code",
              "company_description"
            ]
          }
        },
        {
          "table": {
            "table_name": "discussion",
            "access_type": "const",
            "possible_keys": [
              "object_id"
            ],
            "key": "object_id",
            "used_key_parts": [
              "object_id",
              "object_type"
            ],
            "key_length": "6",
            "ref": [
              "const",
              "const"
            ],
            "rows_examined_per_scan": 1,
            "rows_produced_per_join": 0,
            "filtered": "100.00",
            "cost_info": {
              "read_cost": "0.04",
              "eval_cost": "0.02",
              "prefix_cost": "5.23",
              "data_read_per_join": "3"
            },
            "used_columns": [
              "object_id",
              "object_type",
              "type"
            ]
          }
        }
      ]
    }
  }
}

Result

product_id product_code product_type status company_id list_price amount weight length width height shipping_freight low_avail_limit timestamp updated_timestamp usergroup_ids is_edp edp_shipping unlimited_download tracking free_shipping zero_price_action is_pbp is_op is_oper is_returnable return_period avail_since out_of_stock_actions localization min_qty max_qty qty_step list_qty_count tax_ids age_verification age_limit options_type exceptions_type details_layout shipping_params weight_lbs weight_oz product_tax_code deleted_at archived_at position lang_code product shortname short_description full_description meta_keywords meta_description search_words page_title age_warning_message promo_text cls_stop_words how_its_made custom_header price category_ids popularity company_name terms seo_name seo_path company_description discussion_type
450154 GI-450154-EYE P A 7 8.99 50 0.000 0 0 0 0.00 0 1706028216 1706028216 0 N N N B Y R N N N Y 10 1583899200 N 0 0 0 0 N 0 P F default a:5:{s:16:"min_items_in_box";i:0;s:16:"max_items_in_box";i:0;s:10:"box_length";i:0;s:9:"box_width";i:0;s:10:"box_height";i:0;} 0.000 0.000 2147483647 en Women Empower Women Shirt Decal [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] [CLONE] <p>Iron On Decals are wonderful for placing onto fabric shirts, canvas bags, onsies, & more!</p> <p>Women Empowerment Iron On Decals are wonderful for placing onto fabric shirts, canvas bags, onsies, & more! This listing is for the HEAT TRANSFER VINYL ONLY. Choose between 7 different styles! These decals are measured by the LONGEST LENGTH. The outfits are NOT included.</p> <p>If you are ordering multiple quantities you can choose different colors, they do NOT have to be<br>all the same. At checkout include the colors you'd like in the "NOTES TO SELLER" section.<br><br><strong>SIZING INFO:</strong><br>- Sizes are approximate<br>- Needing the exact height & width of decal? Message me BEFORE ordering<br><br><strong>DETAILS FOR HEAT TRANSFER DECALS:</strong><br>- Choose your color vinyl in the drop down menu<br>- Premium Vinyl is used for all Letters/Numbers/Symbols<br>- Parchment Paper Included (for ironing decal onto material)<br>- Heat Transfer Decals are not reusable<br>- Hand washing is suggested for fabrics that have decals applied<br>- Heat Transfer Decals CAN be applied with household irons on a flat surface<br>- Can use fabrics such as: cotton, polyester, canvas, polyester, & more<br><br><strong>WHAT'S INCLUDED IN YOUR ORDER</strong>:<br>- Heat Transfer Vinyl Decal, Parchment Paper, 1 Mini Surprise Tester (1 per order), Instruction Guide For Installation<br><br>** Please note vinyl colors can appear to be different on various screens/monitors</p> <p><br>Orders are non-refundable. Thanks for shopping!<br></p> <p>++++++++++++++++++++++++++++++++++++++++++++++++++++++++<br>IF DECAL IS DAMAGED:<br>If you receive a damaged decal, proof via photo is required thru message. Photo must be taken before ANY attempt to install the decal, as I am not liable for any faulty installation. Youtube has great instructions on how to install, if you need help. I'll gladly fix any issues from our end.<br></p> Strong Women Iron On Decal, Rosie Riveter Shirt, Riveter Decal, More Precious Shirt, Strong Women Decal, Actually I Can, Women Make History, strong women raise strong, powerful woman shirt, be the woman you needed shirt, find your wild, coffee Jesus grace Iron On Decals are wonderful for placing onto fabric shirts, canvas bags, onsies, & more! Strong Women Iron On Decal, Rosie Riveter Shirt, Riveter Decal, More Precious Shirt, Strong Women Decal, Actually I Can, Women Make History, strong women raise strong, powerful woman shirt, be the woman you needed shirt, find your wild, coffee Jesus grace, confident women empower women, Strong Women Iron On Decal, Find Your Wild, Powerful Women, More Precious, Strong Women, Actually I Can, Women Make History, Raise hiding place boutique, hidingplaceboutique hidingplaceboutique2, hiding place boutique 2, Women Empower Women Shirt Decal <p>All Orders Ship: 1-2 business days from order date</p> 7.99000000 3M,275,2959 123 Hiding Place Boutique <p><strong>Wholesale availability</strong></p> <p>***WHOLESALE PRICING - Are you interested in placing a bulk order? Want to have my products for sale at your business? Message me for special pricing</p> <p><strong>Need a RUSH Order - Choose Priority Shipping!!</strong></p> <p>If you are needing an order ASAP I am happy to move your order to the front of the line! You're shipping will be upgraded from first class to PRIORITY 2-3 BUSINESS DAY SHIPPING. Be sure to add on the RUSH priority shipping at checkout.</p> <p><strong>SHIPPING DELAY:</strong><br>I cannot give refunds for delays caused by USPS. There are many reasons for delays, weather, travel, etc. I can only estimate the time it will take to arrive - this applies to free shipping, first class shipping & priority.<br></p> <p><strong>RESHIPPING - FREE SHIPPING ORDERS :</strong></p> <p>Orders with FREE SHIPPING - if your order has been returned to me by the USPS post office for any reason (incorrect address, unable to deliver, unable to forward, etc), I can reship your order at $1.75. Your order applies for Free Shipping only on the first shipment out. My shop is not held responsible for orders that are returned to me with the address that was included when order was placed.<br></p> <p><strong>Holiday Shipping & Shop Vacation Dates</strong></p> <p>My Shop is Open 24/7 to accept orders -&nbsp; I DO NOT Ship December 23rd-27th in celebration of Christmas. Feel free to message me with questions and concerns on shipping and I am sure to respond is less than 24hrs. I appreciate your business and look forward to creating a special piece for you to enjoy!</p><p><br></p> <p><strong>Scrabble Tile Measurements</strong></p><p>All Tiles are .75x.75 inches tall/wide.</p><p><br></p> <p><strong>Best Photo Size for Custom Photo Holders</strong></p> <p>The best photo size to use with these tiny clothes pins are WALLET size. Other photos will fit, but the little holder can become top heavy and tip over.</p> <p><br></p> <p><strong>Can I change number at bottom of SMALL .75" x.75" tile??</strong></p> <p>Unfortunately, the numbers CANNOT be changed on the SMALL .75"x.75" scrabble tiles. I do not make the tiles myself.</p> <p><br></p> <p><strong>TRACKING INFORMATION:</strong><br>Please note: Small orders will NOT automatically include tracking, if you want the ability to track your order, please add that option on at checkout. If tracking has not been purchased, I cannot track your package.</p> <p><br></p> <p><strong>What's Included In EVERY Decal Order?</strong></p> <p>HEAT TRANSFER DECALS:<br>All Orders will receive&nbsp;</p> <p>Iron On HTV Decal</p> <p>1 mini surprise tester,</p> <p>Parchment paper,&nbsp;</p> <p>Instruction guide for installation<br><br><strong>REGULAR VINYL DECALS:</strong><br>All Orders will receive&nbsp;</p> <p>Vinyl Decal</p> <p>1 mini surprise tester&nbsp;</p> <p>Transfer tape</p> <p>Instruction guide for installation</p> <p><br></p> <p><strong>Sizing details for Decals</strong></p> <p>All decal sizes are measured by the LONGEST SIDE: For Vertical decals, the size is the HEIGHT. For Horizontal decals, the size is the WIDTH. If you are needing to know the exact height & width of a decal, PLEASE message me BEFORE ordering. I cannot accept return orders for sizing errors. I will be happy to offer a discount on another decal in a different size, if the size ordered was not what was actually needed.<br><br>See my commonly ordered shirt chart in each listings for helpful sizes to choose from. I ENCOURAGE ALL CUSTOMERS to measure the surface/shirt area BEFORE purchasing, as I cannot accept returns on orders, due to improper measuring. Please message me with any questions, I always reply asap!</p> <p><br></p> <p><strong>How To Apply Heat Transfer Vinyl to Fabric</strong></p> <p>Along with the instructions included in your package, I encourage first time users to check out this Youtube Video on a tutorial to apply your heat transfer vinyl. Feel free to search for more videos if you need more assistance in applying - &nbsp;<span></span></p> <div class="video-container"><iframe width="500" height="281" src="//www.youtube.com/embed/Wp2Mr63PaYg" frameborder="0" allowfullscreen=""></iframe></div> <p><span></span></p> <p><br></p> <p><strong>How To Apply Regular Oracal 651 Vinyl to Flat Surfac</strong>e</p> <p>Along with the instructions included in your package, I encourage first time users to check out this Check out this Youtube Video on a tutorial to apply your vinyl. Feel free to check out more videos if you need more assistance in applying - https://www.youtube.com/watch?</p> <p><br></p> <p><strong>WHERE TO PLACE DECALS & What Not To Do</strong></p> <p>VINYL DECALS: Can be applied to Mugs, Cups, Ceramics, Vehicles, Electronics, Windows, Musical Instruments & Cases, Bicycles, Helmets, Sports Equipment, & and almost any smooth surface.<br><br>- Do not microwave or wash cups in dishwasher that have decals applied<br><br>- Decals Should NOT be given to young children<br><br>***********************************************************<br><br>HEAT TRANSFER DECALS: Can be applied to shirts, jackets, onsies, pants, shoes, socks, purses, canvas, aprons, pillows, and more.<br><br>- It is recommend that clothing with vinyl decals be washed on delicate and hung up to dry. Placing in dryer will shorten the lifespan of the HTV on your clothing. There is no guarantee how long the vinyl will last, it all depends use/treatment</p> <p><br></p> <p><strong>Damaged Decal OR Refunds</strong></p> <p>If you receive a damaged decal, proof via photo is required thru Etsy message. Photo must be taken before ANY attempt to install the decal, as I am not liable for any faulty installation. Youtube has great instructions on how to install, if you need help. I'll gladly fix any issues from my end.<strong><br></strong></p> <p><strong><br></strong></p> <p><strong>Lost Package/REFUNDS</strong></p> <p>If your order is lost in the mail, I will be happy to remake and ship for $5 (per item) first class OR $8 (per item) priority. Please message me, if your order has not arrived 5 weeks from the "Marked Shipped" date. I will create a listing for $5 or $8 (per item). Your NEW ORDER will me made and shipped ASAP!&nbsp;<br><br>On orders with FREESHIPPING - if an order is canceled/returned/refunded, $5 shipping/restocking fee will be taken out of the refund total</p> <p><br></p> <p>Most Items are made to order and are not eligible for returns or refunds. Please read each listing to see if refunds are offered.&nbsp;</p> <p><br></p> <p><strong>SHIPPING DELAY:</strong><br>I cannot give refunds for delays caused by USPS. There are many reasons for delays, weather, travel, etc. I can only estimate the time it will take to arrive.<br></p> women-empower-women-shirt-decal-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-clone-en-83 3 <p>Hiding Place Boutique began as a dream back in the fall of 2014. I traveled to local markets selling coasters! With Christmas time being close, I decided why not make some scrabble ornaments (hope, love, faith, joy). At my next market they collected so much attention I couldn't deny that I had found my "craft"! Not only did customers want the premade ornaments, but they also asked if I could create personalized ornaments for their family, friends, & even teacher's gifts!! I was beyond thrilled! In 2018 I was blessed to be able to add on the Iron On & Vinyl Decal side to my shop.&nbsp;</p> <p><span class="mt-xs-1" data-placeholder="How did you get started? What inspires you? We know each seller’s story is unique&mdash;tell yours here." data-key="story" data-endpoint="AboutPost" data-inplace-editable-text="story">It's truly amazing when God blesses you with a desire to craft and create with something that you already love!! My family has been playing scrabble for every holiday and special occasion since I can remember! What a better business to go into than make gifts from scrabble pieces!<br></span></p> <p><span class="mt-xs-1" data-placeholder="How did you get started? What inspires you? We know each seller’s story is unique&mdash;tell yours here." data-key="story" data-endpoint="AboutPost" data-inplace-editable-text="story">My mission is to bless others through my creative talents and spread the love of Christ in all I do. For Jesus loves me and I love you.</span></p> <p><span class="mt-xs-1" data-placeholder="How did you get started? What inspires you? We know each seller’s story is unique&mdash;tell yours here." data-key="story" data-endpoint="AboutPost" data-inplace-editable-text="story">"You are my hiding place; you will protect me from trouble and surround me with songs of deliverance." Psalms 32:7</span></p> B