good time to all friends
I am going to create a link so that when the user clicks on that link a contact number will be taken. Note that I don't mean how to create this link inside my website, because with the 'tel 'attribute of the a tag in the 'href' he did it on the internal pages of the site.
Number
I don't mean this code above!
What I mean is that I can create a link and, for example, put that link in the Instagram story, and when the user clicks on the link, he will be referred to the contact number on his phone screen and he can call.
for example:
https://sl.inoti.com/r/04hm62
Related
so I basically want to utilize Whatsapp Web ability message people who are not in my contact. I whatsapp a lot of people and It's just not practical to save each and everyone of them to my contact list.
To do that, I simply need to insert this url into my browser:
https://api.whatsapp.com/send?phone=
and insert the number after the equal mark.
I made a simple input tag, but I don't know how to make my submit button open the Whatsapp's api link and also add the number I put in the input box.
Thanks
I want to make it so that people can log into an account that they've made using a signup form and I also want to make it so that when the account is created they it makes a profile page where they can edit their profile picture, banner, and bio.
I'm very new to well... everything so I need this explained in as much detail as possible.
The concept is simple, consider the following
1.It can be done if you have implement a login system. First you should have page for the user profile, like changing name, picture, etc....
2. Once they register you store the data in the db, with the user id (it can be auto increment column.
3. In you navigation have link for user page, once use click it show page you created for user profile.
4. When user login, store their user id in session, then based on their user id you can retrieve the information and show.
5. The entire page input elements has to be inside a form tag, so if user edit something and click on the update button (or any name you wish) it will update the values in the db.
Basically in the register you will have the insert coding for the user table, and in the user profile page you will have the update coding.
Hope you get the idea!!
A friend of mine used wix to build a small site selling t-shirts. He also put them on amazon.
Is there any way to create buttons to send the buyer to amazon to purchase the item from my friend.
He isn't selling unique items so there will be multiple sellers, also wix is a static site generator.
If you visit the Amazon page for the item you want to link to, you can copy its URL straight from the browser's address bar. You can delete the parts of the URL starting with /ref=..., which are used by Amazon to track visitors and aren't necessary. This YouTube video explains how to create a linked button in Wix.
For example, if you search Amazon for stack overflow robot t shirt, you'll end up at a page that looks like this:
The first two items are identical, but are sold by two different vendors. The second one (FZLB) is 1ยข cheaper, so let's go there:
The highlighted part of the address bar shows what you need to copy. Paste this into the "Link To" box in the Wix button settings dialog. That's all there is to it.
Here's the situation. i have a page with a link for "bands". when a user clicks that link they get a dropdown with different regions to choose from. when they choose a region they are directed to a regional page (ex. chicago / midwest). on that page are many links to different band pages. when the user clicks a specific band they are taken to that band's page (which may also be accessible from other regional pages). here's where i need help. right now there is a "bands" breadcrumb link at the top but since the specific band page does not know the region that was chosen, i have to present the regional dropdown list again. it would be nice if the information was passed to the specific band page so the user could just click "bands" and automatically be directed back to the correct regional page (in this case chicago / midwest).
any help would be greatly appreciated!
I work for a restaurant guide in the NW of the UK and we basically have featured restaurants (the ones who pay a monthly sub) and non-featured restaurants (the ones who get a basic free listing).
We were looking to get some kind of popup appearing on the non-featured restaurants, but only if they came from an external site, e.g Google.
So the steps would be:
1) User goes to google and puts in "name of unfeatured restaurant"
2) Our company comes up with the basic listing of that restaurant
3) User clicks the link but is then presented with a popup of featured restaurants
But, we would only need the popup to appear if the user has come from an external site. So if they were they came internally from our website the popup wouldn't show.
We use ASP at work and I was thinking it may possibly need some kind of a variable being passed through, or maybe something to do with cookies but I'm not an expert on the ASP side.
Hope someone can help on this :)
To see where a user came from you can try:
<%=Request.ServerVariables("HTTP_Referer")%>
This would contain the referring URL. if you want to use it on subsequent pages, you'll have to store it ofcourse in a cookie or session variable.