magicmarker1955
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PayPal not showing shipping addressVery helpful-thank you.
Forum: Fixing WordPress
In reply to: PayPal not showing shipping addressOKKKKKKKKKKKK- any links to where and how to fix PayPal? It seems like this would be a pretty common issue…
Forum: Fixing WordPress
In reply to: Change "Username" in login windowVery cool-thanks! Don’t know why I couldn’t find it…
Worked-thanks!
Added it to my functions.php and got this:
function extras_required($values){ //amends required fields $values=array(‘shipping’,’first_name’,’last_name’,’email’,’phone’,’address’,’city’,’zip’); return $values; } add_filter(‘eshopCheckoutReqd’,’extras_required’);
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/content/s/i/e/sierra109/html/rol/wp-content/themes/eStore2.0/functions.php:36) in /home/content/s/i/e/sierra109/html/rol/wp-content/plugins/eshop/eshop.php on line 48This is great except where do I add this code?
function extras_required($values){
//amends required fields
$values=array(‘shipping’,’first_name’,’last_name’,’email’,’phone’,’address’,’city’,’zip’);
return $values;
}
add_filter(‘eshopCheckoutReqd’,’extras_required’);