Martien
Forum Replies Created
-
Forum: Plugins
In reply to: [Floorplans - Lite] Request for Assistance with Light Version ToolHi Theres,
If you want to use SVG there are some things to take into account. Here you can find further instructions.
Forum: Plugins
In reply to: [Floorplans - Lite] WoocommerceThis is more a question about WooCommerce. First, you need to think about how you would like to setup your store, e.g. do you wish to manage WC from floorplans or the other way around or something in between.
Then you could put a floorplan on your products page, or directly on the checkout page. Floorplans will act as an alternative to the native WC form elements. WC needs to be set-up to react accordingly.
Next, floorplans and WC need to communicate. This can be done in floorplans with the PHP floorplan_get_data function and the floorplan_store_read/write filters.
Forum: Plugins
In reply to: [Floorplans - Lite] Overlapping LabelI see the problem and it appears to be a bug. We will investigate further and have it fixed with the next update.
Forum: Plugins
In reply to: [Floorplans - Lite] Can not insert tool tips at elementThe tooltips are available in the Basic version. If you would like to continue to use the Lite version, you can build your own tooltips in JavaScript and attach a mouseover event on the ‘avatar’ class.
Forum: Plugins
In reply to: [Floorplans - Lite] ContactSure! We were temporarily unavailable due to the holidays
Forum: Plugins
In reply to: [Ajaxify Wordpress Site(AWS)] Ajax response handler breaks JavascriptOops, wrong again. It appears there’s something wrong with the HTML Helper function documentHtml() also.
Fetch the scripts from the raw ajax response data does work:
// Fetch the scripts var el = document.createElement('html'); el.innerHTML=data; $scripts = $(el).find('#' + aws_data['container_id'] + ' script'); if ( $scripts.length ) $dataBody.find('#document-script').detach();
Forum: Plugins
In reply to: [Ajaxify Wordpress Site(AWS)] Ajax response handler breaks JavascriptSolution should be:
var el = ""; el.innerHTML = documentHtml(data); var $data = $(el);
Sorry, Martien