Gauravbhai Daxini
Forum Replies Created
-
Forum: Plugins
In reply to: [Vipps/MobilePay recurring payments for WooCommerce] 503 service unavailableHi,
I have debug and found below as showing in screenshot. can you help in this.
https://tinyurl.com/2cl6ewuy
Fatal error: Uncaught Error: Call to undefined function wcs_cart_contains_switches()
Thanks.Forum: Plugins
In reply to: [WC Fields Factory] Translation is not working in checkout fieldsHere i found the solution:
/wc-fields-factory/includes/wcff_checkout_fields.php/* To render custom checkout field */ public function wcccf_custom_checkout_fields(){ $checkout_custom_meta = $this->get_fields_meta( 'custom-fields' ); $checkout_custom_fields = array(); foreach( $checkout_custom_meta as $name => $val ){ $checkout_custom_fields[$name] = json_decode( $val[0], true ); } foreach ($checkout_custom_fields as $key => $field) { $is_enable = isset($field["is_enable"]) ? $field["is_enable"] : true; if (is_array($field) && isset($field["key"]) && $this->check_login_user($field) && $is_enable) { $wccpf_options = wcff()->option->get_options(); $multilingual = isset($wccpf_options["enable_multilingual"]) ? $wccpf_options["enable_multilingual"] : "no"; if ($multilingual == "yes") { /* Localize field */ $field = wcff ()->locale->localize_field ( $field ); } $field["name"] = $field["key"]; $field["required"] = isset( $field["required"] ) && $field["required"] == "yes" ? true : false; $field["cloneable"] = "no"; $field["for_front_end"] = true; echo wcff()->builder->build_user_field( $field, "wcccf", true ); } } }
/wc-fields-factory/includes/wcff_locale.php
public function localize_field($_field) { /* Determine the current locale */ $locale = $this->detrmine_current_locale(); /* Well start the translation */ $wcff_options = wcff()->option->get_options(); $default_locale = isset($wcff_options["default_locale"]) ? $wcff_options["default_locale"] : "en"; if($locale != $default_locale) { if(isset($_field["locale"]) && isset($_field["locale"][$locale])) { $resources = $_field["locale"][$locale]; if($resources) { foreach ($_field as $key => $value) { if($key != "locale") { if(isset($resources[$key]) && $resources[$key] != "") { $_field[$key] = $resources[$key]; } } } } /* Remove locale property from the $_field argument * as it is no longer needed */ //unset($_field["locale"]); } } return $_field; }
I hope this code useful to this community and Plugin auther will fix in next release version.
Thanks.Forum: Themes and Templates
In reply to: [Neve] Cant Customise NeveHi @sigmabranding ,
You need to add below line where you have enable debug mode in wp-config file.
if 128M is still less memory then you can increase memory.define('WP_MEMORY_LIMIT', '128M');
Forum: Themes and Templates
In reply to: [Neve] Cant Customise NeveEdit your wp-config.php file and add below line and change value according to your current memory size.
define('WP_MEMORY_LIMIT', '128M');
You can see other option from your hosting option to increase memory in PHP configuration like php.ini etc..
Forum: Themes and Templates
In reply to: [Neve] List bottom padding issuehi @gkfinfo ,
If you can add class in block like below screenshot url then it will solve your issue. you need to add nv-content-wrap class in order to take css of space in list.
Forum: Themes and Templates
In reply to: [Neve] Cant Customise NeveHi @sigmabranding ,
In order to know about error, you need to enable wp_debug mode from wp-config.php file from root of WordPress. you can provide that here also if you can not able to solve those error.
- This reply was modified 2 years, 9 months ago by Gauravbhai Daxini.
Forum: Plugins
In reply to: [Contact Form 7] numer fieldHi @josede ,
Please check answer from here
Forum: Plugins
In reply to: [Contact Form 7] Mixed content http/https failureHi @mahipatsinh ,
I do not have access to your site but if you can see this code there is cache is enable for your feed. can you disable and try again.
<script type='text/javascript' id='contact-form-7-js-extra'> /* <![CDATA[ */ var wpcf7 = {"api":{"root":"https:\/\/ecostruxureit.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":"1"}; /* ]]> */ </script>
Forum: Plugins
In reply to: [Contact Form 7] Ensure all values are used in a formHello @timhuk ,
Please check below code of jQuery. it will remove option which are used in previous questions. after select all answer if user want to change answer then he has to reload page. Let me know this solution is for you are looking. Thanks.$('.wpcf7-select').change(function(){ var selectValues = []; var curreselect = $(this); $('.wpcf7-select').each(function(){ if($(this).val()){ selectValues.push($(this).val()); } }); if(selectValues){ for (index = 0; index < selectValues.length; index++) { $('.wpcf7-select').not(curreselect).each(function(){ if($(this).val()!=selectValues[index]){ $(this).find('option[value="'+selectValues[index]+'"]').remove(); } }); } } });
Forum: Plugins
In reply to: [Classic Editor] WordPress multisiteHello @tuomonurkkala ,
Yes, We can use this plugin in multisite with woocommerce.
Hello @canerenguc ,
Can you able to provide screenshot of your issue so i can check and help you in this.
Thanks
Hello @ricardofrdrc,
Can you provide more details like Theme and plugin versions and screenshot of your error. So it can be more helpful to check your issue.
Thanks.
Forum: Reviews
In reply to: [Gutenberg] Not user friendly and bugsHi,
First if you see and compare review and active installation of two plugin
– Gutenberg
– https://www.ads-software.com/plugins/classic-editor/Then you will get idea about this plugin. Main thing it should not come in default WordPress version. you can just recommend to use. because very less community who it is liking and using.
If you want to see quality of builder then you can compare with Elementor,Divi,Avada,Visual composer etc.
Well this plugin is lightweight right now. but this concept will be false after some years because right now this plugin is in development process and early stage. after number of release it will be full rich feature it will be also heavy.
Thanks.
@lukascech it will apply everywhere in site for class ‘elementor-hidden-phone’ so you can apply like this:
.elementor-background-video-container.elementor-hidden-phone { display: block !important; }