Embed one page of my HivePress website onto another external website

Hello, I want to embed one of the page of my rental hive website onto another external website page. How can I do that?

Thanks.

Hi,

Hope you had a relaxing weekend.

Could you please clarify whether you want to embed the entire page or specific elements, such as a listing? If you’re referring to the entire page, you can technically use an HTML iframe tag to embed it, but both sides (your site and the embedded site) would need to allow this, as there are security features that prevent embedding to protect against phishing attacks.

If you specifically mean embedding individual listings, unfortunately, that’s not available out of the box right now, but it’s possible to create embed snippets with custom implementation.

Hello, hope you’re are well too. So for example I just want to embed this type of page, in which just text and one button is there (no listing page). Would that be possible through iframe? And what settings do I need to change to let this happen?

Thanks for the details.

We’d recommend using a simpler approach, perhaps just adding an intro section and your logo with a clear call-to-action that directs users to visit the third-party site. Embedding an entire external page via iframe can be problematic, as it would create a “site within a site” experience where the third-party site’s header and full page structure appear inside your own page, which can look awkward and confusing.

If you still want to try embedding with an iframe, here’s an example code:

<iframe 
  src="https://example.com"
  width="800"
  height="600"
  style="border:1px solid black;"
  loading="lazy">
</iframe>

However, you’ll need to modify the server settings on the third-party site to allow embedding by adjusting X-Frame-Options or Content-Security-Policy headers (this usually requires contacting your hosting provider). Keep in mind that if you allow all third-party sites to embed your content, scammers could potentially embed your site in theirs to impersonate you, which creates security concerns.

For these reasons, we recommend the intro + redirect approach rather than full iframe embedding.

Hope this helps

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.