WATCH READ I found it hard to find HTML code to create a “Copy URL To Clipboard” button in WordPress that matched my button styles. But thanks to https://orclqa.com/copy-url-clipboard/​ – I found it. This video shows how I did it. <button>Copy Link</button> <script> function copyToClipboard(text) { var inputc = document.body.appendChild(document.createElement(“input”)); inputc.value = window.location.href; inputc.focus(); inputc.select();…

Read More

WATCH READ What’s the best way to embed video on your website? I get asked this question all the time, and while YouTube is generally my answer, due to the fact that it’s free, easy to use and great for SEO, there is another solution that may be better depending on your situation. If you’ve…

Read More