Marc Lacroix
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Configurator for WooCommerce] Translate custom html layerHi there,
The custom html sections are not directly translatable.
Only the name and description are.
However, you could technically add language specific html content and use CSS to display the appropriate parts, though I would only recommend such a thing if you have only 2 languages.Marc
Forum: Plugins
In reply to: [Product Configurator for WooCommerce] Variable Product not workingHi there,
When working with variable products, shortcodes only work with single variations – the product that can actually be added to the cart. So if you were to use the shortcode on a page, you would need to use a variation ID in the shortcode, not the variable product ID. This is because the configurator relies on a variation being selected prior to opening.
The same goes on the product page. What some users do is have a custom variation selection, which includes the attributes in the URL. As a result the current variation is determined in PHP, and the shortcode is added dynamically in PHP as well.
Marc
Hi there,
This is not related to the configurator theme used, as the themes only affect the configurator itself.
The view and edit links depend on 2 things:- The settings should be on, in Settings > Product Configurator > General options > Display options, “Show Edit configuration link in the cart and checkout” and “Show view configuration link in the order details”.
- The product itself need to be “visible” in the shop.
Marc
Forum: Plugins
In reply to: [Product Configurator for WooCommerce] How to translate Add to cartThis should be fixed in the latest release.
Hey @smrsamuelayres
Thanks for sharing that. I haven’t been able to take a close look yet, but will definitely do when I look into this feature.Forum: Plugins
In reply to: [Product Configurator for WooCommerce] How to translate Add to cartHi Roman,
It should use the string from WooCommerce, however I’ve just seen that there is an error which prevents that. I’ll release a fix ASAP.
Marc
Forum: Plugins
In reply to: [Product Configurator for WooCommerce] latest update broke font sizesHi there,
Would you be able to share the configurator’s URL so I can see the issue?
MarcHey @smrsamuelayres
Thanks for your suggestions, and the plugin!
I’ll definitely look into adding this feature – probably included int the plugin, though you can definitely send extra money 😀I haven’t tested the plugin you sent yet.
Though do you think you would be able to send me a recording of your custom order process?
It would help me understand the process and requirement.
You can send the link via this form: http://wc-product-configurator.com/contactThanks!
Hey @smrsamuelayres
Did you manage to test with “Allow adding the product to cart without configuring” enabled?What is likely happening, is that the error “Configuration data is missing, the product could not be added to the cart.” prevents the product from being added to the cart altogether, including the custom metadata you manually added.
Here’s what I would suggest you try, to see if that’s where things go wrong:
- go to Settings > Product Configurator > General options > Misc > Allow adding the product to cart without configuring
- Test your manual process, to see if the data is kept.
I’m not sure I understand what’s going on.
I don’t think anything is designed to be wiped.
Could you maybe share a screencast of the process?
You can send it here.I see. That’s not a valid configuration.
The actual configuration data, which is used for price calculation and all, is a specific hidden meta, with a JSON object.There are probably other options, but the way I would do this is use a plugin such as “view admin as“.
This plugin allows browsing the site as a different user.
So you could choose View as > your customer, go to the product, configure and go through the normal Request a Quote process.Hi there,
What is your process for adding the metadata on your side?
Marc
Hi Tom,
You may need to contact WP-Rocket’s support for this:
The button color is Custom CSS which you added on your side, most likely via the customizer:/* maak de knop configurator groen*/
.mkl_pc .mkl_pc_container button.configurator-add-to-cart, .mkl_pc .mkl_pc_container .mkl-pc--steps button {
background: #21Ce57;
border: 1px solid #21ce57;
color: #FFF;
font-size: 1rem;
padding: 10px 25px;
border-radius: 0;
font-weight: 400;
}Since mkl_pc is already excluded, I’m not sure what else could prevent this from being removed.
You could still try addingwp-custom-csswhich is the handle for the custom CSS.Marc
Hi Tom,
Try with the class
.mkl_pc
Most of the CSS is prefixed with this class, so it should be enough.