Insérez votre propre contenu tous les X messages

Ajoutez des publicités ou du contenu entre vos publications sur Facebook.

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++;
});

Modifiez les variables des deux premières lignes pour définir le nombre d'articles après lesquels insérer le contenu et le contenu à ajouter. Le contenu peut être du texte ou du HTML.

Si vous avez besoin de n'ajouter le contenu qu'à un flux spécifique, vous pouvez ajouter une classe au shortcode :

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

Adam Mosseri just confirmed what the algorithm already started enforcing.

The polished Instagram aesthetic you spent the last three years building is officially dead in 2026.

Because AI made polished content cheap, the algorithm now rewards the opposite.

Vertical phone footage with bad lighting, off-the-cuff captions, raw kitchen-format stuff is winning.

Authenticity is the one thing AI still can't fake at scale.

So which one are you doing tomorrow, posting the polished cinematic reel or just talking to the camera?

#instagramalgorithm #contentcreation #instagrammarketing #authenticcontent #socialmediastrategy
... See MoreSee Less

Most Instagram bios fail in the first 3 seconds because they describe what you do instead of who you help.

"Helping small businesses grow" tells me what you sell. Not whether I belong here.

The bios that actually convert flip it: they put the audience first and let the wrong people scroll past.

Your bio isn't a description. It's a doorway with a sign telling the right people they're in the right place.

Read yours out loud right now. Does it describe what you do, or who it's for?

#instagrambio #smallbusinessmarketing #instagramtips #instagrammarketing #socialmediatips #profileoptimization #servicebusiness #marketingtips #smallbusinessowner #businesstips
... See MoreSee Less

You've earned hundreds of reviews on Google, Facebook, and Yelp, and exactly zero of them show up on the page where the customer actually decides.

In the twelve seconds someone spends sizing you up, they're not opening another tab to verify you.

Three handpicked testimonials read as curated, and a "read more on Google" link just sends them away.

Bring the receipts to the page where the decision happens. That's where social proof actually does its job.

#googlereviews #smallbusinessmarketing #websitetips #onlinereviews #marketingtips #conversionoptimization #localbusiness #marketingstrategy #socialproof #businesstips
... See MoreSee Less

There's a reason small businesses keep getting told they need a "better website" even after a redesign.

The redesign was never the problem.

Your Facebook page is the actual proof of life: fresh photos, recent reviews, an event next Saturday.

Your website is a contact form and a hero image from 2022. Pull the activity from one onto the other and the trust gap closes overnight, without writing a single new line of copy.

#smallbusinessmarketing #websitetips #facebookmarketing #localbusiness #marketingtips #websiteconversion #smallbusinessowner #marketingstrategy #localmarketing #businesstips
... See MoreSee Less

The moment a customer submits your contact form, they don't sit and wait for a reply. They open another tab and message your competitor.

Whichever business answers first usually wins the sale, and "first" now means seconds, not next morning.

The fix isn't replying faster to the form.

It's removing the wait entirely by giving the customer a channel they're already inside like WhatsApp, so the conversation never breaks.

#smallbusinessmarketing #customersupport #leadgeneration #salesgrowth #marketingtips #smallbusinessowner #whatsappbusiness #conversiontips #servicebusiness #businesstips
... See MoreSee Less

Everyone left Facebook for Reels and TikTok — except the people who actually buy local services.

They're still scrolling the same feed they've been on for a decade, and now there's almost no competition for their attention.

Local Events, Marketplace, and Groups still push your business to people three miles away.

If your buyers are over 35 and within driving distance, four solid Facebook posts a month will out-earn forty TikToks.

#localbusiness #facebookmarketing #smallbusinessmarketing #marketingtips #localmarketing #facebookforbusiness #marketingstrategy #smallbusinessowner #servicebusiness #businesstips
... See MoreSee Less

Batch days feel exhausting because we treat one Reel as one idea — when really, one idea should be five Reels.

Same insight, different angle: the tutorial, the hook only, the contrarian take, one example, a quick list.

Once you see it this way, posting daily stops feeling like a content treadmill and starts feeling like remixing your own catalogue.

The daily creators aren't filming more. They're angling more.

#contentcreation #reelstips #instagramtips #socialmediatips #contentstrategy #creator #socialmediamarketing #digitalmarketing #marketingtips #contenttips
... See MoreSee Less

Most people quote a twelve-second window, but the actual trust call happens in four.

In those four seconds, a visitor decides whether your business looks professional, whether a real human is behind it, and whether they could get an answer if they had a question.

Most websites pass the first test and quietly fail the other two.

A photo of a real person, a recent review, and an active chat option is usually all that separates four seconds of doubt from four seconds of trust.

#websitetips #smallbusinessmarketing #ConversionOptimization #MarketingPsychology #firstimpression #WebsiteCredibility #marketingtips #smallbusinessowner #livechat #businesstips
... See MoreSee Less

Load more

Puis ciblez ce flux dans la quatrième ligne de l'extrait ci-dessus :

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

Pour ajouter un contenu différent dans chaque nombre X d'articles, vous pouvez utiliser ce qui suit :

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++;
});
soutien

Vous n'avez pas trouvé votre réponse dans la documentation ?

Contacter le support

Cet article a-t-il été utile ?