I can't seem to find an answer to this, since most answers assume you can include an {a href> tag.
I have a google form embedded into Wordpress for customers to submit details. It is embedded using and iframe using the share code from the google form itself.
On the confirmation page after the customer has submitted a response, we have a link for a customer to click to process an order, however this opens our own website again, within the iframe.
I want to open this in the parent window. Is it possible?
NB Google Forms appears to not let me mark up the link. If i put <a href="https://example.com>Click HERE{/a> - it just makes the https://example.com a link within the tag.
Related
I have a page, home.html, which is just comprised of 2 iframes, iframeA and iframeB. The content of iframeA and iframeB are various links from my site. When I click on any link within iframeA or iframeB, I don't want that link to open within the iframe itself. Instead, I want the clicked link content to render in the entire existing browser window. Is there any way to achieve this simply, without complicated javascript?
Send button in Contact form stopped working in Blogger
I have two separate Contact form gadgets in my blog. All of a sudden the Send button stopped working. After entering all the fields, when I click on it nothing happens. Other people have told me the same thing.
I didn't change anything. Neither of them work. One is available in the desktop menu bar as Contact and the other is at the bottom in the footer. They don't work in mobile or desktop.
I deleted the code and recreated but Send button still not working. It is the same code that worked before.
Please help. My website is www.tutorhubllc.com.
I am unable to paste the code here at I am using
Thanks
Your contact form gadget does not contain a form element.
Contact form should have a form element with a proper action attribute. The form tag is used to collect user input and specifies where to send the data when submitting.
Try to add another fresh gadget from your control panel layout.
I have Wordpress project with advert banners. The banners are just pictures <img src="path"> encapsulated by <a href="target">. Nothing special... Now when we are testing the web, we have found that when there is opened article detail and user click on banner and then press back button (or go back in any other way) the chrome display homepage of our web (not article detail). Actually, sometime display article detail, but not the article where I was before clicking on banner.
I have tried restart browser/computer, open URL in any other computer and the problem is only when I use Google Chrome. Exactly v.42.0.2311.152.
Do anyone have any experience with that?
I have found the problem. There was tracking clicks by Google Analytics:
<a href="target" onclick="return _ga_send()">
in the _ga_send method was redirecting by Javascript
window.location.replace("target");
It replace the current location and if you go back (from AD), browser remember the page before you get on.
The solution is:
window.location.href = "target";
Here is the standard iframe code they give for embedding.
Is there anything I can add to this that will change the target for the "View on Instagram" button that appears when you mouse over the word Instagram in the iframe? I'd prefer it opened a new tab or new window.
Here is the article where I currently have it embedded.
http://www.pdga.com/when-it-rains-it-pours
I haven't worked with embedding instagram media before, but this seems to be a common gripe (understandably). See this FAQ post on a wordpress plugin which I assume is similar to what you're using
That link is within the Instagram embed iframe, you cannot change it, if you don't want people to click and go out of your page, you can hide the top section of iframe like this: http://blog.initlabs.com/post/59132920494/how-to-position-a-section-of-iframe-in-a-div
I have a like button on my main page (master page in asp.net).
I added a like button on each dynamic page.
When I try to enter the link:
http://www.friend.co.il/details.aspx?id=2321
to one of the dynamic page in face book developer page:
http://developers.facebook.com/docs/reference/plugins/like/
I get the same number of like as the total site number and not just a number for the specific page.
Any body know whats I'm doing wrong?
Using Facebook's URL Linter on your dynamic page's URL shows that it has Open Graph tags that refer to your website's main page. As a result, Facebook thinks that the canonical URL for http://www.friend.co.il/details.aspx?id=2321 is http://www.friend.co.il/.
You should either remove the meta tags from your subpages, or construct them so that they properly represent the content on each page.
Remove your og:url meta tag and also be sure to not include the Facebook javascript file multiple times like you are currently doing.