John
Forum Replies Created
-
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Quantity multiplierHow much will it cost to get a custom field that will multiply the Add To Cart quantity?
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Quantity multiplierForum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Quantity multiplierI install the latest PPOM PRO and the MEASUREMENT field is there. Using the field just multiplies the price of the item but not the quantity – from $5.00 increases to $15.00 with no increase in quantity. The quantity is important to us because of quantity discount pricing.
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Quantity multiplierI am using PPOM PRO version 10.6 and there is not a MEASURE option.
Do I need to repurchase the PRO version to get this feature?
Forum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] Quantity multiplierI am using a custom field to calculate the number of tags to order – this defines a set (for example 1-20 is a set of 20). The Variation Quantities field seems to override the quantity amount. I am looking for a field that will input the number of sets to order and use this number to multiply the quantity ordered. I can send screenshots is needed.
Forum: Plugins
In reply to: [Reusable Product Description for WooCommerce] Attribute CSSMike,
Thank you for your help. I have adapted your previous suggestion into a temporary workaround.
I would like another developer to work on adapting your Product Attribute Tab plugin to allow dynamic changes, is this permissible? Can you provide me with additional information for a developer?
Again, thank you for your help.
John Sherman
Cascade LaserForum: Plugins
In reply to: [Reusable Product Description for WooCommerce] Attribute CSSMike,
Thank you for your interesting solution. I have several dozen images that would have to be added.
Are you willing to make a new plugin that uses the Product Attribute Tab to dynamically change the fill and at what cost?
I would like to have options.
John
Forum: Plugins
In reply to: [Reusable Product Description for WooCommerce] Attribute CSSMike,
Thank you for our response.
I am using:
– N-Media Personalized Product Option Manager for the text entry
(I use: .wcp { fill: #f0f0f0; } in an Input CSS field to set initial SVG fill)
– Wysiwyg Custom Products Premium to display entered text (uses SVG)
– Improved Variable Product Attributes to select the color attribute.I can not get the right combination of commands for your Product Attribute Tab to change the SVG fill.
An example page:
https://www.customtagengraving.com/product/plastic-round-ear/Any help will be appreciated.
John Sherman
Cascade Laser Corp.duplicate data name – reconfigured – resolved
thanksForum: Plugins
In reply to: [PPOM - Product Addons & Custom Fields for WooCommerce] line spacingThank you for your response. I found this code that does what I need.
.woocommerce form
.form-row label {
line-height: 1.2;
font-size: 16px;
}Forum: Plugins
In reply to: [WooCommerce] keyboard keycode substitutionAs you know HTML does not process multiple spaces. I have a site where a customer can enter text, including multiple spaces, into a TEXT/TEXTAREA input. I want to keep the spaces by replacing the space (ASCII(32)) with the ASCII(0160) (the character) (citing ASCII(255) was my bad) thus maintain the customer whitespace formatting. This is a WooCommerce website.
Forum: Plugins
In reply to: [WooCommerce] keyboard keycode substitutionI am not wanting to change field type. I am using the TEXT and/or TEXTAREA of a plugin to capture customer customization. The spacebar is used to position text withing the TEXT/TEXTAREA but HTML removes all but one space. By replace the ASCII(32) spacebar with ASCII(255), essentially , I can retain customer formatting on TEXT entry.
Forum: Plugins
In reply to: [WooCommerce] keyboard keycode substitutionI am not trying to change field length. I have TEXT and TEXTAREA fields for customers to input information that may include multiple spaces (ASCII(32)). HTML only allows 1 space to pass through to the shopping cart and emails. By replacing ASCII(32) with ASCII(255) I change the space to the ASCII code and multiple spaces are allowed. This works if I enter ALT(255) from the keyboard instead of using the spacebar.