CMS Development

akondratyuk
Member

Search results should show and hide private content based on access

SOLVE

For example, private or protected blog posts should only display in search results if the user searching has access to them—otherwise those posts should be hidden. 

 

I'd like to avoid the experience of person B seeing content that is private to person A. 

 

The best current idea is to add something to the title of posts meant for person A and then filter before displaying results. 

 

 

0 Upvotes
1 Accepted solution
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Search results should show and hide private content based on access

SOLVE

@dennisedson @akondratyuk one of the easiest ways to exclude entire sections of a website is using the `pathPrefix` and `matchPrefix` parameters. The catch is it requires that your page URLs are structured in a particular way.

If the content for Person A was all under a single parent URL like `/person-a/child-pages`, then you can exclude those results when Person B is searching by adding `&pathPrefix=/person-a&matchPrefix=False` to the site search query.

Stefen Phelps, Community Champion, Kelp Web Developer

View solution in original post

2 Replies 2
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Search results should show and hide private content based on access

SOLVE

@dennisedson @akondratyuk one of the easiest ways to exclude entire sections of a website is using the `pathPrefix` and `matchPrefix` parameters. The catch is it requires that your page URLs are structured in a particular way.

If the content for Person A was all under a single parent URL like `/person-a/child-pages`, then you can exclude those results when Person B is searching by adding `&pathPrefix=/person-a&matchPrefix=False` to the site search query.

Stefen Phelps, Community Champion, Kelp Web Developer
dennisedson
HubSpot Product Team
HubSpot Product Team

Search results should show and hide private content based on access

SOLVE

@stefen , any advice you can offer?

0 Upvotes