I am writing regarding Add-ons plugin. When a customer selects all previous attributes, xadd-on radio button disappears and cannot be brought back. Is this standard practice, or is something not working correctly? You can see the issue on the website?https://even-star.com/product/bunkica-za-hisnega-ljubljencka/.
I look forward to your response.
Best regards,
Ajda
I have been able to manually use the data-cff-field method to insert the pricing in the label of a radio button, however, since there are over 100 products this method slows down the site so much that is not usable.
I have tried using a function to assign and set choice value method you have shown on this forum but it does not work with data-cff-field. Any suggestions for having an on/off switch, in a row, that users can select to include an item for pricing?
Here is what works in the label field manually;
<span class="bprice-label-t">Everyday</span><span class="bprice-label-n"><span data-cff-field="fieldname2315" class="bprice-w"></span><span data-cff-field="fieldname2316" class="bprice-w"></span><span data-cff-field="fieldname2317" class="bprice-w"></span></span>
This is the result I am looking for:
https://cbd.nationalpixel.com/wp-content/uploads/2024/09/Pricing-–-ClosetCalc-09-24-2024_06_04_PM.png
]]>Also the desktop’s checkout page where added products are listed doesn’t look very neat. Product variation section is too close to the product name, how to create gap between them?
And on mobile view the cart’s added products list also looks strange, I mean that there are too big gaps between every row (toode, hind, kogus, vahesumma). Somehow there is also double price row (hind, vahesumma – it’s the same.. why need both?) for all products and the product image placement above all of it is also weird.
]]>Hi there! Needing some help again! My cliente need to obligate the customer to inform what kind oh card he needs to pay with (its 3 options); It is already at the site, but is not working (the data are note being printed at the PRINT INVOICE) – I tried to adapt a function as bellow, knowing the name of the field, just like that. Also a print of the form and the PRINT INVOICE where I want to show the extra field: https://telecris.app/wp-content/uploads/2024/06/print-invoice.png
function example_custom_order_fields22( $fields, $order ) {
$new_fields = array();
if( get_post_meta( $order->id, 'billing_wooccm12', true ) ) {
$new_fields['billing_wooccm12'] = array(
'label' => 'ID:',
'value' => get_post_meta( $order->id, 'billing_wooccm12', true )
);
}
return array_merge( $fields, $new_fields );
}
add_filter( 'wcdn_order_info_fields', 'example_custom_order_fields22', 10, 2 );
]]>Dear [Plugin Support Team/Developer],
I hope this message finds you well.
I am writing to bring to your attention an issue I am experiencing with the Membership Plugin. Whenever a user role is selected on the frontend, it is not being saved in the WordPress backend under the Users section.
Here are the details of the issue:
This issue is affecting the user management functionality of my website, and I would appreciate any assistance you can provide to resolve it. Please let me know if you need any additional information or access to my WordPress site to troubleshoot the problem.
Thank you for your prompt attention to this matter. I look forward to your response.
Please check the Screenshot below
https://oec.d-designstudios.com/wp-content/uploads/2024/06/796bbb64-533f-431d-98bc-60a5f5e9676d.jpg
https://oec.d-designstudios.com/wp-content/uploads/2024/06/728f52e0-97ac-4dfc-b20d-0fa1b3984cc1.jpg
https://oec.d-designstudios.com/wp-content/uploads/2024/06/61c63a64-3dd7-4da0-87f3-5c9c0bcbd9f6.jpg
I’ve tried working with CSS via the browser developer tools, but can’t find a way to do it. See a screenshot of the problem here.
Update: I was able to make it better, using some funky CSS. I wonder if there’s a better way by manipulating the Flex settings for small screens? I got it to look like this, using this CSS for screen width 480px and smaller:
.forminator-ui.forminator-custom-form[data-design=default] .forminator-repeater-field {
padding: 10px 5px 20px 15px !important;
}
#forminator-module-40381 .forminator-field .forminator-radio .forminator-radio-image span {
width: 80px !important;
height: 80px !important;
}
.forminator-has_image .forminator-radio-bullet {
margin-left: 99px;
margin-top: -40px !important;
}
.forminator-has_image .forminator-radio-label {
margin-left: 130px !important;
margin-top: -21px !important;
}
]]>The expected behaviour would be that the Radio button Label is used, in the same manner that it would be with email notifications.
]]>I am currently using the Formidable Forms and have connected it to E2PDF then I uploaded my own PDF template and I have mapped all the fields. Now, I have checkboxes each have multiple options.
Say for example I have checkbox for “Favorite fruits”
[] Apple
[] Orange
[ ] Grapes
[] Mango
[ ] Melon
[] Coconut
Is it possible to display the checkboxes in E2PDF that are CHECKED into new lines for each options? Like this:
Apple
Orange
Mango
Coconut
Currently, what’s happening is that they are displayed INLINE, like a normal sentence separated by comma. Like this:
Apple, Orange, Mango, Coconut
I want it to display NEW LINE for each options that are CHECKED. Is there a way to achieve this?
I hope you can help me with that.. Please help!
Thank you!