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've got dozens of five-star reviews and they're all sitting on Google, where the person deciding whether to buy from you never looks.

A stranger reads a few reviews on your site before they trust you. Show none and they assume there's nothing to show.

Move the proof you already earned onto the page where the sale actually happens.

#smashballoon #googlereviews #smallbusiness #smallbusinessowner #wordpress #websitetips #socialproof #onlinereviews #wordpresstips #localbusiness
... See MoreSee Less

Posting to Instagram and then updating your website with the same stuff? You're doing the job twice.

On WordPress: install Smash Balloon, connect your account, drop the feed on a page. It updates itself from then on.

Post once, it shows up on the site you own. Get the hours back.

#smashballoon #smallbusiness #smallbusinessowner #wordpress #websitetips #instagramfeed #wordpresstips #savetime #smallbiz #websitedesign
... See MoreSee Less

Your link in bio could be doing so much more for you.

Instead of pointing to a page on someone else's platform, send that traffic to a page on your own site, with your links, your Instagram feed and your real reviews right there.

Same tap, same audience, way more working for you.

#smashballoon #smallbusiness #smallbusinessowner #linkinbio #websitetips #ownyouraudience #wordpress #digitalmarketing #creatorbusiness #smallbiz
... See MoreSee Less

Answering every website chat the same way is costing you the good ones.

The ready-to-buy customer gets bored and leaves while you're being polite to a tyre-kicker.

Let the chat ask a couple of questions first and route the serious buyers straight to you. Spend your attention where the money is.

#wpchat #smallbusiness #smallbusinessowner #leadgeneration #customerservice #whatsappbusiness #wordpress #salestips #localbusiness #smallbiztok
... See MoreSee Less

Website live chat sounds great until it means babysitting a dashboard all day.

Miss the bubble, lose the person. Nobody has time for that.

Let the messages land on the phone in your pocket instead, in WhatsApp or Messenger. Reply like it's a text. Reachable, not chained to a screen.

#wpchat #smallbusiness #smallbusinessowner #livechat #whatsappbusiness #customerservice #wordpress #localbusiness #smallbiz #wordpresstips
... See MoreSee Less

Your best TikTok did 40k views. Great.

The customers actually deciding whether to buy from you, the ones on your website, saw none of it.

Pull that feed onto your site so the videos already earning attention play right where the buying happens.

#smashballoon #smallbusiness #smallbusinessowner #tiktokforbusiness #websitetips #SocialProof #wordpress #contentmarketing #smallbiz #tiktoktips
... See MoreSee Less

Most of your website visitors are on their phone, one hand, half-distracted.

To ask one quick question they've got to thumb-type your whole contact form, so they just leave and you never hear about it.

Let them tap a chat button and message you on WhatsApp or Messenger instead. One tap beats a form every time.

#wpchat #smallbusiness #smallbusinessowner #wordpress #whatsappbusiness #customerservice #websitetips #leadgeneration #localbusiness #wordpresstips
... See MoreSee Less

You spent all afternoon on that YouTube video. Then you linked it off your own site.

That little "watch on YouTube" button drops your customer into a sidebar packed with everyone else's videos, and off they go.

Play your videos right on your own page instead, and keep the visitor on the one thing you actually own.

#smashballoon #smallbusiness #smallbusinessowner #wordpress #youtubetips #websitetips #contentcreator #digitalmarketing #websitedesign #smallbiz
... See MoreSee Less

Messaged 8 local businesses this weekend, cash ready.

What decided who got it was not price or reviews, it was who let me just talk to them.

The form ones made me wait, so I booked elsewhere. You might be losing on reachability, not price.

#smallbusiness #localbusiness #CustomerExperience #SpeedToLead #wpchat #CustomerMessaging #smallbusinessowner #leadresponse #wordpress #winmorecustomers
... 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?