There is no spot for the shipping address

WPPizza – A Restaurant Plugin for WordPress Support Add-Ons Gateways Paypal Standard There is no spot for the shipping address

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #56048
    shotgunflat
    Participant

      When the Customers proceed to payment from this page – http://townspa.sgfclients.com/pizza-by-mail/, they are unable to see the Shipping Address field. Is this something that can be configured from within the Gateway settings?

      #56049
      Olly
      Admin & Mod

        >they are unable to see the Shipping Address field.
        that is correct, because the shipping (aka delivery) address should really be added to the checkout form in the first place
        or the plugin will never have any information about where to send the order to . And as that is typically the case, asking for the shipping address again once in the paypal payment screen is superfluous.

        that said, if you want to enable this anyway for some reason or another , you can do this by using a filter like so (not tested, but should work just fine)

        
        add_filter('wppizza_filter_paypal_parameters', 'myprefix_set_paypal_parameters');
        function myprefix_set_paypal_parameters($parameters){
        unset($parameters['no_shipping']);
        /*
        or instead try one of the below if the above does not work
        */
        //$parameters['no_shipping'] = 0;
        //$parameters['no_shipping'] = false;
        return 	$parameters;
        }
        

        note: this applies when using the paypal standard redirect implementation (which you are seemingly using)

      Viewing 2 posts - 1 through 2 (of 2 total)
      • The topic ‘There is no spot for the shipping address’ is closed to new replies.