I am creating my Shopify store right now, and I don't know how to add 'enter password' field on password page. I tried many codes that I've found in internet, but nothing has worked as for now.
Could anybody please help me?
Your Question seems not clear,
However you might be facing issue to enable customer registration.
if yes follow below step:
Go to Settings => Checkout
And check below option as shown in the screenshot.
Related
I am working on developing a custom user portal using XPages. I would like to capture a user's last login/signin information and display it on the portal when the user logs in on the banner page.
Does anyone know how I can accomplish this for an XPages app?
Any help or insight into this is greatly appreciated.
Thank you!
Shabana.
My Portal Link: http://bit.ly/OJmanJ
I do this with a User document and just save the information of the last login there. Then I set a flag in sessionScope to know that I saved it already.
I don't think this information is logged automatically anywhere. So you need to log it yourself and then display this logged information on your portal.
I'm using magento 1.6.1.0 for our e commerce store. Only the problem is client asking to remove "customer login" from login page. How can i remove the magento default page title from every page. Pls anybody knows the solution for this pls pinging your answer..
Thankyou for advance..
Best Regards..
Open this file app/code/core/Mage/Customer/Block/Form/Login.php,
Find "_prepareLayout()" function.
Comment Out the "setTitle" command.
So your code now will look like this.
protected function _prepareLayout()
{
//$this->getLayout()->getBlock('head')->setTitle(Mage::helper('customer')->__('Customer Login'));
return parent::_prepareLayout();
}
To modify the customer login page you can edit the template file. Try app/design/frontend/default/default/customer/form/login.phtml or whichever theme you are using.
Is there a way in Yii to stop refreshing the page after a submit button. I want the user to keep the content after he/she submits the form.
Any help/advise will be appreciated.
it requires quite a bit of coding, and we can't really help since we don't know where you are at. i believe you can get some tutorials on google. You should give it a try and make a post again if you are stuck at something.
here are some links that i found:
http://www.yiiframework.com/forum/index.php?/topic/8219-solved-ajax-form-submission/
http://www.yiiframework.com/wiki/49/update-content-in-ajax-with-partialrender
When I click on the login button on http://www.coupean.com/user/login
I get an error.
What am i doing wrong to setup in Facebook App?
Do I need to touch anything on Open Graph?
When I want to submit the "like' action it always gives me this message:
No Aggregations created for this Action Type. Please create a completed Aggregation populated with sample data before submitting for review.
so i set up the aggregation...
but I do not know what this actually means and if i am doing them right.
![enter image description here][4]
How can we make the login work? Could you please provide a detailed explanation?
I cannot post up images here so:
please go to
http://www.coupean.com/images/s1.png
http://www.coupean.com/images/s2.png
and s3.png and s4.png under the same root url
https://www.facebook.com/dialog/permissions.request?api_key=APP_ID&app_id=APP_ID&...
You obviously need to insert your app's app ID and API key...
Additionally you now need to reset your app secret since you just made it public in one of your screenshots.
I would really appreciate it if someone would help me out with this issue.
I'm using SharePoint 2010. I created a Wiki Page Library without changing any of the library settings, and created a new Wiki page, all that went fine but once I started adding text and then tried to save the changes on the page, this message appears:
"You must specify a value for this required field"
I don't know what to do, there is no required field and I can't really fix that... so please help me with that message!!
Fatima, I don't know if you ever got your question answered, but this is a known issue with Publishing features. There is a field that is marked as required, but is not displayed on the page. I beleive it's the column/field called "Name". If you look through the Site Content Types and find "wiki page", you'll see that status is marked as "Required". Changing that should fix the issue for you.
This was caused by a Place holder missing from the Main area of your master page.
Even if you’ve moved it to a asp:Panel and declared it as false at the bottom of your master page you’ll still get the error.
All you need is to move content place holder
<asp:ContentPlaceHolder id=“PlaceHolderPageTitleInTitleArea” runat=”server”></asp:ContentPlaceHolder>
within the s4-bodyContainer div , within the s4-ca div seems to work best. Save the master page and that’s it. that no more irritating message.
Reference: http://sharepointbrandingteam.wordpress.com/2012/05/25/sharepoint-2010-error-you-must-specify-a-value-for-this-required-field/
Alternatively, you can try the solution suggested here