Docs    Facebook    Customizations

Insert your own content every X number of posts

Add ads or content in between your Facebook posts.

var number_of_posts = 5,
    content_to_add = 'Add content here',
    i = 1;
$('#cff .cff-item').each(function(){
  if( i % number_of_posts == 0 ) $(this).after('<div class="cff-item">'+content_to_add+'</div>');
  i++;
});

Edit the variables on the first two lines to define how many posts to insert the content after and what content should be added. The content can be text or HTML.

If you need to only add the content to a specific feed then you can add a class to the shortcode:

Comments Box SVG iconsUsed for the like, share, comment, and reaction icons

You can hit 100,000 views and walk into your shop the next day to the same five people.

The algorithm sent your reel to people 1000 miles away. Not your customers.

Local businesses don't need viral reach. They need local reach, geo-tagged posts, local hashtags, and a website that shows up when someone in your suburb finally Googles you.

#localbusiness #smallbusinesstips #instagramforbusiness #localseo #localmarketing #smashballoon #wordpresstips #smallbiztips #instagramgrowth #localcommunity
... See MoreSee Less

You posted 30 reels this year and your website has none of them.

The reels took hours to make. Strangers saw them for two seconds and scrolled.

The customers who actually visit your site never see the work that's already proving you're real.

You don't need to post more. You need to put what you've already posted where the people who matter are landing.

#smallbusinesstips #wordpresstips #instagramforbusiness #contentmarketing #localbusiness #socialmediatips #smashballoon #websitedesign #contentstrategy #smallbiztips
... See MoreSee Less

Someone's on your site at 9:30pm wanting to ask one question.

Your phone goes to voicemail. Your contact form sends a 24-hour autoresponder.

By morning they've booked the competitor. Almost half of local buying decisions start after work, and most small businesses treat 9-5 like it's still 1990.

A WhatsApp button changes that. Customer messages you.

You answer when you open. You've already won.

#LocalBusinesssmallbusinesstips #wordpresstips #whatsappbusiness #localbusiness #wpchat #customerservice #smallbiztips #ecommerce #wordpressplugin #salestips
... See MoreSee Less

The right review on the right page closes the sale.

A cupcake review next to your cupcakes does the work. A wedding-tier review on a checkout page doesn't.

Reviews Feed Pro now lets you build Collections from Google, Yelp, Facebook, any source you've connected, and pin them as floating Review Alerts to the exact pages they belong on.

#wordpress #wordpressplugin #smashballoon #reviewsfeedpro #googlereviews #socialproof #ecommerce #woocommerce #conversionrateoptimization #onlinestore
... See MoreSee Less

Adding a WhatsApp chat button to your WordPress site takes 5 minutes, and most local businesses still don't have one.

The customer sees a small green button in the corner, taps once, and WhatsApp opens with your number filled in.

No form, no email capture, no "we'll get back to you in 24 hours."

The fastest setup is WPChat. Add your number, pick the pages, done.

Salons and plumbers two suburbs over have one.

The 9pm customer landing on your site has nothing to tap.

#whatsappbusiness #wordpresswebsite #wordpressplugin #smallbusinessmarketing #customersupport #wpchat #servicebusiness #livechat #leadgeneration #websitetips
... See MoreSee Less

Three habits separate the local businesses still winning on Facebook in 2026 from the ones bleeding reach.

I went through 20 salons, plumbers, and restaurants this week and the winners all had the same three things: native vertical Reels recorded on a phone, Facebook Events for every promo, and replies to every comment inside an hour.

Facebook is still pushing local content harder than anyone realizes.

The businesses that gave up are leaving customers on the table.

#smallbusinessmarketing #facebookmarketing #localmarketing #facebookforbusiness #facebookreels #servicebusiness #wordpresswebsite #LocalSEO #facebookreach #MarketingTips
... See MoreSee Less

Most small business websites are open 24 hours a day and can answer zero questions.

A contact form at 9pm is the same as a locked door. Customers do not wait. They close the tab and find someone who replies.

The fix is a chat button that opens straight into the apps they already use. WhatsApp, Messenger, Instagram DMs.

Same traffic, suddenly converting.

#wordpresstips #smallbusiness #LiveChat #whatsappbusiness #ecommercetips
... See MoreSee Less

Most local businesses still build their entire marketing strategy around Google.

Their customers under 30 already moved on.

They search TikTok and Instagram first, watch a few Reels, then maybe click through to a website that looks frozen in time.

Your site has zero proof you're still alive because it was built for a different kind of traffic.

Show them what they already came from.

The sale stays warm when the website feels like the feed.

#smallbusinessmarketing #localmarketing #tiktokforbusiness #instagramforbusiness #socialmediamarketing
... See MoreSee Less

Load more

And then target that feed in the fourth line of the snippet above:

$('.feed1 .cff-item').each(function(){

To add different content in every X number of posts you can use the following:

var number_of_posts = 5,
    content_to_add = [
    'Content 1',
    'Content 2',
    'Content 3'
    ],
    i = 1,
    count = 0;
$('#cff .cff-item').each(function(){
   if( i % number_of_posts == 0 && count < content_to_add.length ){
     $(this).after('<div class="cff-item">'+content_to_add[count]+'</div>');
     count++;
   }
   i++;
});
support

Couldn’t find your answer in the docs?

Contact Support

Was this article helpful?