• Resolved tomrijeka

    (@tomrijeka)


    Hello,

    I installed OrillaCart and I’m trying to set it up.
    However, when shipping option is checked, I got message Shipping: “Enter all required data to get shipping options!” in checkout. All fields with a star are filled.

    What can I do to fix it? Help, please.

    Also, is possible to remove some fields from checkout form? I don’t need “State” field.

    Btw, your site is not working, only demo subdomain.

    Thank you.

    https://www.ads-software.com/plugins/orillacart/

Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author orillacart

    (@orillacart)

    Hello,

    Please ensure that you have set the following properly!

    1. Created shipping group and set standart_shipping as a class
    2. Added shipping rates and proper rules in those rates

    In most cases this is the reason for that message.
    It is possible to remove fields from the checkout form, but to do that you need to add code to the template.php:

    add_action(“com_shop_before_checkout_fields”,”remove_state_field”);

    function remove_state_field($view){

    $view->billing->remove_field(‘billing_state’);
    $view->shipping->remove_field(‘shipping_state’);
    }

    Best Regards

    Plugin Author orillacart

    (@orillacart)

    Here is an example code, that needs to be added in your template.php file to add surname field after the billing state in the checkout form.

    add_action(“com_shop_before_checkout_fields”,”add_fields”);

    function add_fields($view){

    $field = field::_(‘text’, ‘billing_surname’)->add_class(‘input-text billibg_field’);
    $field->set_required()->add_param(‘placeholder’, __(‘Surname’, ‘com_shop’));
    $field->set_label(__(‘Surname’, ‘com_shop’))->set_error_msg(__(“Please enter Surname”, “com_shop”));

    $view->billing->add_after(‘billing_state’,$field);

    }

    Best Regards

    Hello,
    I have the same problem with shipping.
    And another thing, where can I find template.php?
    Thanks in advance for your help.

    Best Regards

    btw. I can not create shipping group ??

    I got message Shipping: “Enter all required data to get shipping options!” in checkout.

    Plugin Author orillacart

    (@orillacart)

    Hello,
    functions.php this file is in your theme folder. My mistake sorry.
    If you want to create shipping method go to Shipping Methods > New. After filling the form click on List Rates (it is a button in the middle of the listing) then add new rate. If you want to multiply the weight of the product for example by quantity, select yes in “Multiply by quantity sum:” setting

    Hello,
    thanks you.
    When I canceled translation of it, it worked.

    Regards

    Hello.
    I want to use the plugin OrillaCart in my site. I want to remove some fields from the page Checkout.
    I tried to remove unnecessary fields through a file function.php

    add_action(“com_shop_before_checkout_fields”,”remove_state_field”);

    function remove_state_field($view){

    $view->billing->remove_field(‘billing_state’);
    $view->shipping->remove_field(‘shipping_state’);
    }

    add_action(“com_shop_before_checkout_fields”,”remove_country_field”);

    function remove_country_field($view){

    $view->billing->remove_field(‘billing_country’);
    $view->shipping->remove_field(‘shipping_country’);
    }

    , but when placing the order requires to enter the required fields: state and country (in error message).
    Please help me to remove these fields from the checkout page.
    I also want to remove the payment method field from the checkout page.
    Please help.
    p.s. Sorry me for my english
    Best Regards

    Plugin Author orillacart

    (@orillacart)

    Hello,

    Country, state and payment methods are fields that can not be removed for the moment.
    For our next version, we will add the ability country and state fields to be removed, then it will be assumed that all customers are from the same country and state as the shop.

    As for the payment method, you can choose some of the available offline payment methods they will let the customer finish the order without actual payment to happen.

    Best Regards

    Thanks for the quick reply. I really appreciate it.
    Waiting for the new version.
    It would be nice to edit fields with cforms plugin, as it is in the wp e-commerce.

    Best Regards

    Hi, maybe should start new thread but I am now also experiencing the same shipping issue…all settings ok (standard_class and rules) and it was working OK so I think problem was introduced when I updated to 1.0.20 this evening…

    @mrnicksheppard: If you require assistance then, as per the Forum Welcome, please post your own topic.

    This topic may reference an old version of WordPress.

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Shipping: Enter all required data to get shipping options!’ is closed to new replies.