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

A first-time visitor doesn't know you yet.

So you saying you're great means almost nothing to them.

Put real proof up top: reviews, a customer count, a face or two.

What's the first thing people see on your homepage right now?

#smallbusiness #websitetips #wordpress #socialproof #smallbusinesstips
... See MoreSee Less

A first-time visitor doesn't know you yet.

So you saying you're great means almost nothing to them.

Put real proof up top: reviews, a customer count, a face or two.

What's the first thing people see on your homepage right now?
... See MoreSee Less

Your call us button is quietly costing you customers.

A whole generation would rather do almost anything than make a phone call.

They will text, they will DM, they will message a business at midnight, but ask them to dial a number and wait on hold and they just close the tab and find someone easier.

So every call us on your site is sending those people away.

The fix is not complicated: give them a way to message you instead, right where they are deciding.

#smallbusiness #customerservice #websitetips #smallbusinessowner #marketingtips #LeadGeneration #LiveChat #wpchat #localbusiness #customerexperience
... See MoreSee Less

The best time to post is a trap. The feed does not dump your video on a tiny window of people awake at lunch.

If it is good, it keeps showing it for days, even weeks, so timing buys you a small early bump and nothing more.

What actually decides whether a video travels is those first three seconds. Do people stop, and do they stay.

So stop fiddling with your schedule and pour that energy into a hook that earns the next three seconds.

#contentcreator #socialmediatips #VideoMarketing #reels #contenttips #smallbusiness #marketingtips #CreatorTips #smashballoon #shortformvideo
... See MoreSee Less

Most sites go dark the second a visitor actually has a question.

Someone shows up interested, they have one small thing they need to know before they buy, and there is nowhere to ask it.

So they do the easy thing and leave, and you never even know they were there.

That quiet bounce is probably your biggest leak and it does not show up anywhere obvious.

The fix is to give people a way to ask in the moment, right on the page, while they are still interested.

#smallbusiness #customerservice #websitetips #LeadGeneration #smallbusinessowner #marketingtips #LiveChat #wpchat #localbusiness #customerexperience
... See MoreSee Less

A wall of glossy five-star reviews does not read as proof anymore, it reads as staged.

When every quote is amazing service, highly recommend, a visitor's guard goes straight up, because they have seen a thousand of those and half were fake.

What actually earns trust is the opposite of polished: one review that names a specific problem you solved, with a real first name, a real photo, and someone who admits they were skeptical at first.

Cut the generic one-liners and keep your three most specific, most human reviews instead.

#smallbusiness #smallbusinessowner #reviews #socialproof #onlinereputation #marketingtips #websitetips #customertrust #smashballoon #localbusiness
... See MoreSee Less

Speed-to-reply quietly decides who wins the sale, and most websites are built to be slow on purpose.

A form drops your most interested visitor into a queue, and by morning they've already started a conversation with someone faster.

The businesses winning right now just made it easy to talk to them the moment a question pops up.

#smallbusiness #websitetips #leadgeneration #customerservice #smallbusinesstips #wordpress #conversationalmarketing
... See MoreSee Less

Most of us treat the caption as a label for the photo, but the photo already did its job the second someone stopped.

The first line is the only place you get to tell a ready customer what to actually do next, and a couple of fire emojis isn't it.

Try rewriting your next three first lines as a single clear instruction and watch what happens to your DMs.

#smallbusinessmarketing #localbusiness #socialmediatips #instagramforbusiness #captiontips #smallbusinessowner #marketingtips
... See MoreSee Less

Your About page might be the most outdated thing on your website.

It still talks like you opened last month while you've got regulars and a waitlist, and new customers read that and quietly file you under risky.

People don't read your About page for the history, they read it to decide if you're the safe choice.

Open yours, read the first two lines as a stranger, and if it's frozen in year one, rewrite it for who you serve today.

#smallbusiness #websitetips #smallbusinessowner #marketingtips #smashballoon #copywriting #localbusiness #branding
... See MoreSee Less

The customers most ready to buy are the ones who'll never fill out your contact form.

They've got their wallet out and one quick question, and the only door you've given them is a form with name, email, phone, subject and a we'll reply in 1 to 2 business days.

That's not contact, that's applying for a job to ask if you're open Sunday.

Anyone under 35 just leaves. Give them a button that opens the messaging app they already use.

#smallbusiness #customerservice #wordpress #smallbusinessowner #whatsappbusiness #wpchat #marketingtips #livechatmagic
... 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?