Viewing 11 replies - 16 through 26 (of 26 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    great. then don’t use the last one

    Hi gplsaver,

    I had the same issue and it actually worked changing the 100 to 999. Awesome!!

    There is only the last button left where it says:

    “Please Submit Your Quote Request”

    Actually tried some few things, but it didn’t seem to work.

    Can you tell how I would manage to translate that as well?
    (I mean by adding some few more lines to functions.php)

    I actually managed to fix it my self.

    Here goes to those that have the same issue:

    add_filter('gpls_woo_rfq_rfq_submit_your_order_text','gpls_woo_rfq_rfq_submit_your_order_text',10,1);
    
    function gpls_woo_rfq_rfq_submit_your_order_text($submit_your_order_text){
    
    	$submit_your_order_text = "New button text goes here!";
    	return $submit_your_order_text;
    }

    Thanks in advance gplsaver, really a helpful plugin!

    There was another little thing though that I had to comment in the css because it showed up 2 times.

    .required:after {
        content:"*";
        color:red;
    }

    At line 163 in gpls_woo_rfq.css

    Might be some templates that already have that * after the label.

    I was wondering if I could add some code to your plugin that would use the AJAX add to cart script in Woocommerce:

    woocommerce_enable_ajax_add_to_cart

    in the file: woocommerce/includes/class-wc-frontend-scripts.php

    The option is already in the Woocommerce backend, but it’s not working with your plugin. Is that on purpose?

    Plugin Author Neah Plugins

    (@gplsaver)

    Not on purpose per se. If you are referring to adding to the RFQ cart with the normal checkout option, then the Ajax adding has not been implemented. We are trying to get the bugs out first. There are a bunch of stuff that needs to be fixed/implemented. Next month we have another major upgrade to address some of these issues. including using a template for the cart to allow people to customize RFQ cart page or include it in their own page with a short code. There are also issues with non-simple products that we need to resolve. Ajax is actually what we are thinking might be the answer to some of our problems.

    Hi gplsaver,

    Thanks for the answer. I understand your point.

    I discovered another issue when clicking on “Add to cart”. Well it works fine while adding a product to the cart, but when going to the cart it self, it have added the product twice.
    I guess that you are already aware of it?

    Plugin Author Neah Plugins

    (@gplsaver)

    I was not. I will add that to the bug list to review/fix. thanks

    Plugin Author Neah Plugins

    (@gplsaver)

    quatroweb
    good job on the css catch

    .required:after {
    content:”*”;
    color:red;
    }

    np gplsaver, I’m glad to help with some bugfixing. It’s a really great plugin! Keep up the good work!!

    Plugin Author Neah Plugins

    (@gplsaver)

    translations can now be done in the settings

Viewing 11 replies - 16 through 26 (of 26 total)
  • The topic ‘translation’ is closed to new replies.