shoaib fareed
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Product After Filter Loading WrongWhat Integration it requires? the behavior should be , it have to filter the products on the bases of current filter, otherwise how the users will see more products related to one attribute filter? as it start showing the other products after first page,
Is there any process for this to make it work?
Thanks!
I have checked and found these Scripts are coming from the strip plugin directly that are forcing to validate the fields on checkout, but i dont have those fields there.
can you please look further: https://prnt.sc/107b09o
Forum: Plugins
In reply to: [Germanized for WooCommerce] Billing Address Validation issueBilling Address With Buyer Paypal or Merchant?
The Multi Step Is From The “Germanized” Plugin So yes it is somehow working fine When Disabled this plugin as well,
Now Two Cases:
1- Germanized enabled and Stripe Disabled Checkout working fine
2- Stripe Enabled and Germanized Disabled Checkout is working fine.So both the plugin somehow having issues with each other?
Here is the Plugin i have used: https://www.ads-software.com/plugins/woocommerce-gateway-paypal-express-checkout/
Have you checked the Video Screenshot? I have tested it with and without your plugin, With plugin it is not working as soon i disabled the plugin it working fine!
Here is the video Screenshot : https://www.screencast.com/t/LlJccP9RUODT
And this is the website: https://clevervital-dev.projekte-web.com/
Yes i have the Dev instnace!
Thanks for the response, Sure , we already in contact with the support now!
Not working for me as well for my products, I have installed the plugin and put all the values in the field of SEO Title, SEO Description and Focus Key Word but nothing is showing up. or importing still showing the default Product Title.
Actually the menu order attribute is assigned to the parent products, when you hide the parent product from catalog page and only showing the Variations now “Menu Order” attribute don’t have scope here, and thats why it cant filter the products anymore,
What you can do is:
1- Create a custom filed for Variations and added the order there for each variation.
2- Create a custom Filter option for catalog and make it default.Create Custom Field for Variation like follows:
add_action( 'woocommerce_product_after_variable_attributes', 'variation_settings_fields', 10, 3 ); add_action( 'woocommerce_save_product_variation', 'save_variation_settings_fields', 10, 2 ); add_filter( 'woocommerce_available_variation', 'load_variation_settings_fields' ); function variation_settings_fields( $loop, $variation_data, $variation ) { woocommerce_wp_text_input( array( 'id' => "variation_order{$loop}", 'name' => "variation_order[{$loop}]", 'value' => get_post_meta( $variation->ID, 'variation_order', true ), 'label' => __( 'Variation Order', 'woocommerce' ), 'desc_tip' => true, 'description' => __( 'Add Customer Order', 'woocommerce' ), 'wrapper_class' => 'form-row form-row-full', ) ); } function save_variation_settings_fields( $variation_id, $loop ) { $text_field = $_POST['variation_order'][ $loop ]; if ( ! empty( $text_field ) ) { update_post_meta( $variation_id, 'variation_order', esc_attr( $text_field )); } } function load_variation_settings_fields( $variation ) { $variation['variation_order'] = get_post_meta( $variation[ 'variation_id' ], 'variation_order', true ); return $variation; }
Add Custom Filter option
add_filter( 'woocommerce_catalog_orderby', 'aj_add_custom_sorting_options' ); function aj_add_custom_sorting_options( $options ){ $options['variation_order'] = __( 'Popularity', 'porto') ; return $options; }
Showing result with filter selection
add_filter('woocommerce_get_catalog_ordering_args', 'am_woocommerce_catalog_orderby'); function am_woocommerce_catalog_orderby( $args ) { if ( isset( $_GET['orderby'] ) && 'variation_order' === $_GET['orderby'] ) { $args['meta_key'] = 'variation_order'; $args['orderby'] = 'meta_value_num'; $args['order'] = 'asc'; } return $args; }
Hope that helps you.
- This reply was modified 4 years, 3 months ago by shoaib fareed.
- This reply was modified 4 years, 3 months ago by shoaib fareed.
problem is solved issue was due to old version of WC – Germanized and some other Plugins installed, after update now everything is working fine!
Here is the demo link for my import file and setting:
https://wai-qctxw42d3x4bl.wpallimport-demo.qsandbox.me/wp-admin/index.phpHere is the demo link i have for my file and import setting:
https://wai-qctxw42d3x4bl.wpallimport-demo.qsandbox.me/wp-admin/index.php- This reply was modified 4 years, 4 months ago by shoaib fareed.