Jump to content

Daniel B

Members
  • Posts

    682
  • Joined

  • Last visited

  • Days Won

    2

Community Answers

  1. Daniel B's post in Need To Remove Tax Id Number From Registration was marked as the answer   
    Core-547 should help deal with this by allowing to hide/require certain fields, but in the mean time...this should work for you.
     
    In /plugins/order/views/templates/standard/types/registration/signup.pdt
     
    Find:
    <hr>                           <div class="row panel-fix"> <div class="col-md-12"> <h4><?php $this->_("Signup.index.heading_billing");?></h4> <div class="form-group"> <?php $this->Form->label($this->_("Signup.index.field_taxid", true), "tax_id"); $this->Form->fieldText("tax_id", $this->Html->ifSet($vars->tax_id), array('id' => "tax_id", 'class' => "form-control", 'placeholder' => $this->_("Signup.index.field_taxid", true))); ?> </div> </div>   </div> Replace with:

    <!-- <hr>                           <div class="row panel-fix"> <div class="col-md-12"> <h4><?php $this->_("Signup.index.heading_billing");?></h4> <div class="form-group"> <?php $this->Form->label($this->_("Signup.index.field_taxid", true), "tax_id"); $this->Form->fieldText("tax_id", $this->Html->ifSet($vars->tax_id), array('id' => "tax_id", 'class' => "form-control", 'placeholder' => $this->_("Signup.index.field_taxid", true))); ?> </div> </div>   </div> --> <?php $this->Form->fieldHidden("tax_id", $this->Html->ifSet($vars->tax_id), array('id' => "tax_id", 'class' => "form-control", 'placeholder' => $this->_("Signup.index.field_taxid", true))); ?>
  2. Daniel B's post in Interworx Soap/api Error was marked as the answer   
    and nevermind, looks like something just went wrong with soap during installing it.  phpinfo said it was installed and enabled, but I just installed it again to test and it's working fine now...
×
×
  • Create New...