Robert_ITman
Forum Replies Created
-
Found help here: https://aiosplugin.com/why-am-i-being-redirected-to-127-0-0-1/
Those instructions need updating under “Your IP is blocked” to include a note to check if your IP is locked or blocked, find these under WP Security > Dashboard > and check both tabs (1) “Locked IP addresses” and (2) “Permanent block list”. (Current note is not accurate, does not exist “WP Security -> User Login”)
In my case I found my own IP listed under “Permanent block list” as spam (!? how that happened is beyond me) … anyways, I removed it and now all is working for me again.
Hello – is anyone home?
I see another issue in Items where your summary totals are correct but the download row data is not as you are only getting the value of 1 item and not including the quantity when more than 1 item is ordered – for example, actual order Items Subtotal = $192.00 – but accounting-all-orders download > Items = $16.00 … which is missing $176.00 … and I can see this is because you are not including the total of items ordered which is 12 and only showing 1.
I figured it out for me … recent update changed Woo > Analytics > Settings > Date Type = Date paid … need to change this so it is what we also have under Woo > Settings > Accounting report > Base the report on status = Paid … also need to make sure both settings have the same order status Woo “Excluded statuses” needs to be opposite of Accounting report “Include order statuses”.
Hope this helps.
Forum: Plugins
In reply to: [Independent Analytics - WordPress Analytics Plugin] Does not workNice! Issue solved – thanks to your excellent help!
Forum: Plugins
In reply to: [Independent Analytics - WordPress Analytics Plugin] Does not workThanks – that fixed it – I changed setting in W3 Total Cache plugin from “Disable REST API” to “Don’t cache”, then I “Purged all caches” … and I see stats showing again.
- This reply was modified 1 year, 5 months ago by Robert_ITman.
Forum: Plugins
In reply to: [Independent Analytics - WordPress Analytics Plugin] Does not workThanks for getting back to me so quickly – here is the link to my website: https://www.ourfingertips.com/
That would be great. If I may, it looks to me like we don’t need the parameter “&post_permalink=” and you can also remove the link “back to post” which is likely all you are using this for. Consider giving us a setting to disable these 2 things “remove permalink (set to yes if subscription URLs give Access denied error)” and setting that as default. In removing that parameter the “Manage subscriptions” page loads fine and lists our subscriptions to posts and each is linked to the posts … so no need for the “back to post” link and this will work for everyone. Same issue with the URL provided in the email “Manage your subscriptions on OURFINGERTIPS” with text “You have requested to manage your subscriptions to the articles on OURFINGERTIPS. Follow this link to access your personal page:”
This does NOT work (with post_permalink):
This works (without post_permalink):
P.S. If I may, separate issue but similar is that the subscribe URL on the bottom of posts loads a new page, where you could instead add form for just the email in the post “You can also subscribe without commenting.“
Good eye – please let me know when you update your plugin to use a parameter that won’t get blocked … otherwise I’m now looking for a different plugin to do this for me as I’m not changing hosting and not messing with the firewall or security.
SOLVED thanks to help from Ahmed at Challan and https://fantasticplugins.com/ support desk plugin for SUMO Subscriptions together provided this to add to functions.php
add_filter( 'woo_invoice_email_types', function( $email_types ) { $our_email_types = array( 'subscription_new_order', 'subscription_new_order_old_subscribers', 'subscription_order_processing', 'subscription_order_completed', 'subscription_paused', 'subscription_invoice', 'subscription_expiry_reminder', 'subscription_auto_renewal_reminder', 'subscription_auto_renewal_success', 'subscription_overdue_automatic', 'subscription_overdue_manual', 'subscription_suspended_automatic', 'subscription_suspended_manual', 'subscription_turnoff_auto_payments_success', 'subscription_pending_authorization', 'subscription_cancelled', 'subscription_cancel_request_submitted', 'subscription_cancel_request_revoked', 'subscription_expired', ); $email_types = array_merge( $email_types, $our_email_types ); return $email_types; } );I will try the following and will let you know if it works for me after I receive both “New Subscription Order” and “Subscription Renewal Success” based on the text in the emails sent … I’m guessing what to use here … any help would be great:
$email_types[] = 'subscription_new_order'; $email_types[] = 'new_subscription_order'; $email_types[] = 'subscription_renewal_success';- This reply was modified 2 years, 3 months ago by Robert_ITman.
- This reply was modified 2 years, 3 months ago by Robert_ITman.
Thank you – that looks promising, but I need your help understanding what to enter for $email_types in your code example to replace ‘add your email types here’ … your website doesn’t help either, though it lists ‘woo_invoice_email_types’ under Filter Hooks – can you provide an example that would work and not crash our websites would be most helpful – your URL (add an example here too):
https://webappick.com/docs/woo-invoice/customization/action-hooks-of-reference-woo-invoice/
Forum: Plugins
In reply to: [Sitewide Notice WP] Banner is not showing since upgrade to v2.4Same issue – thank you topaff for pointing out that it shows when “Show Close Button For Banner” is ticked !!
Quick fix will hide the close button in your css:
#swnza_close_button_link { display: none; }Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart – fix to stop auto scrollingFound conflict with plugin “Ninja Forms” Version 3.6.20 | By https://ninjaforms.com – I requested support from developer and will post solution here if they provide one – temporary fix to to not have my contact form show on cart page. FYI – I used plugin “Check Conflicts” Version 1.1.4 | By ioannup to see which plugin was causing my issue.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart – fix to stop auto scrollingIgor – thanks for the suggestion – but that didn’t work for me either … I’m still looking for a fix – if/when I find one – I will post it here.