newkind
Forum Replies Created
-
Uh sorry for the late reply! Thank you for your help ??
Ok, soooo something’s happening!
I just checked my search console and I can finally see that some single products with their prices started to appear in the structured data section.
https://monosnap.com/file/azBRbXl0Bbi6VKWtH0pNmFqlezycx3.png
Before that I could only see the product categories – now I can see both! ??
- This reply was modified 7 years, 6 months ago by newkind.
No problem, I’ll gladly provide them to you. Let’s just wait these couple days and see if i’ll start to see single product schemas in the Googles console. Right now all I can see is the category pages with single products listed, and that’s not what is most important for me ??
I’ll keep you updated! One more time thank you!
Forum: Plugins
In reply to: [Gantry 4 Framework] Conflict with Yoast SEO<mistake>
- This reply was modified 7 years, 6 months ago by newkind.
Hi @cybr,
First of all thank you for the detailed explanation. I know that these tools aren’t always reliable.
I checked my indexed real data and unfortunately I can see the issue existing there too. None of my ‘single product pages’ have been indexed – only categories with link to the products without such info like price.
https://monosnap.com/file/B9f27w4McBcPCZWqam8QOma1aEYhGn.png
This is what pointed me into thinking that there must be some kind of issue, as none of the single products were indexed with their data structured properly.
Anyways, I disabled the BreadcrumbsList and we’ll see what happens with next Google crawl ??
Thank you for your support!
Actually, what I was looking for is already there – “Order on-hold” ?? We can mark this as solved!
Hi,
Yah, thanks to Vladimir it’s already solved ??
Can you try to edit frontend/resources/js/appointment_booking.js inside Bookly? Change line 1043
from:
if ($.isEmptyObject(response)) {
to:
if (response.length == 0) {
Jakub
Hi,
Just sent you an email.
Thank you!
JakubForum: Themes and Templates
In reply to: Check if post was splitWell i was thinking about some other function as WordPress doesn’t have included any conditional tag that would check if post was split ??
Forum: Themes and Templates
In reply to: Remove <p> from Read MoreI want to remove <p> wrapping Read More button.
To display my content i use the_content(‘Read More’). This returnes my content in paragraphs <p></p>. At the end of text there’s ‘Read More’ button that’s leading to the full text. It’s also wrapped in <p></p>. I want to remove paragraphs only from ‘Read More’ so they would be around content but not read more button.
So my text would be not like :
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras elementum luctus purus. Suspendisse porta fringilla lectus nec iaculis. Proin in purus erat, et fringilla eros.</p> <p>Read More</p>
but :
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras elementum luctus purus. Suspendisse porta fringilla lectus nec iaculis. Proin in purus erat, et fringilla eros.</p> Read More
Forum: Themes and Templates
In reply to: wp_list_pages and class to <li> and <a>yes, but only for those
<li>
and<a>
which has another<ul>
(for subpages) nested – so only those<li>
and<a>
that are parentsForum: Themes and Templates
In reply to: Parent and child class in wp_list_pagesit’s very troublesome if you’re converting some templates and not create a brand new ones (with ready css) and it gets more messy ??
Forum: Themes and Templates
In reply to: Parent and child class in wp_list_pagesok, the whole problem is that you have to be on the child page to current_page_ancestor appear … it’s not very comfortable for someone trying to style the menu his own way
Forum: Themes and Templates
In reply to: Add a variable to wordpress functionthank you all for your replies ??