WebsiteBaker Community Forum

WebsiteBaker Support (2.8.x) => Bakery Shop => Topic started by: ChochkoBG on June 01, 2014, 12:28:34 AM

Title: Read Customer Email from ws_users
Post by: ChochkoBG on June 01, 2014, 12:28:34 AM
Hello guys,

Is there a way, when a customer select product and continue with filling the form details to check if the User is Logged In, and if the User is Logged In to insert the E-mail Address and Confirm E-mail Address text in the fields and also if the User is not Logged In - the field to be empty ?

I think this script have to use ws_users from the database.

Thanks!!!
Title: Re: Read Customer Email from ws_users
Post by: ChochkoBG on June 01, 2014, 02:09:40 AM
OK, I fixed it.

If anyone want to do the same, you have to add the following code into /$WSB/modules/bakery/view_form.php
on line 95

Here is the Code:

Code: [Select]
// Insert Customer E-Mail Address in the Order Form
// Author: ChochkoBG
// Version: 1.0
// Get existing values from database
$sql = "SELECT email FROM ".TABLE_PREFIX."users WHERE user_id = '".$wb->get_user_id()."'";
$rowset = $database->query($sql);
if($database->is_error()) $error[] = $database->get_error();
$row = $rowset->fetchRow();
// insert values into form
$tpl->set_var('$cust_email', $row['email']);

if (!isset($cust_email) || $cust_email == '') {
$cust_email = $row['email'];
}
        if (!isset($cust_confirm_email) || $cust_confirm_email == '') {
$cust_confirm_email = $row['email'];
}

This code will read the information from the User Account (The E-mail Address) and If the User is Logged In with his account, it will insert the E-Mail Address and Confirm E-Mail Address in the Customer Order Form.

Thanks!!!
Title: Re: Read Customer Email from ws_users
Post by: DarkViper on June 01, 2014, 11:35:29 AM
Code: [Select]
// Insert Customer E-Mail Address in the Order Form
// Author: ChochkoBG
// Version: 1.0
// Get existing values from database
$sql = "SELECT email FROM ".TABLE_PREFIX."users WHERE user_id = '".$wb->get_user_id()."'";
$rowset = $database->query($sql);
if($database->is_error()) $error[] = $database->get_error();
$row = $rowset->fetchRow();
// insert values into form
$tpl->set_var('$cust_email', $row['email']);

if (!isset($cust_email) || $cust_email == '') {
$cust_email = $row['email'];
}
        if (!isset($cust_confirm_email) || $cust_confirm_email == '') {
$cust_confirm_email = $row['email'];
}

maybe that's a bit more easier. ;)
Code: [Select]
<?php
// insert values into form
$tpl->set_var('$cust_email'$wb->get_email());
if (!isset($cust_email) || $cust_email == '') {
$cust_email $wb->get_email();
}
        if (!isset(
$cust_confirm_email) || $cust_confirm_email == '') {
$cust_confirm_email $wb->get_email();
}
Note: you took the UID by get_user_id() from the object $wb.  If that UID exists, then also the users email exists in the object $wb and you can use the methods of $wb.
You can find user related methods in class.wb from line 235 to 283 (WB-2.8.3)

Title: Re: Read Customer Email from ws_users
Post by: ChochkoBG on June 01, 2014, 11:50:37 AM
Yes, your method is better.

Thanks!!!