Christine
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce update 2.2.10 completely broke site!My designer tried uploading the new file via FTP, but that didn’t work.
He ended up having to restore an older version of the site, along with the old version of Woocommerce, but now my Yotpo plugin is no longer working… So I guess he’ll just keep trying. The good news is at least the site is back up!
Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte fileOh my gosh thank you SOO much GermanSC!! I have that plugin but had no idea that is what was causing the problem. Force downloads works perfectly now!
Luckily for me Nextgen Gallery wasn’t an integral part of my site, so I was easily able to get rid of it. The only thing I can suggest for you, since there doesn’t seem to be much support from Woocommerce, you could try going to NextGen’s forum board. Also this site, codingforums.com can be helpful too.
Sorry I can’t be of more assistance, but thanks so much for mentioning the plugin. Saved me ALOT of time 🙂Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte filebump
Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte fileOk I read somewhere that it is probably an incorrect path file which probably happened when the update was installed. Here is the php code for the downloads
if ( ! defined( 'ABSPATH' ) ) { exit; } if ( $downloads = WC()->customer->get_downloadable_products() ) : ?> <?php do_action( 'woocommerce_before_available_downloads' ); ?> <h2><?php echo apply_filters( 'woocommerce_my_account_my_downloads_title', __( 'Available downloads', 'woocommerce' ) ); ?></h2> <ul class="digital-downloads"> <?php foreach ( $downloads as $download ) : ?> <li> <?php do_action( 'woocommerce_available_download_start', $download ); if ( is_numeric( $download['downloads_remaining'] ) ) echo apply_filters( 'woocommerce_available_download_count', '<span class="count">' . sprintf( _n( '%s download remaining', '%s downloads remaining', $download['downloads_remaining'], 'woocommerce' ), $download['downloads_remaining'] ) . '</span> ', $download ); echo apply_filters( 'woocommerce_available_download_link', '<a href="' . esc_url( $download['download_url'] ) . '">' . $download['download_name'] . '</a>', $download ); do_action( 'woocommerce_available_download_end', $download ); ?> </li> <?php endforeach; ?> </ul> <?php do_action( 'woocommerce_after_available_downloads' ); ?> <?php endif; ?>Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte file…Anyone?
Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte filebump
Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte fileOk I see. Have you been using the “Redirect only” option? I was but I really disliked it because it leaves your product links open to anyone! So I turned that off for now and just have to send downloads manually.
Really hope they come out with an update soon to fix this!Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte fileOh I see what you mean, I must have misread it. Did you have this problem before updating to the new Woocommerce?
Forum: Plugins
In reply to: [WooCommerce] "Force Downloads" sending 0 byte fileSo glad I’m not the only one going through this! Someone here seems to also be having this issue https://support.woothemes.com/hc/communities/public/questions/201443043-Forced-download-not-working?locale=en-us
If any Woocommerce developer is reading this, help with this issue is much needed!
Forum: Plugins
In reply to: [WooCommerce] Digital Products unable to download since updating to 2.2.2I was having that issue before, and it turns out they were just getting sent to spam. I started using an smpt plugin and that fixed it.
Another time I had an issue was when I hadn’t given the files a name and so they weren’t appearing in emails.Forum: Plugins
In reply to: [WooCommerce] Digital Products unable to download since updating to 2.2.2anyone know if the new update will fix this?
Forum: Plugins
In reply to: [WooCommerce] Digital Products unable to download since updating to 2.2.2bump
Forum: Plugins
In reply to: [WooCommerce] Digital Products unable to download since updating to 2.2.2OK, so I temporarily fixed it by changing the “Force Downloads” to “Redirect Only”. I don’t like this method, but I can’t use the x-send option either because my server doesn’t support it.
But it’s almost as if the “Force Downloads” option is acting like the X-send option since updating to 2.2.2. That is why it is sending a file with 0 bytes of information. I would really appreciate any assistance with this!
Forum: Plugins
In reply to: [WooCommerce] Digital Products unable to download since updating to 2.2.2Ok just found out that its sending a file with 0 bytes of information. Someone suggested it might have something to do with the cached file information???? Any help would be greatly appreciated!
Forum: Plugins
In reply to: [WooCommerce] Changing order of content on product pageOk I figured it out… You can’t just change the order of the numbers, you have to add a remove and add function. So I added this:
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 20 );remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 20 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_excerpt’, 30 );And it worked like a charm 🙂