Woocommerce show more variables in admin area - wordpress

In Woocommerce within the product edit screen, under variables, I currently have products which have up to 52 options, this is displayed over 4 pages, however I need to increase the number so that I can see all 52 in one page, as I need to move the variable order around but can't move from page to page
There is something in Woocommmerce telling it too only show 20 and pagination, so there must be a way to increase this number

I assume you want to change the number of variations shown per page in the edit screen.
Please add the following code in your functions.php
function update_variations_number(){
return 100; //change your desired number
}
add_filter('woocommerce_admin_meta_boxes_variations_per_page', 'update_variations_number');

You can also double click on the drag icon and manually set the order that way.

Related

I need 2 separate purchase buttons on product page ----> one for simple and one for variations

I am totally stumped in figuring this out and I think I am doing too many extra things in order to fix a simple issue. (I hope)
I am an artist, and I am selling prints and am also offering the original piece for sale on my website. I am trying to figure out how, on the single product page, to add a SEPARATE button that allows the customer to purchase the original piece. I tried adding it as a variable but it is not user friendly and other selections disappear if customers want to go back and select other print options. I do not want the option to purchase the original piece mixed in as a variable. I want it totally separate.
I have created drop down pages for prints and originals on my main site menu but it is messing up when the base ‘shop’ page is clicked because doubles pop up for each product- one is presented as a range in price (the prints) and the other is what the original costs. It is confusing and looks terrible. On top of that, when I try to upload/add new art pieces to either the ‘prints’ or ‘original work’ categories, they don’t show up on either page, they only show up on the ‘base’ shop page.
Is there ANY way to simplify this into removing the ‘prints’ and ‘original works’ subcategories and only have my base ‘shop’ page to display each product, BUT adding a button for the option to ‘purchase original’ along with ‘purchase prints’ on the actual single product page? I have been looking for answers for weeks and haven’t found anything.
Please help!! Thank you so much in advance! I have no clue what I am doing!!!
I have tried adding the 'original' piece into the variations menu and it didn't work correctly. I created subcategories for 'originals' and 'prints' but that is making my base shop page display double products, and when I upload new products and put them in their correct category, they dont go onto those pages, they stay on the base page.
I just want a 'Purchase Original' <---- simple product and a 'Purchase Prints'<----- variable product with size/material options.

Woocommerce number of rows per page

I'm using woocommerce since a while and I need to increase the displayed number of orders per page in admin panel.
There are only 20 rows per page and it is not enough for me.
I was looking for a plugin, but I can't find any.
I also don't know what changes to do in the code info.
Maybe you have some experience with it?
It is so easy: just go to the Orders page in admin panel, click "Screen Options" at the top right corner of the screen, and choose the number of orders to show. See details on this screenshot:
http://prntscr.com/ielc7l

WooCommerce Single Product Page Seperate Cost

I'm trying to add a second button to a product page with a updated price.
For example I'm using [add_to_cart id='$product->id'] which displays correctly, but I would like to assign this short code a custom price.
The results should show two buttons on a single product page. One with the regular price value and the other with the custom price value.
I tried doing this through variables, but need them in two buttons instead of a drop down.
Thanks for the help!

Product attributes in wordpress

I have created two attributes for products in wordpress (Height and Width) having different variation in feet. Every variation has different cost. Everything is working file. My problem is variations are not displayed as drop down list rather they are displayed in the form of table like:-
Size
2ft2ft
2ft4ft
etc.
How to fix this?
please check this link
http://kb.oboxthemes.com/articles/woocommerce-how-to-setup-products-with-multiple-optionsvariations/
video :
https://www.youtube.com/watch?v=nw74z4UCke4

woocommerce: how to add new fields to variations form and show them on frontend

using last versions of wordpress, woocommerce and cheope (theme).
the question: how to
add some extra fields in variations form (text and image field types)
show them on frontend so that their values change accordingly on changing of attributes-select values.
e.g.: the site sells candles and uses variable products, for each kind of candle has several dimensions (with specific different prices), each of which has different duration.
The duration is an important element that I want the user to be informed about.
The same to show the available colors all together.
Unluckily in the standard variation form there is no field where I can insert these or other features.
some help please?
updated 07-August-2013
I succeeded in adding to variations form a new field displayed on back-end, as you can see here, by inserting the code you can find here (please see the comments too) in the function.php file of the theme.
Now, what I’m not able to do is get this field to display with each proper value on front-end (please take a look to the last comment in the above linked page).
Any tip or trick?
thanks
1)Add product attribute and check checkbox Used for variations and Visible on the product page
2)go to variations and add new and fill all fields price and stock must add on them
Your producr display variations and their data

Resources