• Hi,

    I’ve used this plugin for a few of my eCommerce sites now, I’m just wondering if it’s possible to change a few formatting issues I have..

    – Can I change the ‘Product added!’ text to ‘Thank you, your product has been added!’

    – I would like the response link text to say “View your quote list”, and in bold as well please.

    – Also is it possible to change the loading gif to a higher resolution version?

    Thanks!

    -Mark

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Posiflex54

    (@posiflex54)

    Hi,

    Also is it possible to alter the button hover colour? I have a white background, and at the moment when the user hovers over the button it disappears, (I’m guessing due to the hover colour is the same colour as the site background?), but is still clickable.

    Thanks.

    Plugin Author YITHEMES

    (@yithemes)

    Hi,
    for change the text “Product Added” you can use the filter ‘yith_ywraq_product_added_to_list_message’

    add_filter('yith_ywraq_product_added_to_list_message', 'yith_ywraq_product_added_to_list_message');
    function yith_ywraq_product_added_to_list_message( $message ){
      return 'Thank you, your product has been added!';
    }

    for change the text “Browse the list” you can use the filter ‘ywraq_product_added_view_browse_list’

    
    add_filter('ywraq_product_added_view_browse_list', 'ywraq_product_added_view_browse_list');
    function ywraq_product_added_view_browse_list( $message ){
      return "<strong>View your quote list</strong>';
    }
    

    If you want change the loading, you should change the image in the file
    /plugins/request-a-quote/templates/add-to-quote-button.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Browse the list text formatting’ is closed to new replies.