guilty/hubspot-connector

Expose Hubspot API features in Twig and pull in content from your HubSpot Portal.

Installs: 4 382

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 3

Open Issues: 5

Type:craft-plugin

1.0.4 2018-12-18 09:10 UTC

This package is auto-updated.

Last update: 2024-04-28 15:57:08 UTC


README

Expose Hubspot API features in Twig and pull in content from your HubSpot Portal.

Requirements

This plugin requires Craft CMS 3.0.0-beta.23 or later.

Installation

To install the plugin, follow these instructions.

  1. Open your terminal and go to your Craft project:

     cd /path/to/project
    
  2. Then tell Composer to load the plugin:

     composer require guilty/hubspot-connector
    
  3. In the Control Panel, go to Settings → Plugins and click the “Install” button for HubSpot Connector.

Configuring HubSpot Connector

  1. Go the the admin panel
  2. Go to the settings page
  3. Click on "HubSpot Connector" under the "Plugins" section
  4. Enter your Hubspot API key and click Save.
  5. Done

Using HubSpot Connector

Here is a basic example, for more comprehensive examples and documentation check the wiki

 {% for blog in craft.hubspot.blogs %}
    <a href="{{ blog.root_url }}">
        <h4>{{ blog.id }} - {{ blog.name }}</h4>
    </a>

    {% for post in  craft.hubspot.blogPosts(blog.id) %}
        <hr>
        <article>
            <h5>
                <a href="{{ post.published_url }}">
                    {{ post.html_title }}
                </a>
            </h5>

            {{ post.post_summary | striptags }}
        </article>
    {% endfor %}
{% endfor %}

Brought to you by Guilty AS

The HubSpot logo and Trademark is the property of Hubspot Inc