nghizas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: rotated photos on ipadThanks for your responses.
pdean — are you downloading each photo on the ipad? Or are you downloading and reuploading the jpegs on the back end of wordpress? I’m not sure I follow exactly.
Thanks!
Forum: Plugins
In reply to: [Slideshow] iPad rotates imagesI’m having a similar problem with my product photos being rotated on the ipad.
Follow this link and notice that on a computer the pictures are oriented correctly, but on Ipad/ipda mini they are not.
https://www.imadeitbydeb.com/product-category/greetingcards/
Anyone know why??
I regenerated all the thumbnails on my website, but it didn’t change the ipad picture orientation.
Thanks for the help!
Forum: Fixing WordPress
In reply to: rotated photos on ipadI am having this same issue.
Follow this link and notice that on a computer the pictures are oriented correctly, but on Ipad/ipda mini they are not.
https://www.imadeitbydeb.com/product-category/greetingcards/
Anyone know why??
I regenerated all the thumbnails on my website, but it didn’t change the ipad picture orientation.
Thanks for the help!
Forum: Plugins
In reply to: [WooCommerce] Products show "Free" instead of price after updateHi there,
I ended up starting over with the most up to date style shop theme and the newest update of wordpress and it worked out. I had to re-upload all my products to the new system but in the end it was for the better.
Best of luck.
Forum: Plugins
In reply to: [WooCommerce] Products show "Free" instead of price after updateAh okay, this is a specific theme issue then. Sorry I’m pretty new to wordpress and just working my way through.
I just found out from the theme developer that the styleshop theme hadn’t been updated to accomodate the most recent upgrade of woocommerce yet. There’s a link to an older version of woocommerce for now. Thanks for your help.
https://www.elegantthemes.com/forum/viewtopic.php?f=181&t=19239Forum: Plugins
In reply to: [WooCommerce] Products show "Free" instead of price after updateWhen I put a product that is on the front page on sale (original $12 | sale price $10) it says $0 | $0, but the prices are all there in my admin panel….
Forum: Plugins
In reply to: [WooCommerce] Products show "Free" instead of price after updateHmm that didn’t work.
The ‘all products page’ and any subcategories works the same on both 2012 theme and my current theme, showing the actual price. Only on the home screen does it say “Free”. I think it has to do with this chunk of code from home.php, but I could be way off? I am by no means an expert at php.
<?php $product_ids_on_sale = et_woocommerce_get_product_on_sale_ids(); ?>
<?php if ( ! in_array( get_the_ID(), array_map( ‘intval’, $product_ids_on_sale ) ) ) { ?>
<?php if ( ” != $_product->get_price_html() ) : ?>
<span class=”et-main-price”><?php echo $_product->get_price_html(); ?></span>
<?php endif; ?>
<?php } else { ?>
<span class=”et-price-button”>
<span class=”et-price-before”><del><?php echo woocommerce_price( $_product->regular_price ); ?></del></span>
<span class=”et-price-sale”><?php echo woocommerce_price( $_product->get_price() ); ?></span>
</span>
<?php } ?>Forum: Plugins
In reply to: [WooCommerce] Change "Cart" TextGreat! Thank you so much. Apparently I was overcomplicating it.