Unable to edit title and description on website

My site is http://staging.pointsevengroup.com/blog/

I want to add a title and description for the blog page as is shown here: https://www.storeitcold.com/blog/

But, I’m not able to do this for some reason. Can you please tell me how I can do this?

Hello, @Web_Services,

Thanks for writing to us.

It seems that you are using Pro theme and header builder on your staging server whereas on your live site you are using X theme. In case if you use Pro Header builder, the option to add blog page title and description will be disabled from the Pro —>Theme Option —>Integrity—>Blog Option —> Blog title & subtitle.

To add title and description on the Blog page, You can create separate Header for the Blog page and use our “Headline” element or “Text” element to display the blog page title and description as it is available to your live site.

After creating the separate Header now set it as Posts Pages.

Headers-Pro (1)

Hope it helps
Thanks

Hi Prakash,

That fixed my problem, thanks for the help. I did have one more issue though.

I have weird text appearing below the “Chat with a human” section of this page: http://staging.pointsevengroup.com/connect/

I’m not sure why this is and I can’t identify the issue on the pro builder. Could you please help me resolve this issue?

Thanks!

Hello Optimotive,

You have inserted a broken HTML:

<div id="comp-kbr2u53n1" class="_1Z_nJ" data-testid="richTextElement">
	<p class="font_7"><span style="color: #ffffff;">Give us a call.</span></p>
</div>

<div id="comp-kbr2u53o3" class="_1Z_nJ" data-testid="richTextElement">
	<p class="font_8"><span style="color: #ffffff;"><span class="color_11">Monday - Friday<br />
	</span><span class="color_11">9:00AM - 5:00PM<br />
	</span><span class="color_11"><span class="wixGuard">​</span>844-POINT7G (764-6874)</span></span></p>
</div>

You should update it and use this code:

<div id="comp-kbr2u53n1" class="_1Z_nJ" data-testid="richTextElement">
	<p class="font_7">
		<span style="color: #ffffff;">Give us a call.</span>
	</p>
</div>

<div id="comp-kbr2u53o3" class="_1Z_nJ" data-testid="richTextElement">
	<p class="font_8">
		<span style="color: #ffffff;">
			<span class="color_11">Monday - Friday<br /></span>
			<span class="color_11">9:00AM - 5:00PM<br /></span>
			<span class="color_11">
				<span class="wixGuard">​</span>844-POINT7G (764-6874)</span>
			</span>
		</span>
	</p>
</div>

Take notice of the sample code. I am indenting so that you can clearly see that the HTML tags were properly closed.

Hope this helps. Kindly let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.