msantamaria
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Lister Lite for eBay] Create new custom shortcode in templateHi @mari0bros,
Yes that is possible.
Please see documentation here – https://www.wplab.com/plugins/wp-lister/api/#wplister_process_template_html
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Location Settings Box: coutries list is emptyHi @stileinverso,
Here is the feature comparison between the lite and Pro version of the plugin: WP-Lister for eBay β Feature Comparison
The Import from eBay to WooCommerce plugin is a different plugin from WP-Lister. You can read about it more here: Importer Add-On
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Location Settings Box: coutries list is emptyHi @stileinverso,
Please try this – click the “Refresh details” link on the accounts page of WP-Lister’s settings then check again.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Error 715 and delete prepared itemHi @msyahrizan,
Regarding this:
βError: Invalid value provided for weight minor. (#715)
Invalid <WeightMinor>. Enter a value between 0 and 15 for <WeightMinor>.βFirst, please check and make sure that you are using the same weight dimensions in WooCommerce as required by the eBay site you want to list to. WP-Lister can’t convert weight dimensions for you.
So for example if you’re using ebay.com (US) which requires inches and pounds, you’ll have to use the same units -inches and pounds – in WooCommerce as well.
WP-Lister is well aware of the different handling of ounces vs grams (the conversion of a single decimal value to the major / minor format eBay requires), but it can’t do so if you have set up the wrong unit in WooCommerce.
What units are you using in WooCommerce, which eBay site are you trying to list this item to, and what weight did you set in the edit product page?
Regarding this:
How to delete item in Listing pages that still under Prepared?
You can please put a check mark on the item you want to delete on the Bulk Action dropdown menu then choose “Move to Archive” then hit “Apply”
Also, if you’re a Pro version user, you can please send us support ticket here – https://www.wplab.com/request-support/ for faster response. Thank you.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Return Policy WarningsHi @modtronix,
I’m happy to hear the issue is now resolved!
Thank you for sharing with us how you fixed it.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Return Policy WarningsHi @modtronix,
A couple other users have received this message recently.
We had never heard of this before and never seen it either. We did some research on this but could find absolutely nothing on it. That error #21920200 doesn’t even show in eBay’s error code API page.
With that said, recently we received an email from eBay notifying us that they will be removing the 14 day return option so it sounds like an option you set in the return policy or in WP-Lister’s shipping settings (wherever you setup your return options), is not valid. I would try disabling options one by one and refreshing your account details in WP-Lister’s “Accounts” page then revising until you find which setting causes this message to clear. Or call eBay seller support and ask them to look into your return policy you are using and locate which attribute is not valid.
It is only a warning which means the “return policy attribute” and description they are speaking of will simply be ignored and you will still be allowed to list.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for Amazon] Amazon Quantity not linkingHi @karenlg,
Please check your inbox.
We already replied to you regarding the same question. π
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Compatible with the latest version of WooCommerce?Hi @karyyyn,
Yes, WP-Lister is compatible with the latest version of WooCommerce.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for Amazon] Amazon India supportHi @nishitmorakhia,
I’m sorry but we do not support Amazon India as of the moment.
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Turn off image auto updateHi @bdtq,
You’re welcome! π
We can help you make the code work but I’d recommend you to please send us support ticket here – https://www.wplab.com/request-support/ and we can continue to resolve it there.
Kind regards,
Menchie
WP LabForum: Plugins
In reply to: [WP-Lister Lite for eBay] Image GalleryHi @karenlg,
You can enable the Upload to EPS option on your listing Profile.
You can also find the documentation here – Uploading product images to EPS
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Turn off image auto updateHi @bdtq,
This code should fix that up:
// Customize the eBay price add_filter( 'wplister_filter_listing_item', 'wple_custom_ebay_price', 10, 4 ); function wple_custom_ebay_price( $item, $listing, $profile, $post_id ) { $product = wc_get_product( $post_id ); $custom_price = $product->get_price() * 10 + 5; // Set custom start price $item->StartPrice = new AmountType(); $item->StartPrice->setTypeValue( ItemBuilderModel::dbSafeFloatval( $custom_price ) ); $item->StartPrice->setTypeAttribute('currencyID', $profile['currency'] ); return $item; }Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Turn off image auto updateHi @bdtq
Please try this code:
// Customize the eBay price add_filter( 'wplister_filter_listing_item', 'wple_custom_ebay_price', 10, 4 ); function wple_custom_ebay_price( $item, $listing, $profile, $post_id ) { $product = wc_get_product( $post_id ); $custom_price = $product->get_price() * 10 + 5; // Set custom start price $item->StartPrice = new AmountType(); $item->StartPrice->setTypeValue( self::dbSafeFloatval( $custom_price ) ); $item->StartPrice->setTypeAttribute('currencyID', $profile['currency'] ); return $item; }Then just please set your formula.
Kind regards,
Menchie
WP Lab Support- This reply was modified 8 years ago by msantamaria.
Forum: Reviews
In reply to: [WP-Lister Lite for eBay] Really Amazing Plugin!Hi @aminech,
Youβre welcome! Iβm happy to hear you liked our plugin!
Here are the features you will enjoy when you switch to Pro version: WP-Lister for eBay β Feature Comparison
Kind regards,
Menchie
WP Lab SupportForum: Plugins
In reply to: [WP-Lister Lite for eBay] Link for eBay to WooCommerceHi @karenlg,
You may use the Clean Import mode if you want to remove all previously imported products and run a new full import.
This is also explained here: https://www.wplab.com/plugins/import-from-ebay-to-woocommerce/documentation/import-settings/#Import_mode
Kind regards,
Menchie
WP Lab Support