If you want it to work on the normal login form for woocommerce, you should change the filter hook to woocommerce_login_redirect and add a return statement containing the url variable.
add_filter('woocommerce_login_redirect', 'ras_login_redirect');
function ras_login_redirect( $redirect_to ) {
$redirect_to = 'http://anypage.com';
return $redirect_to;
}
All of this should of course go in your themes functions file.
I think you need the title and as the plugin doesn’t take into account if the field hasn’t been set. So if you update your products and there is no title included in your csv file it will be updated with a blank field.
Think the same is true for the content and the excerpt field. It is however a quick fix if you’re somewhat familiar with php. If so, I can point you in the right direction.
Thread Starter
RazzET
(@razzet)
Hello again
I figured out that it simply was a matter of a wrong encoding on the file.
Perhaps I was to quick on the support button 🙂 Keep up the good work.