Facebook like working then not again - html

Ok I have checked all the other posts that are similar to this but none of them are truely the same.
I have a like button on my website. The page is created dynamically via a perameter passed to the page called "page"
find here;
http://dev.crosbylakeside.co.uk/watersports/index.php?page=watersports
Now on the home page of this section the like button works great. However it does not work on any other section at all!!
The strange thing is its essentially the same page. If you check my source code header info its always right. The facebook og data is also dynamic to simulate page changes and is working fine.
If you go to the dev bugs page and put in the url of my site it all checks out ok.
I have tried everything but I cant seem to get it to go.
Please help thanks

Looks like was a caching issue

Related

Web preview when posting on Facebook/Linkldin

I got a little issue,
when I share my portfolio in Facebook or Linkdin I get a preview of the web as an image but with a wrong image(one of the images included in the code itself).
how can I fix that so that the preview image will be the the web image?
thanks
If you've already generated the image, I think you need to use this: developers.facebook.com/tools/debug to rescrap it and try and get FB to pull in the correct image.
There's a section, in the screenshot, that allows you to bulk clear FB caches if it's more than one URL you're having issues with, if it's just the one, the first tab should be what you need.

Why my anchor link from a secoundary page is not working?

I have the following problem with one of my current projects.
I would like to achieve that when you click on a link which is on a secondarly page, it sends you to the home page but, not at the top of the homepage (by default), I would like that it sends you where a specific ID is.
At the moment I have the following URL in this special link but it doesn't work
link
I have tried different ways I saw in this community but I didn't have luck. At the moment when you click it send you to the homepage but at the top and my ID is almost at the end of the page
How can I fix it please?
Thanks
Kindly use below code on page load. make sure you call this once DOM is loaded. This will scroll the page to this anchor.
location.hash = "#contact-anchor";

Downloading a webpage to computer doesn't fully work

I am trying to download my webpage which I made on WIX. When I use CTRL+S to save the complete webpage and I load the site from my computer, not everything works. Is there some code missing when you save the webpage like this?
The original site looks like this:
https://i.gyazo.com/c4465c93bfcfe19fb07876aed9791d93.mp4
The saved site looks like this:
https://i.gyazo.com/d42aa6bae9e31572e48e42ce8768e784.mp4
So the only thing that is different, is that the background isn't moving and the subscribe box at the bottom is missing at the saved page.
Sorry if this is not the place to ask this, but I thought it might has something to do with the code.
You can view the full html code at the original website (it's too much for the thread) https://jippie1912.wixsite.com/1912sites
well,luckily i got the solution for the problem,but might take too long if your site has a lot of pages.You have to go to all your site pages and download them,so this way you can fix this without any advanced code.Tell me if it worked

Share post on facebook, strange error

I need to implement a facebook share button on a website I am currently developing. The theory is simple and works with a simple link, e.g. https://www.facebook.com/share.php?u=https%3A%2F%2Freddit.com%2Fr%2Fall%2F. This works for me for random pages and my home page.
However, this does not work for all pages of that web site except the home page (/).
Example:
Page http://www.youmatch.global/approach/
Share link https://www.facebook.com/share.php?u=http%3A%2F%2Fwww.youmatch.global%2Fapproach%2F
The sharing dialog states "Object not found". I am already trying for two days but I have no clue what might be the problem.
Any ideas?
You may take look at this page to see what's wrong in your sharer : https://developers.facebook.com/tools/debug/sharing/

Facebook share button only works the first time

I am working on this website: http://www.annashome.com/site/index.php
I have a very strange problem. On each product's page I have a Facebook share button which works fine when using (or opening) it the first time but if you then go at another product's page and try to use it (share or just open) it brakes the URL (doesn't show title,description,image,etc.). I need it to show the title,image and desciption at all times.
If I clear cookies and try the button it works once again but not the second time on another product...
I have set all the attributes such as og:title, og:description, og:image and have checked the DOCTYPE but I still cannot figure out why it shows the correct info when using it for the first product but not the others.
I use addthis.com and have chedk it also. It's really bugging me.
I would really appreciate if you'd have some tips for me !
Thank you !
Actually, the facebook share button works as it should - without any problems. You probably have an url rewrite problem or only a basic setting in the admin menu needs to be changed. Every product you have can be accessed from two different addresses. For example:
http://www.annashome.com/site/index.php/furniture?page=shop.product_details&product_id=16076&flypage=vmj_genx.tpl&pop=0
In this case, if you share it, the link will be broken.
http://www.annashome.com/site/furniture?page=shop.product_details&product_id=16076&flypage=vmj_genx.tpl&pop=0
In this case, it will work.
You can also see, that the share counter doesn't have the same number.
Your site adds this to your address on every product: "index.php/". If you remove it, everything will work as it should.
Hope this helps.