sunitasinghdev
Forum Replies Created
-
Hello Team, No response from your side
Forum: Plugins
In reply to: [Strong Testimonials] auto scrolling and navigation not workingHey team,
No reply from last 3 days. Please tell me solution, where is the issue.
Forum: Plugins
In reply to: [WooCommerce] Removing Terms & Conditions Checkbox for a specific productI tried all hook functions for terms and conditions, still not working
add_action('woocommerce_checkout_init', 'disable_checkout_terms_and_conditions', 10 );function disable_checkout_terms_and_conditions(){ // Product ID to hide fields for $target_product_id = 9918; // Replace with the actual product ID // Get available payment gateways foreach( WC()->cart->get_cart() as $cart_item ) { if( $cart_item['data']->get_id() == $target_product_id ) { remove_action( 'woocommerce_checkout_terms_and_conditions', 'wc_checkout_privacy_policy_text', 20 ); remove_action( 'woocommerce_checkout_terms_and_conditions', 'wc_terms_and_conditions_page_content', 30 ); remove_action( 'woocommerce_checkout_terms_and_conditions', 'woocontracts_terms_fields' ); // <== missing priority remove_action( 'woocommerce_checkout_after_terms_and_conditions', 'woocontracts_checkout_additional_checkboxes', 10 ); }}}
Any other options
Forum: Plugins
In reply to: [WooCommerce] Removing Terms & Conditions Checkbox for a specific productadd_action('wp_footer', 'hide_payment_section_for_product');function hide_terms_and_conditions_section_for_product() { // Replace '123' with the actual product ID for which you want to hide the payment section $product_id = 9918; // Check if the current product ID matches the specified product if (is_product() && get_the_ID() == $product_id) { echo '<style>.woocommerce-terms-and-conditions-wrapper { display:none !important; }</style>'; }}add_action('wp_footer', 'hide_terms_and_conditions_section_for_product');
I am trying this code in footer.php. it works for all product. It is not working for a specific product. So suggest me where i am wrong
no one is response from last three days. Help me
Already filled form for technical support. But no reply.
Forum: Plugins
In reply to: [StageShow] Indian Rupees not showing in Currency listanyone help about this??
Forum: Plugins
In reply to: [E2Pdf - Export Pdf Tool for WordPress] Hidden Field Not Show in PdfOkay got it. Thank you @oleksandrz for quick response.
Forum: Plugins
In reply to: [User Post Gallery - UPG] post image and ajax page not working@odude pls check mail. I have already sent link and info to your mail. Pls help me find out for the solution.
Forum: Plugins
In reply to: [User Post Gallery - UPG] post image and ajax page not workingHey , after submit in console a message is showing that
” Form contains a file input, but is missing method=POST and enctype=multipart/form-data on the form. The file will not be sent.”
is there any solutions for this
Forum: Plugins
In reply to: [User Post Gallery - UPG] post image and ajax page not workingI am using it in user profile edit section. There is no error. Its submitted with no value saved.
Till now its not solved. Anyone and support member can help me.
I am waiting for 2 days. Till now no response from support member . Any one help me of above issue.?
@champsupertramp i am already share my url which one you need.https://www.blooddonorsinfo.org/?filter_district_03e60=Central%20Delhi||Balangir&filter_state_03e60=DL||OD&filter_blood_group_03e60=A%2B
https://www.blooddonorsinfo.org/?filter_blood_group_03e60=A%2B||O%2B&filter_district_03e60=Central%20Delhi||Balangir&filter_state_03e60=DL||OD
@champsupertramp this is my generated url
https://www.blooddonorsinfo.org/?filter_state_03e60=DL&filter_blood_group_03e60=A%2BBut here on issue , my district filter shows me “No Result Found” , thats why i am unable to add filter parameter on above url (my district filter not added). Here state is parent callback function and district is child callback function.
You can check on homapage of https://www.blooddonorsinfo.org on search donor.
So tell me how to solve my two issues.
1) child callback function dropdown not working in search filter.
2) How to redirect to another page after submit filter search.I need it help urgently.
@champsupertramp But one issue in member directory search filter field,
callback function works perfectly in the registration screen and profile page (pulled from the user data). However, I still find that on profile edit page aswell.But while i use “Choose filter(s) meta to enable” in “member directories” with “Add new custom fields” the parent function values pulled but the child value is with no values (“No results found”).