Big Cartel Contact Page - Captcha LIQUID Error - captcha

I changed a few minor things on my Contact page: I removed my address and phone number fields. Now, the Captcha is showing "liquid error" instead of loading.
I also copied the whole contact page and pasted into the Cart form. I'm trying to customize the site so there is no real checkout, but rather you can only contact me to place an order.
They both show the same liquid error instead of loading a captcha, and click through to an error page if trying to send an email.
Does anyone know how to fix this? Is it possible to work around, and keep the Cart as a clone of the Contact page? I wouldn't mind if I had to erase the contact form and just added a link on a simple page to email me.
Thanks very much.

The liquid error is a result of pasting the contact form fields into the Cart page - that will only work properly when it's used on the built-in Contact page, and not anywhere else in a Big Cartel shop.

Related

Make The Different Register Page Url Stable and Get Rid of Double Click Logout On Woocommerce

I am using one of the woodmart built-in themes and have 2 issues (I think they are so easy to do but couldn’t find any solution on internet which works well) one is about register page link on the sidebar login are and the logout confirmation.
When you go to our website which is http://www.fitovision.com and click on Login/Register button on the right top of the page a sidebar widget comes out. I have changed the Create An Account link to my custom page but because I did this on the integration page of woocommerce to the theme, when I get any update it goes back. So looking for a hook or function codes to add to the child theme functions page to keep it there forever even if I get any update. Could you please tell me how to do that? I have asked this to the theme editors support page but they said it belongs to woocommerce so asked me to open a ticket here.
Second one is when you login to the page we have an dropdown menu on the top on the place of Login/Register link. And there is Log Out link on the at dropdown menu. When I click it it goes to My Account page and when I click there again it logs out. I have read and applied too many ways to bypass the logout confirmation on first click but none of them worked as I realised that they were all old dated posts. So I thought after some time and your updates it should be forced by the wocoommerce to do it. But my clients definitely do not want it. Is there again anything else I can do for that to log out on the first click? And keep it there with adding to the child theme functions page?
Thank you for replies instead.
Emre GOKTEPE

Prestashop SHOP-EMAIL not updating after migration

I just migrated my PS 1.7 from one domain to another, everything fine but I really don't how to change the SHOP email so I can get it right in my "contact us" page.
I tried changing it from BackOffice and do BO is showing the correct email
but in my contact page still the old one.
I tried downloading all the database and searching Ctrl+F with no success.
I tried downloading the site files and look which in files searching app and couldn't find it/
I even deleted all the cache manually and nothing can't get the right shop email to be shown on contact page.
You can change this e-mail in BO Configure->Shop Parameters->Contact->Stores->Shop email. By the way, it is a field PS_SHOP_EMAIL in your configuration table in DB.
You can change your phone number by going to configuration of ps_contactinfo module.

UK Post Code returns all possible addresses

On a website
https://bookings.royalmailsameday.com/acinet.dll/quote
I saw a feature.
Give a postcode to input field of Postcode, and click a button "Lookup Address".{test postcode value:CR0 3RL}
Then a list of addresses is populated in a box.
Please tell me how these website guys doing it,as I tried to find by console,but no AJAX call is going out.
On a website
https://bookings.royalmailsameday.com/acinet.dll/quote
I saw a feature,
Give a postcode to input field of Postcode, and click a button "Lookup Address".
Then a list of addresses is populated as dropdown in input field.
Please tell me how these website guys doing it,
as I tried to find by console,but no ajax call is going out.
They are using an hidden iframe at the bottom of the page:
<iframe src="https://bookings.royalmailsameday.com/acinet.dll/address_lookup?addressno=XXXXX&postcode=XXXX&nocache=XXXX" style="display: none;"></iframe>
They assign the query url to the iframe and than inspect the response.
Nothing fancy nor extremely efficient, in my opinion.

How do I connect my appixia app to my prestashop contact page?

I've added a contact button on the title bar but I can't get my contact form to display. Has anyone done this?
First of all, the contact button Module field should point to a new Activity module like VerticalContainerActivity which should contain an HtmlView module in its body. This HtmlView displays your contact page - put the address in its ContentUrl. Most of these steps are identical to what you'll find in this tutorial.
You can see an example of this in the diamonds sample app. Create a new app from the diamond store starting point and see how the contact button is implemented there.
The second important point to remember is that you shouldn't use regular store URLs in your Appixia app. When the user sees them, they would see your Prestashop theme with all the navigation and this will be very confusing inside a mobile app. Instead, make a mobile friendly version of your contact page which doesn't use your Prestashop theme and only shows the contact info content.
Using the Prestashop Contact Form in your Appixia app:
I'm not sure this is a 100% good idea in terms of usability. I don't recommend using a web form for contact in a mobile app.
A mobile phone is a communication device. It is has special integration for making phone calls and sending emails - I really recommend you use these methods instead. Look at the HTML source of this example to see how simple it is to integrate (it's just a link in your HTML).
In order to encourage your users to contact, you need to ask them for as little info as possible. Your website contact form makes your users type in their email address. If they email you directly through their device (with a mailto: link), their correct email will be filled automatically. Same with making a call, when they tap on the link, the number will be dialed automatically for them.
If you really insist on implementing the Prestashop contact form, this will require some Prestashop php games. You should find the contact form controller in the Prestashop source and create the same form (in php or hardcoded HTML) without your website theme. It will be a little annoying because after we submit the form, we also need to make sure the confirmation message is also displayed without your website theme.

magento - back button (without using categories)

there are a lot of back buttons available on the market. Free and paid ones.
But the don't work on my store, because they are all category based.
That's my problem.
In my store i don't use categories, only attributes (in combination with Amasty Improved navigation).
But all back buttons are based on categories.
Can anyone help me to solve this?
I want a back button which goes back to the filtered products (by attributes).
Or does anyone know a extension for this.\
I have magento 1.6.2.
You can check it out on testwinkel.liefstoereigenwijs.nl
I'm not sure why you want to avoid using categories, but have you tried using javascript?
<a href=”#” onClick=”Javascript:history.back();”>GO back</a>
The only problem with this, is that when a user enters your product page from let's say, goolge, the user will be redirected to google.
You can also take a look at this threat: Back to previous page with header( "Location: " ); in PHP