lorembolo
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Page builder causes strange behavior in fieldsNo answer ? It’s a really annoying bug, it would be great to get some help.
thx
Thanks for your answer Marcin.
As I mentionned, I can’t use the parent relationship for this use. (it(s more complicated than the description above)
Ther is no other way to achieve this ? I heard of post2post or ACF relationship, they seem to do what I want…
And, by the way, I already use the relationship beetween 2 CP, but, the meta box showing is not really user friendly.
It shows the slug of the taxonomy, instead of its name, and the message is not really clearForum: Plugins
In reply to: Price Measurement Calculator Plugin : custom formula ?I’ve been searching in the code, but not found anything…. You should ask the devs, they answer quickly.
I’m working on another WP site, but I will tell you when I’m going to work on this.
Forum: Plugins
In reply to: Price Measurement Calculator Plugin : custom formula ?Nope, I didn’t manage to sort this out.
I bought the plugin, the devs told me it’s a way to replace the default formulas by the one I want.But I didn’t work on this yet.
Forum: Themes and Templates
In reply to: Wootheme Mystile : Open Sans font issuethis theme is free, I thought maybe other users could help.
but, OkForum: Plugins
In reply to: Price Measurement Calculator Plugin : custom formula ?So, noone can help with this ?
Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttons‘
PMC is really simple. That would work with PMC => You’ve got a base unit price by sq m. Now the user can put his dimensions in 2 inputs: lenght and width. The math for that: base_unit_price_in_sq_m * lenght * width = total_priceThat would work with the extension. But your perimeter calculation is a special kind and not supported by the extension.
‘Do you know in wich file(s) are located the calculation formulas ?
Thx in advance.Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsThanks for the tip.
I’m glad Product Addon suits your needs.
When you purchased PMC, do they give you a full documentation? And would it be possible to read it ?
ThxForum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsWell, my needs are really simple : instead of area I would like to have a custom formula for selling frames.
A frame have a price by meter (price_m), the user choose his frame dimensions (L and H), then the calculator must show the total price, based on the perimeter : (l + h)x2xprice_m.I really don’t understand why this is not implemented.
Thanks for your help.
Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsDid you read this page : https://docs.woothemes.com/document/product-add-ons/
Not sure, but seems to be near your needs.
By the way, what’s your opinion about PMC ? Is it easy to customize, are there a lot of hooks or understanble functions ?
I would like to give it a try, but….what a price !Anyway, good luck with your search.
Forum: Plugins
In reply to: [WooCommerce] Add some extra price fields or radio buttonsI’m looking for a similar type of Price Measurement Calculator customisation. Did you take a look to Product addon or WP Calculator or calculated field forms?
Not sure it suit your needs.Forum: Plugins
In reply to: Price Measurement Calculator Plugin : custom formula ?Sorry to post again, but this question is really a profesional need.
Does anyone her know this plugin and could help me with this ?If it’s a too specific development, I can hire developers for this.
Forum: Plugins
In reply to: Price Measurement Calculator Plugin : custom formula ?No answer ? no idea ? No one ?
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Plugin broken by WordPress updateOk, this is solved.
In my functions.php i was using wrong code.
1st code (was working with WP3.7)
new MultiPostThumbnails(array( 'label' => 'Vignette Artiste ou Stock', 'id' => 'featured-image-2', 'post_type' => 'artiste', 'post_type' => 'stock-artiste' ) );
New Code (Now Working)
$types = array('artiste', 'stock-artiste'); foreach($types as $type) { new MultiPostThumbnails(array( 'label' => 'Vignette Artiste ou Stock', 'id' => 'featured-image-2', 'post_type' => $type ) ); }
Forum: Plugins
In reply to: [Multiple Post Thumbnails] Plugin broken by WordPress updateI got the same problem.
Previous added thumbnails aren’t visible.I only got the Custom Field. (myposttype)_featured-image-2_thumbnail_id in each post.
Any chance that can be solved?
Thanks in advance.
EDIT : : it seems that the problem is caused when using multiple thumbnail for multiple post types.
Whan a Second thumbnail is associated with only one post type, it seems to work.
maybe it can help.