• Hi


    I am trialling the free plugin before upgrading. I have 3 issues with the first addion created

    1) I have set a regular and sale price but it doesn’t show them correctly, it just shows + £169 £129 and doesn’t cross out the £169

    2) I have added images to the options but they don’t show at all

    3) You don’t seem to allow the option to only show the addon on certain attributes, in my case a single bed. Instead you have to choose EVERY product with that attribute manually. I am not seeing EVERY product in the list so this is proving difficult

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Alessio Torrisi

    (@alessio91)

    Hello there,

    1. Are you using the type “select” for your options? In this case, unfortunately, HTML does not allow to include multiple tags inside the <option> one, so we can’t highlight in a specific way the on sale price. Maybe in this particular case we can consider to show only the Sale price, I?ll talk about that with the plugin developer.
    2. I can’t replicate the issue on my installation, is that a problem that occurred updating the plugin or can you replicate it also if you create a new option now?
    3. Unfortunately there is no way to select attributes, you need choose one by one your variations. If you don’t see all of them in the list, please add following code in the file functions.php of your theme:
    add_filter( 'woocommerce_json_search_limit', 'yith_wapo_set_woocommerce_json_search_limit' );
    
    if( ! function_exists( 'yith_wapo_set_woocommerce_json_search_limit' ) ){
    	function yith_wapo_set_woocommerce_json_search_limit( $value ){
    		$value = 100;
    		return $value;
    	}
    }

    We remain at your disposal.

Viewing 1 replies (of 1 total)
  • The topic ‘Formatting issues & attributes missing’ is closed to new replies.