I would like to be able to add to wpdatatables all the formulas in excel, is it possible according to you to modify the plugin?
I tried adding them by editing the php code, but I can't get everything to show up once I import the plugin to wordpress
Related
I'm using WP all import to import many products with 3 languages(separately exported by category using WP all export).
I exported CSV file products to edit and make changes prices and meta tags of images.
I changed what I wanted and tried to import by export template.. but unfortunately, missed images, prices without changes and attributes disappeared on product card.
I tried by option update existing products and with all options of the plugin 5-6 times..
importing without error but there is no changes..
no images
no updated price value
disappeared attributes
if anyone know any solutions or recommendations how to fix this problem.. please share. thank you for all
url website: https://m-lux.lv/en/metala-durvis-dzivokliem/
https://prnt.sc/10c81z1
https://prnt.sc/10c82jd
When you import products in multiple languages, you need to use a special "unique identifier" field to link the translations. It cannot be the same as any other field, like SKU.
From doc:
When you import the files later, WP All Import will need a way to
match the default language posts to their corresponding translations
in the other files.
To do this, you need to specify a unique identifier for each post.
Assign an ID number to one of your posts in your default language.
Then, use that same ID number for the same post in your secondary
language files. By looking at this ID, you can tell which post is the
translation of another by finding the same ID number in your files.
https://wpml.org/documentation/related-projects/wpml-all-import-plugin-website-import-with-wpml/
I also recommend to make 2 separate imports: one for simple products only, the other - for variable products.
Test each import on just 1 product first to see if it's working (it's quicker).
I have a weird issue, I am editing a WordPress with advanced custom fields, but I do not have permission to see the plugin, I do have, however, the 'acf.json' file,
is there a possibility I can use this file to create custom fields instead of using the plugin?
Many thanks,
I am currently doing my own wordpress theme and therefore need a custom post order. However, I am able to activate the post attribute's order within the wordpress gutenberg editor with the following code
add_post_type_support('post','page-attributes');
but it does not save when saving the post and always resets back to 0.
I already tried disabling all plugins and also checked the error with another wordpress theme (and the code shown) and another plain wordpress blog but it seems to not save my order set.
I also checked the post within the database and there is "menu_order" set to 0. When changing this manually to 5 or some other number, I can use this parameter for my custom order but gutenberg editor still shows up 0 as post attributes order.
Any ideas what I did wrong or is this a wordpress bug. Any chances to fix this? The order attribute of pages seems to work within gutenberg editor.
With Gutenberg, WordPress is using the REST API to handle data. Because of that, you need to work with two filters to allow you to save that field, and then display the result in the admin. Those two filters are: rest_pre_insert_post and rest_prepare_post.
This is because WordPress has the schemas for the default posts hard-coded, which you can see in /wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php # line 1997. The schema for the default post doesn't include page-attributes. This is the workaround that I came up with for a project that I was working on: https://gist.github.com/jesgs/e619bfbfe10ad998d8a61ac41cc958a7
I need to import more than 100 products from an CSV file but some of the products already exists in the webshop. I will be using the core importer tool that comes with Woocommerce.
When importing the file I need to update each already existing product by matching the Name of the product. (I know there is an option for matching the SKU or ID but I need to update the product if the name already exists)
Thanks in advance!
This is a pretty common scenario. Of course, the core wp imported plugin will work with this. But it will create new entries regardless of which once you already have. You might have imported content before and noticed that there are duplicate posts, this is something I think you can't avoid with the default importer.
Now to help you with this, there are other solutions. WP import all is one of my favourites. The reason, it lets you map the entries from your CSV to WP. You decide entries from which column go to which field.
Here is a free version of the plugin: https://wordpress.org/plugins/woocommerce-xml-csv-product-import/
This does not work with WooCommerce though, you will need a premium plugin for this: http://www.wpallimport.com/woocommerce-product-import/
Another product I can think of is the one built by the WooCommerce folks itself:
https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-extensions/product-csv-import-suite/
I have not used this myself, but have heard good words about it.
PS: If the data from the previous posts is also there on the CSV, you can delete the previous posts and import them from the CSV, that way you won't have to worry about the duplicated, or the check the names. You can try this on a local install. and then export them with all the updated data, and import it again to the production site.
I hope you find this helpful.
I want to make duplicate posts and pages on wordpress either by functions or a plugin, any suggestions.
Also, i want to use these duplicacy for multi site functionality. That is, if i create another site, it may inherit the posts and pages of master site.
You can do this with the built in export/import feature. Under the tools menu in the admin menu you can find these two options. Just export the posts and pages XML file. Then on your new site or multisites you can import that XML file. You'll have an option to download all media on import also, which will bring over the images, PDFs, etc.
Here's the documentation:
http://codex.wordpress.org/Tools_Export_Screen
http://codex.wordpress.org/Tools_Import_Screen
I have a subsite that contains the base setup for a new site.I use the "Multisite Cloner" plugin on the master site to specify that 'template' subsite whenever new subsites are created.
For duplicating posts/pages, you could use the export/import process.
But there is now (4 years later from your question) a plugin that allows you to duplicate a page or post from one subsite to another: Multisite Post Duplicator (https://wordpress.org/plugins/multisite-post-duplicator/ ). I have not used it yet (although I will be testing it soon), but it has good reviews and appears to be maintained.
I add this info now (four years later) because this question came up in a search for a similar need.