Inbound Marketing is Just Like Gardening

Category: Articles

What is inbound marketing and how do marketing automation platforms like HubSpot help? HubSpot, a lot like other marketing automation platforms, only provides the tools you need to foster inbound marketing. But it is up to you or a service partner to use these tools to get the results you desire. An analogy would be […]

Continue Reading

Website Templates for Industrial Manufacturers Added to the HubSpot Asset Marketplace – Video

Category: Press Releases

Jacob Lett of Bootstrap Creative designed a website theme for manufacturing businesses to promote their brand and products online using the HubSpot CMS. DETROIT (PRWEB) JANUARY 07, 2021 When strategic marketing consultant and website designer Jacob Lett entered HubSpot’s first-ever Themes Challenge hackathon, his vision was to design a website theme specifically to help manufacturers increase […]

Continue Reading

WordPress vs HubSpot CMS Review

Category: Common Questions

Written by Jake Lett, Freelance HubSpot Developer at Bootstrap Creative. Updated for 2026. One of the most critical decisions for a B2B business is where to host its website. Some companies with an internal IT team prefer to self-host their CMS using open-source software like WordPress because they require custom server configurations. However, a growing […]

Continue Reading

WooCommerce Product Category and Terms Select Filters [code snippet]

Category: Code Snippets

The code below will help you add a form select filter for Woocommerce online shop on WordPress. <?php $categories = get_terms( [‘taxonomy’ => ‘product_cat’, ‘hide_empty’ => true] ); ?> <div class=”product-categories”> <h3>Categories</h3> <select class=”form-control shop-filter” onchange=”location = this.value;”> <option selected value=”/shop/”>All</option> <?php foreach ( $categories as $category ) { ?> <option value=”<?php echo get_term_link( $category->term_id […]

Continue Reading