Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Author info.propoza

    (@infopropoza)

    Hello John,

    We have updated our code and database so it now accepts decimal quantities.

    Plugin Author info.propoza

    (@infopropoza)

    Hi Yazoosa,

    Thanks for taking the time to give your feedback. Would you be able to elaborate on the statement “it doesn’t work as it should”? I am eager to understand your complaint and to fix it.

    You can send the information including attachments also to [email protected]

    Plugin Author info.propoza

    (@infopropoza)

    Hello Putrevus,

    This is highly unexpected behavior, could you maybe clarify what type of problems this crash entails?

    Do you also have error logging from the specific situation?

    For further conversation, I would like to refer you to our Zendesk support:
    https://propoza.zendesk.com/

    Cheers,

    Kevin | Propoza Developer

    Plugin Author info.propoza

    (@infopropoza)

    Sure, you can contact me directly via [email protected] . My name is Remco.

    Plugin Author info.propoza

    (@infopropoza)

    Hello,

    First of all thanks for your message!

    The scenario that you describe requires quite a bit of additional development. I do understand your purpose and can confirm that Propoza is already the backbone or your requirement, but it needs significant extending.

    Just a rough heads up on the estimated cost for this development would be €2000 – €3500.

    Looking forward to hearing from you.

    Propoza

    Plugin Author info.propoza

    (@infopropoza)

    Hi Alex,

    Can you send your question to [email protected]. From there our technical support can reply directly to you.

    Thanks
    Propoza

    Plugin Author info.propoza

    (@infopropoza)

    Hello,

    The referer/origin from with which the request is made should correspond with your configured dashboard URL. So you could check if the variables $_SERVER['HTTP_REFERER']or $_SERVER['HTTP_ORIGIN'] is set and is equal to https://sub-domain.propoza.com where the sub-domain would be the value that you have stored in your Propoza settings. Alternatively, you could create a support ticket by sending this issue to [email protected] where we can better help you solve this issue.

    Plugin Author info.propoza

    (@infopropoza)

    Hello Bob,

    Thanks for your question. Is it possible to receive your store’s credentials so we can have a look? You can send the credentials to our secure support channel via [email protected]

    Thanks in advance.

    Propoza

    Plugin Author info.propoza

    (@infopropoza)

    We do not have such a functionality yet, however you could make use of the add_action and add_filter to accomplish what you want.

    For example to change the button text “Add to cart” you can make use of the filters “woocommerce_product_single_add_to_cart_text” and “woocommerce_product_add_to_cart_text”.
    Simply add a function like the one below to your functions file found at Appearance->Editor.

    function propoza_button_text()
    {
        return __(‘Add product to Quote', 'propoza’);
    }

    Next you need to register the function to the filter by adding

    add_filter('woocommerce_product_single_add_to_cart_text', 'propoza_button_text');
    add_filter('woocommerce_product_add_to_cart_text', 'propoza_button_text’);

    Removing the prices can be done in a similar way. Add the next function:

    function quote_only_mode()
    {
        remove_action('woocommerce_proceed_to_checkout','woocommerce_button_proceed_to_checkout');
        remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
        remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    
        add_filter( 'woocommerce_get_price_html', 'hide_all_wc_prices');
        add_filter( 'woocommerce_cart_item_price', 'hide_all_wc_prices');
        add_filter( 'woocommerce_cart_item_subtotal', 'hide_all_wc_prices');
    }

    This function removes the “Proceed to checkout” button and adds filter to the prices. Next you should register this function to the “init” action.

    add_action('init','quote_only_mode’);

    Plugin Author info.propoza

    (@infopropoza)

    Hello,

    The Propoza button “request a quote” is added with the action “woocommerce_proceed_to_checkout”, so you need to be sure <?php do_action( 'woocommerce_proceed_to_checkout' ); ?> is called in your theme.

    Kind regards,
    Propoza team

    Plugin Author info.propoza

    (@infopropoza)

    Hallo Gilbert,

    Een Nederlandse vertaling staat op de roadmap. We verwachten rond juni de app meertalig te hebben gemaakt.

    In English: We expect multi language support in June/July this year.

    Plugin Author info.propoza

    (@infopropoza)

    Hello Frank,

    Thanks for your feedback. We need your feedback to further improve this plugin!

    Request number 1 and 3 are on our roadmap.
    Regarding your second question, we have send you an email about this by email.

    Looking forward to hear from you.

    Remco

Viewing 12 replies - 1 through 12 (of 12 total)