Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
359 views
in Q2A Core by

i have created a website names is Alghorba.com  so i need your opinions 

Welcome to Alghorba.com – Your Expat Guide!

Life away from home can be both exciting and challenging. That’s why we’ve created Alghorba.com – a dedicated platform for expatriates and foreign nationals.

What You’ll Find on Alghorba.com:

  • Practical advice to adapt to life in a new country.
  • Insights into navigating cultural differences.
  • Essential resources for housing, work, and more.
  • Real-life stories from expats just like you.

✨ Whether you’re just starting your expat journey or looking to thrive abroad, Alghorba.com is here to support you every step of the way.

Visit us now at Alghorba.com and join a growing community of people living life beyond borders.

We’re excited to have you with us on this journey! Share your experiences and connect with others on the same path.

2 Answers

0 votes
by
good
What is the theme used?
by
Polaris premium theme
by
Thanks .....
0 votes
by
by
+1
This was fixed a couple of updates ago actually. But I've noticed there were showing duplicates now instead. So I've fixed it and pushed a new update. Should be fine now.
https://search.google.com/test/rich-results/result?id=eI2LmiLvn-OqQn7OOV60dA
by
Yes it is fixed
by
I thing  it is not fixed for me man ... What can I do I tried a lot of solutions but it is not as you said
by
@sitouzani I've just inspected your website and see what the problem is.

You've made changes to your theme and either:
1. Closed the .qa-body-wrapper element too soon.
2. You've made changes and added a double closure somewhere. Example: <div></div></div>.

Your structure looks like this:

    <div class="qa-body-wrapper" itemprop="mainEntity"></div>
    <div class="qa-gdev-body">
        <span itemprop="answerCount">0</span>
    </div>

When it should look like this:

    <div class="qa-body-wrapper" itemprop="mainEntity">
        <div class="qa-gdev-body">
            <span itemprop="answerCount">0</span>
        </div>
    </div>

The 'answerCount' prop, etc are outside the 'mainEntity'.

I've increased the 'mainEntity' scope by 1, and should fix the problem. But you definitely should have a look at that, as that may cause other problems later on.

**ALSO** in case I need to revert the 'mainEntity' location back to be outputted to the .qa-body-wrapper, in case other plugins may replace this element and add that prop back in. Which will result in a duplicate 'mainEntity'.

Which I have a vague memory about something similar happening. Just can't recall if it was with the 'mainEntity' or not.
...