davidtrebacz
Forum Replies Created
-
There are also some fields for product reviews in the wp_commentmeta table, that is keyed to the comment_id. Notably the “rating” and “verified” fields.
Here are the current settings ??
- This reply was modified 7 years, 8 months ago by davidtrebacz.
- This reply was modified 7 years, 8 months ago by davidtrebacz.
Great. Thanks for the quick reply. I really like the non-cron version of the links much better. They are consistent with the URL structure on the public site and our canonical URL’s.
For now I have it set up to “work”. I was a little surprised when I saw my PLA links dropping in Google Merchant center (due to 404 errors), but it was an easy fix. Google will hopefully catch the updates tomorrow…
Here is the example feed URL:
https://www.glasshousestore.com/wp-content/uploads/wppfm-feeds/DiamondDrills.xmlForum: Plugins
In reply to: [Enhanced Media Library] pdf preview images – not showing in grid viewThanks for the awesome fix. Works great!
Forum: Plugins
In reply to: [Udinra All Image Sitemap] 404 and Missing Images from sitemapWas the change above addressed in the latest code update?
Forum: Plugins
In reply to: [PayPal for WooCommerce] Error 500 on activationFYI – Version 1.3.1 has been working on my site just fine.
Review submitted. Thanks for the great plugin and support.
I believe this may have been a configuration issue on my end that we’d never noticed. After further reviewing our configuration we had Paypal Express Checkout set to override the billing address:
The setting is under WooCommerce>Settings>Checkout>Paypal Express Checkout>Billing Address Enable this option if you would like to use this address for both billing and shipping in WooCommerce, PayPal only returns a shipping address back to the website.
I unchecked this, so WooCommerce does not switch the billing address. Now the confirmation process behaves as I would expect and we capture both addresses the customer provided. Perhaps we always had it set this way and I just noticed when the other issue arose.
Thanks for the great plugin and the quick fix on the other issue.
If there are any negatives to my choices, please let me know.
I also have the same issue. I installed the patch on my test server.
The updated patch is better. I still notice the the shipping method changes when selecting separate shipping address. When I finalize the order in Woocommerce the actual order has the same address for shipping and billing.
Forum: Themes and Templates
In reply to: [Boutique] Boutique warning after activationAlso see it here. Weird part is I have a test site that is running a backup of the product site and it doesn’t show the message. Two potential differences are directory permissions on the production site or JetPack is in developer mode on my test site. Doesn’t seem to cause any issues, so I will also continue to ignore it.
Forum: Plugins
In reply to: [Udinra All Image Sitemap] 404 and Missing Images from sitemapLooking at this closer, this plugin (and others) uses the guid field in the posts table to get the image path and name.
In my case this still contains the old filename. The current image filename is in the posts wp_postmeta table in with an meta_key filed of either _wp_attached_file or _wp_attachment_metadata. For each of those the correct filename in reflected in the meta_value field. The one labeled _wp_attached_file is a clean version of the filename.
I hacked the current plugin SQL query with this SQL query and I seem to get the correct filenames output:
$udinra_posts = $wpdb->get_results(“SELECT post_title, post_excerpt, post_parent, guid AS old_guid,CONCAT(‘https://www.glasshousestore.com/wp-content/uploads/’,meta_value) AS guid
FROM $wpdb->posts LEFT OUTER JOIN $wpdb->postmeta ON $wpdb->posts.ID = wp_postmeta.post_id
WHERE wp_postmeta.meta_key = ‘_wp_attached_file’ AND post_type = ‘attachment’ AND post_mime_type LIKE ‘image%’ AND post_parent > 0
ORDER BY post_date DESC;”);I join the meta table with the post table. I’m sure there is a more elegant way to do the concat, but I’m better with SQl than php and WordPress.
Forum: Plugins
In reply to: [Redirection] Groups Not Created On InstallI also ran into the same issue. New user and a new install. I had no groups and certain functions don’t work well without groups. Not sure what is causing this.
Thanks for responding. The URL is https://www.glasshousestore.com/
Forum: Plugins
In reply to: [PDF Image Generator] Mising preferencesI also had this issue. Deactivated all and then reactivate them and it appeared in the menu.