WOOT - WooCommerce Active Products Tables

Update v.2.0.3/v.1.0.3

  • Small fixes
  • Added new mode: json. Mode ‘json‘ not get posts by ajax and display on the page completely cached table exactly after page loading. As ‘json‘ mode uses on the backend, on the front with this mode should be applied shortcode attributeĀ is_front=1. Example:
  • New hook: woot_vurgc_shortcode_data for manipulation of the data for such shortcodes data as: , , , , . Very handy if necessary change for example per_page value in popup for variations:
    add_filter('woot_vurgc_shortcode_data', function($args) {
    
        if ($args === 'woot_variations') {
            $args = 2;
        }
    
        return $args;
    });
    
    VURGC – Variations, Upsells, Related, Grouped, Cross sells
  • To ext favourites shortcode added attribute ‘cells_width‘
  [...]

Update v.2.0.2/v.1.0.2

  • minor bug fixes
  • added hook woot_disable_all_links_on_titles – global disabling link on product title
    add_filter('woot_disable_all_links_on_titles', function($as_text) {
        return true;
    });
  • added hook woot_disable_all_links_on_thumbs – global disabling link on product thumbnail
    add_filter('woot_disable_all_links_on_thumbs', function($as_text) {
        return true;
    });
  • new option for column ‘Thumbnail‘: Link – If enabled thumbnail will be displayed without link to the single product
  • new attribute for shortcode : disable_link_on_thumb – disabling/enabling link on product thumbnail (1/0)
  • new attribute for shortcode : disable_link_on_thumb – disabling/enabling link on product title (1/0)
  [...]