Hi!
I tried both ways with drag and drop and via the menu icon “move”.
I also tried to find out if it’s browser dependent, but it doesn’t matter if you have 2 browsers (firefox and chrome) on just one client with the same board open or on a different workstation. The behavior is the same.
If I move a task (drag and drop and via menu), the task is just changing the color bar on the left side at the other browser window.
The developer console does not show any errors, just seeing executing the admin-ajax file.
Best regards,
Michael
I have now found the right module file and solved it by the following in the themify class shortcodes
…
case ‘button’:
if ( ” != $button_link = themify_get(‘external_link’) ) {
$is_ydk_page = ‘ydk.me’;
$intern_link = strpos($button_link, $is_ydk_page);
if ($intern_link !== false) {
$out .= ‘< a title=”‘.the_title_attribute(‘echo=0’).'” href=”‘.esc_url($button_link).'”>’;
}
else {
$out .= ‘< a title=”‘.the_title_attribute(‘echo=0’).'” href=”‘.esc_url($button_link).'” target=”_blank”>’;
}
…