brandsforless
Forum Replies Created
-
Thanks for your response.
I was thinking to ignore it.
But maybe i turn off the search event finally.Thanks
Hello,
the “Post Status” option is disabled in import settings.
I replicate the issue in a sandbox site.
I also send an email.
ThanksHello,
thank you for your quick response.
As i am not a developer can you suggest me an authorised developer to write this php function for me?Thanks in advance.
Hello again,
let me do this more simple.
I want to export all my parents products in xml file. Every product imported with variation prices but the parent price is empty.
Can i export parent products with price as the variations(red numbers). Note that all variations prices are the same.
I use the following for importing my products.
From General tab
From Variation tab with xpath
And this is my xml export preview of a product. No prices(regular or sale)Thank you in advance
- This reply was modified 4 years, 6 months ago by brandsforless.
Hello to all,
i finally solve the issue with a brand new build of import using XPath. I have never used before XPath and i am sure now that is awesome.
BUT
My products with variation are uploaded fine. I realise that in my parent product the prices are not imported, they are imported only in variations(screen1).
As i need to export the products for product data feeds, i want to export in some cases only the parent product with all datas included and prices and in some other cases(like facebook feeds) only the variations again with all datas included and prices. Of course as my variations have the same price as the parent product, finally the parent price must pass and in variations(screen1-red prices).
Is this possible?
I use the following setting in WooCommerce Add-On settings(screen2)
and for variations in XPath the following settings(screen3)
I will be very gratefull for your help.
Thank you
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] XML feed mappingHi,
everything works fine. I am very excited about your fast and reliable halp.
Keep going.
Thank youForum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] XML feed mappingThank you again for your response.
Actually i do not like the idea to use another plugin. I prefer to have one function.php file from your Function Editor.
As you realize i am not a developer and run my e-commerce site alone.
For sure i need to add a code for make the different function for each import.
I think it need to add an add_filter command or something like this.
Can you please suggest something to me for the following function?
<?php
function my_translate_data( $data ) {
$map = array(
‘Lenght’ => ‘Μ?κο?’,
‘Total’ => ”,
‘Size’ => ‘Μ?γεθο?’,
‘Hips’ => ‘Γοφο?’,
‘Width’ => ”,
‘Chest’ => ‘Μπο?στο’,
‘Bust’ => ‘Μπο?στο’,
‘Waist’ => ‘Μ?ση’,
‘Under’ => ‘Κ?τω απ? ‘,
‘Bottom’ => ‘Κ?τω σ?νολο ‘,
);
}
?>
return str_ireplace( array_keys( $map ), $map, $data );
Don’t care of course for the Greeks translations.And again excuse me to be so efortic to you.
Thank you.
Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] XML feed mappingHello,
everything works like charms now.
My function.php is ok.
One more question please.
Can i use seperate functions file for each import?
My only one function.php is the same for all my imports. But in some imports i have to translate one word different way for each one.
For example shirt translation is right for women tops but is not right for swimsuits and for tankini shist product.
It will be very usefull to use different function.php for each import.
ThanksForum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] XML feed mappingThank you for your quick response.
I do many trials with the field Post Slug with no effort.
My item product in the xml feed is like this:<product id=”107541″>
<name>Skirt model 107541 IVON</name>
<brand>IVON</brand>
<category_path>/WOMEN/Women`s Clothing/Skirts</category_path>
<category id=”125″>Skirts</category>
<color>black</color>
<type>Skirt</type>
<images></images>
<price>23.9</price>
<description></description>
<options>
<option id=”M668398″>
<option_name>36</option_name>
<STOCK>5</STOCK>
<avaible_in>7</avaible_in>
</option>
<option id=”M668399″></option>
<option id=”M668400″></option>
<option id=”M668401″></option>
<option id=”M668402″></option>
</options>
</product>What input i have to use in Post Slug for the <name> field during the import process to be translated in Greece but the permalink keep in English?
Thank you
Forum: Plugins
In reply to: [WooCommerce] woocommerce product attributes pagination problemHello
how you fix the problem for the pagination working?Forum: Plugins
In reply to: [Import any XML, CSV or Excel File to WordPress] Title MappingI write the function, save it to import at php function area and re-run the import again.
Nothing change at all.
I am sure that something i do wrong.
My php function is thisfunction my_translate_data( $data ) {
$map = array(
‘Shorts model’ => ‘Σορτσ?κι’,
‘~Spodnie pi?amowe’ => ‘Παντελ?νι φ?ρμα?’,
‘Blouse model’ => ‘Μπλο?ζα’,
‘Short skirt model’ => ‘Φο?στα mini’,
‘Skirt model’ => ‘Φο?στα’,
‘Singlet model’ => ‘Μπλουζ?κι’,
‘Short dress model’ => ‘Φ?ρεμα mini’,
‘Evening dress model’ => ‘Φ?ρεμα βραδυν?’,
‘Top model’ => ‘Μπλουζ?κι’,
‘Leggins model’ => ‘Κολ?ν’,
‘Daydress model’ => ‘Φ?ρεμα καθημεριν?’,
‘Long sleeve shirtmodel ‘ => ‘Πουκ?μισο’,
‘Short sleeve shirt model’=> ‘Πουκ?μισο’,
‘Cocktail dress model’ => ‘Φ?ρεμα cocktail’,
‘Trousers model’ => ‘Παντελ?νι’,
‘Long leggings model’ => ‘Κολ?ν’,
‘Long dress model’ => ‘Φ?ρεμα maxi’,
‘Suit model’ => ‘Φ?ρμα ολ?σωμη’,
‘Jacket model’ => ‘Ζακ?τα’
);
return ( array_key_exists( $data, $map ) ) ? $map[ $data ] : $data;
}Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Additional ImagesIt works.
Thank you for an excellent support again.Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Additional ImagesUPDATE
it will be also acceptable for my affiliate partner the wp all export retrive only the first link image instead of the whole images.
So the tag should be like this
<ImageURL>{Image URL}</ImageURL> include only the first image of the feed.Thank you again in advance.
- This reply was modified 6 years, 2 months ago by brandsforless.
Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Size Attribute for Parents ProductsBingo!!!!!!!!!
It works nice
Many many thanksForum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Size Attribute for Parents ProductsThank you
I will give it a try soon.