What is the correct links for sharing content on user's social media pages/profile? Something similar to the web page sharing links:
https://facebook.com/sharer/sharer.php?u=xxxx
https://twitter.com/home?status=xxx
I know that instead of "xxxx" you have to put your page url which you want to be shared. Exemple when I press the share button (facebook): 08rnz.png . I need links for more social media's sharing and via e-mail too.
So if I put https://facebook.com/sharer/sharer.php?u=site.com/site/index.html it doesn't work. It's any scripts for those sharing buttons? What exactly I have to do? I want for: facebook, twiiter, google plus, e-mail, whatsapp.
Thank you!
This service could be helpful:
sharelinkgenerator.com
But your problem is most probably with localhost. It is not an internet address, just your local server.
Update:
For sharing by email:
Share
For Whatsapp:
Share on Whatsapp
You might want to look into: addthis.com, you can use this website to generate share buttons for your website.
It creates a script, that you have to add to your webpage.
You have probably seen the buttons before, since they are used a lot.
What you need to do:
get a (free) account on their website
you can design your share buttons in your addthis account
generate and copy the javascript (script tags) to the bottom of your page, just before the closing body element
Related
I have articles posted on facebook from my website http://juniorgoldreport.com/
the website is made in wordpress, and I've also created a "Welome" landing page where I want most new users to be directed too.
I have no idea where I can find information on how to do this, even after countless efforts of googling.
To give an exact idea of what I' trying to create...
Where someone clicks on an article on facebook, it'll take them to the "welcome" sign up page, then have a link on it to the article that they clicked on. The link would change depending on what article they clicked on so they can be redirected properly.
I know I can just hard code it, and create multiple landing pages with different links in relation to the article posted, but this just seems inefficient.
Does anyone know how to go about doing this?
this is the landing page
http://juniorgoldreport.com/welcome/
You can try using Javascript, as it would be much easier than creating several webpages. At the point in your page where you want a link to be placed, put something like
<p id="mynewredirectlink">Hey!</p>
And then at the bottom of your code, add some javascript to resemble this:
<script type="text/javascript">
if (document.referrer === "facebooklink.com")//Where did you come from?
$("#mynewredirectlink").innerHTML = "Hey!" //Where are you going?
Then include the other sites you need, and close it with
</script>
There may be some sites that have varying parts, like an id, so if you need to, you can use (document.referrer.includes("facebook.com")) instead.
You can convert your landing page into a fullscreen modal popup. So every new visitor will see the popup when the visit the site or any article. They can fill the form / they can close it to see the article. There is already several plugin for modal popup / newsletter popup. You just need to do a little bit css to make it full screen.
I have a landing page created outside Marketo and I've been asked to embed a form script. It's not showing up.
I tested the lightbox version- this one does work.
I tested other scripts and they don't work.
I tested on a simple html page and it doesn't show up. (I thought maybe because I have other scripts running.)
I do not have access to their Marketo account. Is there something they can do to allow me to embed this on my host server?
Thanks!
Have your client right click the form they want to embed, click 'Embed Code', select the code type as normal, then copy the script Marketo provides.
See these instructions:
http://developers.marketo.com/documentation/websites/forms-2-0/
You can ask the customer to follow these steps to re-generate the HTML embed code and then try to implement it again.
If you're still having troubles please send a link to this page.
I am working on a site where posts are made and I'd like to give visitors the ability to "share" a particular post that they link on their timeline. I have never done any social media integration, but I followed the instructions via the FB API and am still having problems. It's easier to show you than try to explain it. Go to http://www.badcustomerbureau.com/ and click on any of the Share links at the top of any post. Instead of sharing the post you clicked on, it tries to share a generic post with the same photo every time (photo of a dog). I used the code generator on the FB help site and it still has this issue. Please help!
I did receive one suggestion from a member of this site, but I am still seeing the same behavior.
I think its already working. I've tried it before in my own website http://socialviralworld.com/. You just have to login first and see the changes.
See image:
I am using a Gchat voice and video chat script. link to my website
The problem is that someone login in my chatroom and he use this flash link to crash users browser.
when he login all of us get disconnected and we have a blank black page at that time.
He must be using src="http://best-hosting.cu.cc/c/banner3-www-facebook-skype-net-com.swf" or iframe of that link somewhere when he is logging in.
Please help me. How can I disable that flash thing not to load in all users browsers
I get his links detect using ads block plus extension in firefox when he login with that flash link thing. when i block his link in ads block plus then i do not get disconnect but the other users who dont have ads block plus still get disconnect from website and have a blank black page.
Please suggest me something that will solve my problem.
You could try the accepted answer here: Find text and remove it jquery
Use it to find a string within the text and remove the entire thing.
I'd personally do: $('.className').contains('.swf').remove();
Where className would be the class for links, or you could just do it for the <a> tag in general
EDIT: That being said, I have no idea what Gchat is, and whether or not this would be possible with it. If it is something hosted on your site it should work, but if it is embedded and hosted elsewhere, I'm not quite sure, worth a try though.
I am building a website with buttons. When a user clicks a button, the URLs of other links and buttons are changed with jQuery.
Would Google be able to crawl my site effectively, or would I have to use forms?
You can't expect Google crawlers to click all your buttons and discover every URL you want to be searchable. You CAN, however, submit a sitemap to google that tells them explicitly how your site is organized.
Search around online for Google webmaster tools. I'm not an expert on it, but I suspect you'll find what you're looking for.
Google can navigate through your hrefs, but it won't crawl dynamically loaded content resulting from button clicks.
Here's a link that explains how to create/submit a sitemap through Google. This is your best bet for making sure you cover all your bases: https://support.google.com/sites/answer/100283?hl=en