SVTX
Forum Replies Created
-
I will. Just wanted to share quickly that a complete reinstall of my MainWP Dashboard solved most, if not all of my issues. I haven’t installed the Code Snippets extension again because the way it’s designed doesn’t work for me but the rest seems to be working fine now. A big thank you to Bogdan who went through lenghts to help.
In hindsight, I still don’t know what happened. I guess after a while of installing and removing extensions it got effed up and simply needed a redo.
Hi Bogdan,
I really wasn’t looking to open another ticket. Like I said, this isn’t the first time we’ve been through this. I’ve saved the code snippets again and they’re running now. However, I’m dropping the snippets extension as soon as I can find the time and unless it’s being redesigned from the ground up, won’t ever look at it again. It has failed me one too many times now.
I don’t use Facebook so your user group there is of no use to me (perhaps better for you lol). If you’re collecting votes for a proper community on your own website, you got it.
Well I’ve had it several times now and it reduces the reliability of that feature to zero for me. This especially sucks because now I have to go back to keeping the snippets updated on the child sites manually and that costs me much more time, not at all what MainWP promised ya know^^
Perhaps an integration with Code Snippets would be another approach to consider for this feature as the way it’s designed now is simply not secure enough. God knows what can happen on a site that’s simply missing code and doesn’t even show it’s missing on the dashboard (on the contrary, even indicates that it does run, which is even worse).
This whole section needs a complete redesign if you ask me.
Beta? Yeah no, at the moment I’m kinda fed up with MainWP to be really honest. I’ve been in and out of your support SO many times in the last year and it’s progressively getting worse instead of better.
I know you work hard on this stuff and all but from my perspective, the beating heart of my company is having a several months long heart surgery and I’m starting to actually get worried here.
Wordfence is ALWAYS detecting malicious strings in UpdraftPlus’ files, get used to it 😀
Forum: Plugins
In reply to: [Groups] Calender + GroupsHave you tried using Group’s own content restriction on the custom post type for your events? It may or may not work, worth a try anyway.
I have an addendum to that, I used the wrong hook.
This plugin fixes the issue, massive thanks to it’s maker:
https://github.com/kmindi/wc-stripe-asynchronous-payments-pending-to-payment-complete
I’m using this code snippet to make all orders to got to ‘processing’ after payment, which at least doesn’t put their subscriptions on-hold anymore. I’m selling services so this is fine for my business model, though it may not be for physical goods.
add_action( 'woocommerce_thankyou', 'custom_woocommerce_auto_complete_order' ); function custom_woocommerce_auto_complete_order( $order_id ) { if ( ! $order_id ) { return; } $order = wc_get_order( $order_id ); $order->update_status( 'processing' ); }- This reply was modified 7 years, 11 months ago by SVTX.
Subscription plugin got an update, seems it was related to that 😉 Working fine again.
Update, it’s only displayed twice on subcription type products. That’s rather odd, isn’t it? I’m using the GeneratePress theme.
I’m using version 1.2.9 now
Is this a marketing trick from Wordfence to make me buy the paid version?
NO
The status of that request is: 200 OK, only one attempt was needed.
Yes, that’s the one. I already have the Webhook in place but it still doesn’t work, sorry.
I’m reading mostly opinion, tbh. We all have those! 🙂
Thank you very much for your replies, that filter is probably all I need then!
I wasn’t aware that sitemaps aren’t a thing anymore, I assumed as long G asks for them, they probably use them for something and I had this error displayed in the (new) Search Console yesterday, which made me jump a little:
https://pasteboard.co/H8adKF3.png
As for priorities, I would still sleep better knowing my products (not posts or pages) are prioritised they way I see fit but heck, I believe you 😉
Forum: Plugins
In reply to: [Groups] Compatitible with Visual ComposerIf anything, it is VC that is incompatible with anything else WordPress.
Sorry you have to learn it from me but VC is the least WP-ish think you can throw at your site and other plugins WILL have problems with it.