inspired888
Forum Replies Created
-
Forum: Reviews
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] So disappointedYou’ll investigate this? Really?
Gutneburg has been a staple aspect of WordPress for a couple of years now. How do you currently expect people to use your plug-in?
Forum: Reviews
In reply to: [WordPress MU Domain Mapping] Still the best solution!I also agree, this is still the most reliable solution. In fact, after hours of messing around with trying to get multisite domain resolution to work properly, this plug-in is the only thing that solved the issues I was experiencing.
I also agree that just using the
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST']);was not sufficient. At least not in my setup, which is on Nginx. Putting in the non-www domains into browser would always redirect to the `?signup=new’ page on the primary network domain, even after I tried numerous approaches to configuration in Nginx.I am glad to hear my configuration (which was generated through WordOps) is not the only one that was having that occur.
Forum: Plugins
In reply to: [Qty Increment Buttons for WooCommerce] WooCommerce 5.0 CompatibilityNot in my experience. It displays, but doesn’t register what quantity has been entered into the selector. So only 1 unit of the product is ever added to the cart.
It turns out the transaction data (for this staging site) was getting picked up by GA, but was delayed by many hours.
I got confused by the fact the
/order-received/page hits, etc., were showing up immediately in GA, but no order transaction data showed up for over 4 hours. Yet on our main (live) site, the order data gets delayed by perhaps 5 to 10 mins at the most.“Issue” solved.
Hello @chiragsolanki. For all payment gateways in test mode you can use any future expiry date, and any CSV number.
Yes, I now suspect that might be the case. An older version of the file was being handed out by the cache.
Thanks for responding so quickly.It’s worth noting, that I was now able to get it to update the link, by first changing the
g:linkmap to something else, saving, and then changing it back to the correct mapping (toLink).So I think it might be a bug that the plug-in is not updating it automatically.
It appears to be related to the plug-in trying to display an admin notice. And that is causing an error. The code in question is this:
// Otherwise, add the note $activated_time = current_time( 'timestamp', 0 ); $activated_time_formatted = date( 'F jS', $activated_time ); $note = new Automattic\WooCommerce\Admin\Notes\WC_Admin_Note(); $note->set_title( 'Advanced Shipment Tracking PRO' ); $note->set_content( 'We just released the Advanced Shipment Tracking Pro! Upgrade now and enjoy a 20% off early bird discount. To redeem your discount, use coupon code ASTPRO20 (valid until March 31st)' ); $note->set_content_data( (object) array( 'getting_started' => true, 'activated' => $activated_time, 'activated_formatted' => $activated_time_formatted, ) ); $note->set_type( 'info' ); $note->set_layout('plain'); $note->set_image(''); $note->set_name( $note_name ); $note->set_source( 'AST Pro' ); $note->set_layout('plain'); $note->set_image('');Specifically this line,
$note->set_layout('plain');When I comment out the $note related code from your plug-in, I stop getting the critical errors that were occurring in wp-admin (mostly occurred when I activated/deactivated plug-ins, etc.). I will leave it commented out for now.
- This reply was modified 5 years, 1 month ago by inspired888.
- This reply was modified 5 years, 1 month ago by inspired888.
Forum: Plugins
In reply to: [Partial.ly Payment Plans] Fatal error when installed with WPML pluginI can report that I’m seeing this same error on a site without WPML installed.
PHP Fatal error: Uncaught Error: Call to a member function get_cart() on null in /home/nginx/domains/DOMAIN/public/wp-content/plugins/woo-partially/inc/gateway.php:20
So it is likely not specifically a conflict with WPML.
Whatever the case, I would also request the plug-in developer to implement a fix for this.
Thank you.
Okay. Have confirmed, that was the issue. So odd.
Closing this support request now.Turns out it was an issue with some custom CSS, in
styles.cssthat was interfering with the insert media system.
So I think I may have resolved it, and it has nothing to do with your plug-in. Just doing a few more checks.Forum: Plugins
In reply to: [SlimStat Analytics] city and country not showing upGetting the same issue.
Following @toxicum instructions above didn’t help (as I’d already manually installed the required MaxMind DB file. Seems the IPs don’t get converted to location names.Forum: Plugins
In reply to: [SlimStat Analytics] Is this plugin still being actively maintained?Seems it’s no longer maintained. Sadly.
Yes, hopefully the developer is okay.Also, I can confirm that the “Shipped Order” email is enabled in the Woocommerce email options.
Thanks Jory.
I’ve watched the video, and gone through some documentation.
So, am I correct in understanding I could use PODS to set up a custom post type, with custom fields, and then create a PODS template to present the CPT entries with suitable CSS selectors (for me to style the presentation exactly as I need it), and then I could create a standard WP page with some pre- and post- content, and using a short-code I could insert the POD presentation of my CPT entries into that page? Is that the gist of it, and totally doable?
One last consideration … Would using PODS to do this be overkill in terms of the overheads it places on the site? Or is it pretty efficient in that regard?
Cheers,
Jonathan