CMS Development

FurqanAli
Participant

can someone share some ways to show capterra reviews in hubspot?

SOLVE

Hi there,

Hope you are doing well. I need to integrate capterra reviews on my hubspot website but I don't see any of their widget which I can add to my website. There are other websites which give the option to show reviews through them for capterra but they are normally paid. Can someone please tell me the best way to show capterra reviews?

Best Regards
Furqan

0 Upvotes
1 Accepted solution
Anton
Solution
Recognized Expert

can someone share some ways to show capterra reviews in hubspot?

SOLVE

Hi @FurqanAli

haven't worked with Capterra but some ideas how to get reviews to display:

with jQuery .load()

<div id="myCustomID"></div>

{% require_js %}
{# make sure that this script loads after jQuery #}
<script>
$('#myCustomID').load('PATH-TO-CAPTERRA-REVIEW-PAGE #ID-OF-THE-DESIRED-DIV');
</script>
{% end_require_js %}

 

with an iFrame

<iframe src="PATH-TO-CAPTERRA-PAGE" title="Custom title"></iframe>

 

if Capterra got an API(haven't found any information about that in a one minute research) you could "overengineer" something with either a HubDB API or just an "JSON display" JS file. 

 

hope this helps, 

 

best, 

Anton

Anton Bujanowski Signature

View solution in original post

2 Replies 2
FurqanAli
Participant

can someone share some ways to show capterra reviews in hubspot?

SOLVE

@Anton thanks

0 Upvotes
Anton
Solution
Recognized Expert

can someone share some ways to show capterra reviews in hubspot?

SOLVE

Hi @FurqanAli

haven't worked with Capterra but some ideas how to get reviews to display:

with jQuery .load()

<div id="myCustomID"></div>

{% require_js %}
{# make sure that this script loads after jQuery #}
<script>
$('#myCustomID').load('PATH-TO-CAPTERRA-REVIEW-PAGE #ID-OF-THE-DESIRED-DIV');
</script>
{% end_require_js %}

 

with an iFrame

<iframe src="PATH-TO-CAPTERRA-PAGE" title="Custom title"></iframe>

 

if Capterra got an API(haven't found any information about that in a one minute research) you could "overengineer" something with either a HubDB API or just an "JSON display" JS file. 

 

hope this helps, 

 

best, 

Anton

Anton Bujanowski Signature