cegasol
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Change subscription Products Redirects to empty /cartHi @mosesmedh thanks for the information, I think it is a woocommerce issue, because, what other way a user can select another product? and why is always redirecting to the cart after another product y selected (intuitive process for product change for clients)? the cart gets empty and don’t know why. I will look on what you send. Thanks
Hi, please use this link to test the checkout page use this link: . I have already tried the steps, and the issue remains. Thanks
Hi,
but when I make a push again the images converted will be lost. ?
Forum: Plugins
In reply to: [WooCommerce] Change URL in Password Reset EmailHi, I haven′t found a solution, I’m stuck in a redirect loop from the email reset password url y get redirected to the reset-password page again.
I already tried these solutions:
https://www.mail-mechanic.com/password-reset-fixes#caching
https://www.webnots.com/how-to-make-woocommerce-work-with-w3-total-cache/
https://www.ads-software.com/support/topic/custom-reset-password-page-2/
Some forums mentions the wp-restpass cookie, how can be set?
Forum: Plugins
In reply to: [WooCommerce] Change URL in Password Reset EmailAnd sometimes I’m getting the 403 forbidden error, I checked the .htaccess files and didn’t see any ‘deny’ rule, and checked for plugins conflicts.
Forum: Plugins
In reply to: [WooCommerce] MAKE TEMPLATE CHANGES UPDATE PROOFThe same applies to changes in the woocoomerce /includes/shortcode files?
Thanks!
Thanks! Again,
The question could be more like this.
I have several dropdowns fields #8, #10 # 12, and others (see image), that have common options (red rectangle) but different values each.
If i’m setting a custom hide and show, How can I do to instead of put each value, in example: field 10 ==520, put the text ‘5 to 6 Weeks’
I already tried fieldname10 === ‘5 to 6 Weeks’
This is how the code is working.
if ( AND(fieldname48 === 'Yes', fieldname10 == 520, fieldname49 > 6 )) { ACTIVATEFIELD(62); }
Hi, Thanks for the response,
How can I implement on a fieldname that is checklist with several values, no matter what values are, how can I set the “selected” condition for that kind of field?
Thanks! again
Well, to each form y added a CSS Rules:
`/* Title font color */
#fbuilder .fform h2 {
font-family: ‘Roboto’, sans-serif;
font-weight : bold !important;
color: white !important;}/* Header Background color*/
.essay_calculator #fbuilder .fform {background: #8020ff !important;}And in the short code I added a class name to each form i.e
[CP_CALCULATED_FIELDS id=”7″ class= “essay_calculator”] , some settings are general to all but the header font color It’s different form some of the forms.
Thanks! It works!!!!
Now just one more thing the colors for each form change to gray they are of different colors.
Forum: Plugins
In reply to: [Calculated Fields Form] Hide and Show Fields on CFF formThanks! I solved adding specifics If conditions inside the extra calculated field.
Again: Thanks!!!!
Forum: Plugins
In reply to: [Calculated Fields Form] Hide and Show Fields on CFF formThanks for the response.
I used dependencies, but I need to do it manual for this : When my slider reach 60 I want the total fields Hide and Show a ‘Contac Us’ message.
Now using this in a different calculated field:
(function () { if (fieldname3 == 60) { jQuery('.total_double').hide(); jQuery('.total_single').hide(); jQuery('.total').hide(); jQuery('.contact_us').show(); return 0; } else { jQuery('.contact_us').hide(); } })();
after my slider reach 60 when I go backwards the respectives total fields don’t show up
Thanks for the response:
Here you can see the difference between Elementor Editor and Live,
In this form in special “Essay Service Pricing Calculator” I add a purple color, and remove the bold aspect with these are the block styles:
/* Heading Color */ #fbuilder .fform h2 { font-family: 'Roboto', sans-serif; color: white !important;} /* Heading Description Color */ #fbuilder .fform span{ font-family: 'Roboto', sans-serif; color: white; } /*Heading background*/ #fbuilder .fform {background: #8020ff !important;} /*fieldname11 label format*/ #fbuilder .custom-class-name11 label { font-size: 16px; } /*slider font format*/ #fbuilder .slider-class { /*font-weight : bold;*/ font-size: 16px; } /*radio button format*/ #fbuilder .radio-button-class{ font-size:16px; } /* Error Fields - Attention*/ #fbuilder .error_message { font-size:20px; color: red !important; } /* Total*/ #fbuilder .total { font-weight: bold; font-size: 20px !important;} /* Input */ #fbuilder .cff-calculated-field input{ font-weight: bold; font-size: 30px !important;}