Trey
Forum Replies Created
-
Hi @ricsca2,
Is there a way to update the products not imported with the plugin?
You can use an “Existing Items” import to do that. You’ll find info on that import type on this page: https://www.wpallimport.com/documentation/import-types/.
Also where can I see the differences between the free version and the pro version of the plugin?
You can find some of them on the free plugin page: https://www.ads-software.com/plugins/woocommerce-xml-csv-product-import/, but if you have any other questions about the pro version, you’ll need to contact the support team at https://www.wpallimport.com/support/. I can only answer questions about the free plugin on this forum.
Hey @ricsca2,
The field I enter in “GTIN, UPC, EAN or ISBN” is not imported.
Can you please double check the data that you’re importing into that field and make sure it only contains numbers and hyphens? Any other data would not import there.
Forum: Plugins
In reply to: [Import Products from any XML, CSV or Excel to WooCommerce] foreach loopHey @mariakos,
You can use the XPath inside the FOREACH loop for this:
{crosssales/crosssale}
Since the index is removed (the [1] in the XPath), WP All Import will loop through all instances of “crosssale” and output a comma-delimited list of them.
Also, for future reference, you can test the output of FOREACH loops and XPaths by placing them in the Content section of the import and clicking the “Preview” button.
Forum: Plugins
In reply to: [Publish and Add New Post] Notice: Undefined index: aan in …My apologies for missing this Gustavo. Are you still getting this error? I tested on my own site and I’m not seeing it. Let me know the steps you take to get the error so I can re-create it. Thanks very much and sorry again for such a late reply.
Forum: Hacks
In reply to: shortcode on all blog postsOn line 6 of that pastebin:
$included_cats = array( 0, 2, 10 );
Replace the numbers with the category id’s you want the shortcode to show up on.
$included_cats = array( 3, 4, 5 );
That would work for 3 4 and 5. Say you wanted to add more you could do:
$included_cats = array( 3, 4, 5, 10, 11 );
And so on.
Forum: Hacks
In reply to: shortcode on all blog postsHey atok I just put this together real quick so there’s probably a better way to do it, but for now this should work for you. In the “$included_cats” array you’d put the category id’s that you want to have the shortcode show up on.