-
Author
-
August 23, 2015 at 23:34 #74252
louder
Participanthello,
I am using variations in woocommerce and when I am in the backend trying to edit a product the variation and attribute screens are pushed to the left so that you can’t completely see the information. i have taken a screenshot so you can see.
Any help would be greatly appreciated.
August 24, 2015 at 20:26 #74404Radu
ModeratorHi,
Can you provide the screenshot first ?
Regards
RAdu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 24, 2015 at 21:03 #74411Radu
ModeratorSorry but here is no screenshot added.
Fix for the issue :
Add the below css snippet to this file wp-content/plugins/woocommerce/assets/css/admin.css at the end.
#woocommerce-coupon-data ul.wc-tabs, #woocommerce-product-data ul.wc-tabs, .woocommerce ul.wc-tabs {
margin: 0;
width: auto !important;
}Let me know if it’s ok
Best regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAugust 25, 2015 at 16:32 #74544Radu
ModeratorHi,
I see that the problem it’s solved,
I case if you encounter the same problem again use this function
COPY CODEfunction woocommerce_variations_fix(){ echo "<style>\n"; echo ' #woocommerce-coupon-data ul.wc-tabs, #woocommerce-product-data ul.wc-tabs, .woocommerce ul.wc-tabs { width: auto !important; } '; echo "\n</style>"; } add_action( 'admin_print_styles', 'woocommerce_variations_fix' ,90);
Add this function to kleo-child/functions.php
Can you confirm if the problem was solved?
Regards
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.