MDesigner0
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress 3.9 and up on nginx, pretty links (rewrites) not workingI suppose that document might be wrong. I edited my virtual host file and added this to the server block:
try_files $uri $uri/ /index.php?$args;
That did the trick. If there’s a better way, or if this really should’ve worked on a fresh install of WP 4.0, let me know.
Forum: Plugins
In reply to: [Two Factor Auth] Right Code Yet Error Saying Wrong CodeSame problem here. Definitely entering the right code (time based, Google Authenticator), yet it says it’s the wrong code.
Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] Can't track ordersThanks a ton!
Forum: Plugins
In reply to: [Sequential Order Numbers for WooCommerce] Question about database collisionsAh, gotcha. So to reset to order #1, it actually deletes all previous orders. That’s fine too. I assume it cleanly deletes all related order info in other tables?
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Redirect loop error with WooCommerceThanks!
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Products and prices missingWorks great, thanks so much!
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Products and prices missingThanks! I know this is a free plugin so I appreciate the effort ??
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Products and prices missingOk, problem found.
You cannot delete products from your store, otherwise the invoice plugin will try to fetch a nonexistent product ID. And in the code, it doesn’t actually check for failure.
Line 139 in class-wcdn-print.php:
$product = $this->order->get_product_from_item( $item );
And after, there’s no check for failure. $product is coming up empty since it’s been deleted from WooCommerce.
This whole approach is flawed, though, because the order details in Woo will always show the product names and prices, long after the products are deleted. And this plugin is only fetching the name and prices, so why look up the product in Woo? It should just use the details in the $item array to populate the printout. $item already contains everything necessary, as far as I know.
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Products and prices missingSame here. It was working OK last night, then suddenly today for no reason, it stopped working.
Screenshot of PDF: https://i.imgur.com/tCtL0gw.jpg
I’m going to dig into the code and see if I can find out what’s going on. Will post here if I find anything.
Forum: Plugins
In reply to: [Simple WP Retina] Does this work on tiled background images?Thanks!
Forum: Plugins
In reply to: [Simple WP Retina] Does this work on tiled background images?I’m applying the background via my theme’s settings.
Forum: Plugins
In reply to: [WooCommerce] How to change WooCommerce error messagesAnd when I update the WooCommerce plugin or any themes, my text changes will remain intact? That’s really what I’m concerned about.
Is editing functions.php in the child theme and using add_filter() the best way to customize text where that’s possible? (error messages don’t seem to be set up that way)
Forum: Fixing WordPress
In reply to: How to change WooCommerce error messagesOh, ok, that works! I was on woothemes.com before.
Thanks!Forum: Fixing WordPress
In reply to: How to change WooCommerce error messagesYeah, it won’t let me visit the forum until I buy something, which seems silly. It’s not like I’m asking for support directly from the developer, I’m looking for community-based support. That’s why I’m here.