alexisacseo
Forum Replies Created
-
Forum: Plugins
In reply to: [ShopWP] multiple variantHi Andrew,
I display my product with the HTML template : https://docs.wpshop.io/guides/html-templates.
<?php $Products->products( apply_filters('shopwp_products_all_args', $products_args) ); ?>
Thanks
Forum: Plugins
In reply to: [ShopWP] Overiding attibute valuesthanks for your feedback, i have found the best way in the same time of your answer ??
Forum: Plugins
In reply to: [ShopWP] Overiding attibute valuesProblem resolved with the filter : shopwp_cart_default_payload_settings
add_filter('shopwp_cart_default_payload_settings', function($cart_settings) { $cart_settings['cart_title'] = "my title" $cart_settings['subtotal_label_text'] = "my total"; return $cart_settings; });
Forum: Plugins
In reply to: [ShopWP] product are not longer save in databasePerfect for my needs !
thanks a lotForum: Plugins
In reply to: [ShopWP] product are not longer save in databaseHi Andrew,
Thanks for your feedback.
Just getting the collections_ids associated at one product, can be very great and helpfullWith that i will able to retrieve products associated at the collection(s) with the function “get_products_by_collection_ids”
If you have an idea for that i would be very great
Forum: Plugins
In reply to: [ShopWP] product are not longer save in databaseHi For example,
I go to the detail product page of a product an apple for example. Who is associated at the “fruits” collection.
In the same page i want to display the fruits collection ordered in best selling fruits, to display a “cross sell”
If i go to the detail page of the product sweatshirt, associated at the collection clothes, i want to display the collection clothes.
Do you know want i mean, when i say, i did’nt know in advance the name of the collection i would like to display. It’s depend of the main product of my page.Forum: Plugins
In reply to: [ShopWP] product are not longer save in databaseHi,
Yes the functions can help me but don’t respond of all my criteria.
For exemple i will display all products in the same collection of one product.
The function get_product, don’t display the collection information then i didn’t know the collection id :/
Do you have an idea for that ?Thanks
Forum: Plugins
In reply to: [ShopWP] ShopWP Pro, changing currencyYou can try this in your function.php :
add_filter('shopwp_currency_symbol', function($defaultSymbol) { return '€'; }); add_filter('shopwp_currency_code', function($defaultCode) { return 'EUR'; });
Forum: Plugins
In reply to: [ShopWP] Javascript error when loading cartProblem is resolved after upgrading from 4.0.17 to 4.1.0
Forum: Plugins
In reply to: [ShopWP] Javascript error when loading cartHi andrew,
thank for your feedback, but in my progress development for confidential reasons, and secure access i can’t send you a page.
I understand that can be difficult to debugging without that. if is that possible, can we talk about that in private messages ?
I have try to delete all sync data / clear cache / disconnect / reconnect / clear cache on pantheon environment, but the error persist.
My version of private app on shopify webhooks is on 2022-01
Forum: Plugins
In reply to: [ShopWP] Redirect to wp after payement on shopifyFinally i found the solution with the documentation : https://docs.wpshop.io/guides/add-back-to-site-link
Forum: Plugins
In reply to: [ShopWP] Quantity field is not translateHi Andrew, yes, locale is currently set in fr_FR.
In fact there are just some wording that not be translate.
“Panier”, “ajouter au panier”, “sous total” are translate, but “quantity”, “your cart is empty”, “size and color”, “are not translate”. It’s strange no ?Forum: Plugins
In reply to: [ShopWP] placeholder.pngPerfect.
Thank a lotForum: Plugins
In reply to: [ShopWP] placeholder.pngThanks Andrew for your quickly feedback.
It work perfectly.
This filter is not in documentation, there is a way to have all available filters ?