Best Order Tracking Extension for Magento 2?

Does anyone have recommendations for an Order Tracking extension for Magento 2? Something simple, with a couple of form fields (email and order number) to complete, and then if it’s valid and a match in our order database, we’d present them with their order status. We’re currently getting inundated with “Where’s my order” inquiries from …

Show custom block on product page?

Hello, I’m trying to show a custom block on the product page with this module: Vendor/Module/view/frontend/layout/catalog_product_view.xml <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceBlock name=”product.info”> <block class=”VendorModuleBlockCatalogProductView” name=”catalog.product.view.extrablock” as=”extra_options” before=”product.info.form.options” template=”Vendor_Module::catalog/product/view.phtml”/> </referenceBlock> </body> </page> Vendor/Module/view/frontend/templates/catalog/product/view/view.phtml <h2> TEST </h2> Vendor/Module/Block/Catalog/Product/View/View.php <?php namespace VendorModuleBlockCatalogProduct; use MagentoCatalogBlockProductContext; use MagentoCatalogBlockProductAbstractProduct; class View extends AbstractProduct { public function __construct(Context $context, array …