Quantcast
Channel: Support – Jetpack
Viewing all articles
Browse latest Browse all 371

Search Product Pricing

$
0
0

Pricing for Jetpack Search depends on how many “records” your site has — posts, pages, products, and any custom post types. Plans are monthly or annually and when your plan auto-renews, the pricing will automatically adjust based on the number of records in your search index.

Number of RecordsMonthly PriceYearly Price
(two months free)
1-99$5$50
100-999$10$100
1,000-9,999$25$250
10,000-99,999$60$600
100,000-999,999$200$2,000
Over 1 million$200 per million$2,000 per million

All purchases are fully refundable for 30 days. Upgrade and give it a try.

Frequently Asked Questions

How can I reduce the number of records on my site?

If you have particular post types on your site that you never want to count as a record and you don’t need other Jetpack features to work on that post type, then you can completely exclude it from being synced.

add_action( 'plugins_loaded', 'filter_blacklisted_post_types' );
public function filter_blacklisted_post_types() {
	if ( class_exists( '\Automattic\Jetpack\Sync\Settings' ) ) {
		// Get current blacklist
		$blacklist = \Automattic\Jetpack\Sync\Settings::get_setting('post_types_blacklist');
		//Check if post type is in blacklist
		if ( ! in_array( 'topic', $blacklist ) ) {
			// Append post_type to blacklist
			$blacklist[] = 'XXXXX'
			$settings = [
				'post_types_blacklist' => $blacklist
			];
			// Update settings
			\Automattic\Jetpack\Sync\Settings::update_settings( $settings );
		}
	}
}

It is not possible to exclude individual content from being indexed other than making it publicly inaccessible.

Will search stop working if I go beyond my maximum number of records?

No. Search will continue to work even if you go over your limit.

A few weeks before your next billing cycle you will get an email informing you that you are over your limit and telling you what you will be charged when you auto-renew. This gives you time to reduce the number of records or just let the auto-renewal take place.

If you are on an annual plan then your price will go up at most once a year. For monthly plans we will check your record count every month before your plan is renewed.

I have the Jetpack Professional Plan, how is this different?

We are still supporting Search using the Professional plan, but we are no longer making any improvements to that product. Eventually the new search experience will replace the one in Pro, but we do not have a timeline for when.

There were two reasons why we changed our pricing model: 1) many folks were only looking for Search and did not want to also be paying for features they didn’t need; 2) allowing an unlimited number of records felt unfair because it was preventing us from offering lower prices or making improvements. Our costs for a site with one million posts are 1,000 times as much as a site with one thousand posts, but both sites were paying the same amount. The new pricing makes Jetpack Search more affordable for small sites and still costs big sites less than the competition. It’s also available as a single product, so there’s no need to pay for other features you may not need just to use Jetpack Search.


Viewing all articles
Browse latest Browse all 371

Trending Articles