Merci
]]>I ran the exporter by only selecting the attributes and changing products to 100.
The exporter produced a blank csv file both times I ran it.
Am I doing something wrong?
]]>Thank you Stefano Lissa for this usefull plugin.
There is an option to export data?
Thank you in advance for your reply,
]]>Thanks!
]]>// Display Fields
add_action('woocommerce_product_options_general_product_data', 'woocommerce_product_custom_fields');
// Save Fields
add_action('woocommerce_process_product_meta', 'woocommerce_product_custom_fields_save');
function woocommerce_product_custom_fields()
{
global $woocommerce, $post;
echo '<div class="product_custom_field">';
// Field function
woocommerce_wp_text_input(
array(
'id' => '_custom_image_name',
'placeholder' => 'Image file name (ex. name.png)',
'label' => __('Image file', 'woocommerce'),
'desc_tip' => 'true'
)
);
echo '</div>';
}
function woocommerce_product_custom_fields_save($post_id)
{
// Save function
$woocommerce_custom_image_name = $_POST['_custom_image_name'];
if (!empty($woocommerce_custom_image_name))
update_post_meta($post_id, '_custom_image_name', esc_attr($woocommerce_custom_image_name));
}
As the code above provides a meta key with name _custom_image_name, once I populate it in product page, I add the meta field and do a test order. In the plugin, I add the meta key and do a test export and the result provides the meta key column empty. Could anyone please help with this? I tried getting it to work in the last 3 weeks without any luck.
]]>I might be overlooking the obvious, but is there a way to backup and restore ALM settings via a JSON file or something similar? Or is that a premium feature? I’d like to be able to have it configured as intended with (ideally) a one-click operation.
Thanks for your help!
Jason
]]>So with the latest version I was really excited to see a settings exporter, which will allow me to include a file with the theme for demo setup, but it’s not working properly for me. I can successfully generate the JSON file, which when opened in my editor has the correct options saved in it, yet when I import that file back into the plugin, whether on a brand new WordPress install or the one the settings were exported from, it also toggles a bunch of other checkboxes that weren’t part of the JSON dump.
Any help with this is really greatly appreciated, and if you need any more specifics for troubleshooting, just ask.
Thanks!
Jason
]]>Or should I be using a simple embed code for that? I don’t want full posts though, only titles, images, and maybe a 50 word exert, and I want to control how many items from the RSS feed get displayed, such as 5 posts for example.
In other words, I want to syndicate my own wordpress blog to a static html page I have access to elsewhere so people there can see what I am writing on my blog.
]]>I installed an ebay plugin several months ago that created about 30 meta columns in my products when exported with the built-in csv file. I fully deleted the plugin together with any tables in the phpMyAdmin but the columns are still there, and now I can’t export my csv file – it just freezes and I assume this is because I have too many meta columns that I can’t delete. Could you please tell me how I can control which meta columns are exported and ideally delete the ones that I don’t use anymore, as the exporter just seems to be downloading all meta columns that affected the products at some point.
Best regards,
Nikolay
]]>