Inserta tu propio contenido cada X número de entradas

Añade anuncios o contenido entre tus publicaciones de 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++;
});

Edite las variables de las dos primeras líneas para definir después de cuántos mensajes se insertará el contenido y qué contenido se añadirá. El contenido puede ser texto o HTML.

Si necesita añadir el contenido sólo a un feed específico, puede añadir una clase al shortcode:

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

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

Every Instagram follower who actually became a customer Googled you first.

Followers like you. Customers trust you. The bridge between those two is whatever shows up when they open a second tab to verify what you claimed.

If your reviews live on Google and your website doesn't show them, you're sending every interested customer on a treasure hunt and most of them don't come back.

#instagrammarketing #smallbusinessmarketing #marketingtips #socialmediamarketing #conversionoptimization #googlereviews #marketingstrategy #localbusiness #businesstips #digitalmarketing
... See MoreSee Less

Every local business is posting the same Instagram.

→ Same first frame
→ Generic "small business owners" callout
→ Hooks that promise nothing

Three things, all fixable in 60 seconds.

#localbusiness #smallbusinessmarketing #socialmediatips #instagramtips #marketingtips #smallbusinessowner #localmarketing #marketingadvice #businesstips #contentstrategy
... See MoreSee Less

Load more

Y, a continuación, diríjase a ese feed en la cuarta línea del fragmento anterior:

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

Para añadir contenido diferente en cada X número de posts puedes usar lo siguiente:

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

¿No ha encontrado la respuesta en los documentos?

Contacto

¿Le ha resultado útil este artículo?