Tagged: x
-
AuthorPosts
-
March 27, 2017 at 3:44 am #1421332
Hello There,
Thanks for updating in! It sounds like you might be having an issue with a third party plugin WooCommerce Image Flipper . Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.
Thank you for your understanding.
March 27, 2017 at 4:44 am #1421393Hi again! I’m ok with not using Woocommerce image flipper. However, Is there a way to integrate the same functionality that the plugin offers which is compatible with xtheme? And again, I would just like to ask for help for the second problem I had in my previous post. The positioning of the product gallery images when viewed on mobile devices. The complete details of this problem is in my previous reply to this topic. Thanks a lot!
March 27, 2017 at 6:28 pm #1422311Hi There,
Flipped image is not available by default. It could be possible with custom development but that is outside the scop of our support. Thank you for understanding.
For the second problem, look for this custom CSS that was suggested previously:
.thumbnails { max-width: 100px; float: left; } .single-product .thumbnails a { width: 100% !important; float: none !important; margin-right: 0 !important; } .woocommerce div.product .summary { width: calc(49% - 100px) !important; }
Update to this so it will just work on desktop view:
@media (min-width:980px){ .thumbnails { max-width: 100px; float: left; } .single-product .thumbnails a { width: 100% !important; float: none !important; margin-right: 0 !important; } .woocommerce div.product .summary { width: calc(49% - 100px) !important; } }
It will not work right away because your single post page has difference in structure. By default all of those images should be inside just one container. But then when I visit your single product page, the main feature image has it’s own container and then the two thumbnails is outside that which by default should share that container. Try removing any custom templates or plugin related to woocommerce to see where it is coming from.
-
AuthorPosts