davemfrank
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Remote Users Sync] Metadata update from remote site not workingHello – Yes got it working using webhooks instead of this plugin, what solution are you using? thanks – Dave
Forum: Plugins
In reply to: [WP Remote Users Sync] Metadata update from remote site not workingResolved, figured out how to have all the subsites sync metadata to the remote site with this plugin, so all is well here.
Forum: Plugins
In reply to: [WP Remote Users Sync] Metadata update from remote site not workingHi –
thanks.
Yes I have tried it both network activated and not. I guess the big reason to me anyway not to network activate is if subsite users could see/get the security keys.I think the plugin must not like something about where the profile update is coming from even though I am switching to blog Id 1. So there must be something else that I need to switch to make wprus accept the profile update.
– Dave
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneHi and thanks for the help and clarification.
$request = ns_cloner_request()->get_request(); $target_ids = ns_cloner_request()->get( 'clone_over_target_ids' ); $target_id = $target_ids[0];Yes, ran into that ‘array of 1’ thing right away and that above is what I ended up with.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneHave never gotten the finish hook to work, so finally looked at the request array and see that it does not have a ‘target_id’ there, but it does have ‘clone_over_target_ids’.
So I guess problem solved. I was trying to use ‘target_id’ based on some posts here such as: https://ww.wp.xz.cn/support/topic/ns_cloner_after_everything-hook/So my function here is wrong:
add_action( 'ns_cloner_process_finish', function(){ $target_id = ns_cloner_request()->get( 'target_id' ); // Do something here. });It should be this:
add_action( 'ns_cloner_process_finish', function(){ $target_id = ns_cloner_request()->get( 'clone_over_target_ids' ); // Do something here. });*Have not had time to test yet, but if I’m wrong or need to do this differently please let me know. Thanks again, – Dave
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneActually never mind, if I go to the backend Nscloner screen it does show it running there so I was able to cancel it. (started the clone from a frontend template)
Not sure why is does not show as running on the status/log screen but it does show it as running on the nscloner screen.Forum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneOk got one more issue, my finish process must have something that caused the process to never finish and the log shows it just keeps looping on 4 things ‘CHECKING for running ns_cloner_tables_process – none found’ (and users, rows, files).
So since the clone does not show as ‘active’ in status, which makes sense since this is an ‘after finish hook’ I guess I need to kill the running process somehow.
Tried deactivating the plugin but no luck.
Is there a way to to stop the clone process? (other than restoring an earlier site backup)
thanksForum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneAwesome – thanks for the update on this!
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Change posts author after cloneHi Thanks for the info, and probably a stupid question but how should that line read in the action and does it need to be in the loop I’m running? I’ve tried a couple things and got nothing but errors. Tried stuff like:
$getstuff = ns_cloner()->log->log();
Also tried running a manual clone (not using the templates) and chose debug there but don’t really see anything in the log. Thanks in advance,Forum: Plugins
In reply to: [Plugin Organizer] 500 error with Teams for Woocommerce pluginThanks Jeff thats a great idea, I’ll mess around with the order
Forum: Plugins
In reply to: [Mailgun Email Validator] tons of validationsHi Jesin, It is a couple forms on a bunch of pages and they all do contact info, name, email, etc.
I was just wondering if the validate call can be made to be conditional like if class=’classname’ or if $Input=’#input_id’ then validate function.thanks!
– DaveForum: Plugins
In reply to: [File Manager] You are not allowed to access file managerFor me the issue was not understanding the settings under permission system. I clicked every permission box for administrator after I installed the plugin but didn’t realize that the last box is ‘BAN’ which makes the administrator banned.
Plugin works great after unclicking ban!