jnhghy
Forum Replies Created
-
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] PHP Error in WP hook function 7.3.5Hello @niklasinpsyde,
Thanks for the reply and the suggestion!
Forum: Reviews
In reply to: [Google Tag Manager] works as describedThis is as funny as sad it is.
I’m trying to be as polite as possible to such a bad way of using the WordPress forum.
Please try to understand how a plugin works before saying what you said and downvote the plugin.
This plugin, if you think about it, does 1 thing, outputs a value that you save in the dashboard, in every page of your site. WordPress has hooks that haven’t change since more then 5 years ago that allows plugin developers to do that, what should the plugin author change to update the plugin?
I really disagree with your way of using the WordPress forum since its making me and other users waste time and delivers very unreal data about a plugin, which is strange since you also wasted time posting this.
I don’t want to get into an argument with you just want to say that some plugins ( take “Hello Dolly” by Matt for example ) really don’t require updates.
Have a nice one!
Forum: Fixing WordPress
In reply to: advice moving/rearranging site and wp URLsHi,
From what you’ve described my bet would go with multisite main reasons:- you can have different themes on different event years
- you can activate different plugins for different event years
- you can control everything from one admin with a super-admin account but still give per event access if needed.
I see no reason not to use multisite for this except technical reasons ( not knowing how to set it up ) though this can be easily fixed by trying it out on a development folder/server…
The only thing that can be better then multisite is having everything on the same WordPress install – you can use an event plugin ( or code something custom ) that will allow you to have a page in your main/mother site with all the information relative to an event but your project description doesn’t seem to suit this solution.
Best
Forum: Plugins
In reply to: [WooCommerce Filter Orders by Product] I don't get the product dropdownUps, my bad I got distracted and checked the products page instead of the orders page, the plugin works flawless, sorry.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] unable to retrieve my mailchimp listsHi, I have the same website live and “development” on the same host, both sites show the same issue, I have a 3rd copy of the site on my local server where the plugin works without issues.
The live site is hosted with resellers panel (not sure if this is the name of the host or if it’s another intermediar) as a quick fix I’ve ended up running a custom embeded form from mailchimp (it works) with which I have layout and content issues but they seem acceptable at this point.
I’ll check the server logs to see what new info they give tomorrow, hopefully it’s just a server setting that I can tweak and get the plugin working again.
Thank you for your suggestions.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] unable to retrieve my mailchimp listsSome Extra info:
I’ve deactivated and deleted the plugin, after reinstalling it when I add my api key it doesn’t show me connected any more… I’m starting to think it’s a webserver issueForum: Plugins
In reply to: [Easy Forms for Mailchimp] unable to retrieve my mailchimp listsAlso I tried clearing the API Cache, didn’t helped and it didn’t make any difference.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] unable to retrieve my mailchimp listsOk, just installed the plugin on a different site and it seems to be working with the same api key.
On the site where I need to use the plugin I’ve deactivated all other plugins and switch to a WP default theme and the plugin still doesn’t retrieve my Lists from Mailchimp.Can it be a domain specific issue? or might there be issues caused by the host config that show no errors?
Thank you for any assistance.
Forum: Fixing WordPress
In reply to: How to redirect a user who just deleted their account?Please try this code (untested):
function redirect_deleted_user( $user_id ) { if ( $user_id == get_current_user_id() ) { wp_redirect( 'https://www.example.com', 301 ); exit; } } add_action( 'delete_user', 'redirect_deleted_user' );
Forum: Fixing WordPress
In reply to: How to redirect a user who just deleted their account?I’m happy to hear it’s working, sorry for the bug in the first code… onest mistake ??
Forum: Fixing WordPress
In reply to: How to redirect a user who just deleted their account?Oh I’m very very sorry, I’ve wanted to make sure that if an admin is deleteing an user he deson’t get redirected but instead of doing that I’ve created a bug :(.
Please try this code for now and see if it works:function redirect_deleted_user( $user_id ) { wp_redirect( "https://vatpt1.thevillageblog.com/home/", 301 ); exit; } add_action( 'delete_user', 'redirect_deleted_user' );
Forum: Fixing WordPress
In reply to: Inserting and displaying blob imageif it works then it’s perfect! ??
have a nice one!Forum: Fixing WordPress
In reply to: Inserting and displaying blob imageWhat do you have in your database?
Do you get an entry in your database when you save the file?
What actually happens that “does not work”?
You get no output? – check html with inspect mode to see exactly what gets echoed
Is the website public accessible? can you link to it?
Forum: Fixing WordPress
In reply to: New Menu causing problems with page layout?I’m sorry I’m unable to see the issue, I’ve checked on different screen sizes from small to very large (above full HD) but still didn’t got the error you say you have and here is what I get:
the about page
the blog post page
and the health pageOn what screen are you viewing your website? is it retina?
Forum: Fixing WordPress
In reply to: How to redirect a user who just deleted their account?Now I’ve found this plugin also: Delete Me that might work for you, please check it to see if it has what you need.