Tagged: tabs
- This topic has 7 replies, 3 voices, and was last updated 8 years, 4 months ago by
inguss neilands.
-
AuthorPosts
-
-
September 22, 2013 at 12:00 pm #1106
inguss neilandsMemberHi,
I noticed that new (unsaved) post with tabs, when click on tab creates new empty post instead of saving current post.
-
September 23, 2013 at 1:01 pm #1116
SteveKeymasterFixed in Beta 6.
You can download it from Trunk at WordPress.org > -
September 23, 2013 at 11:09 pm #1118
KevinKeymasterHi Ken-
We fixed quite a bit, what exactly are you having problems with?
Thanks,
Kevin
-
September 24, 2013 at 2:15 am #1119
inguss neilandsMemberStill not fixed, steps to repeat:
Add tabs to page (any no matter what content)
Click Add New page
Click 1st Tab
Click 2nd Tab
Click 1st Tab
Click 2nd TabWatch &post=xx in URL, ID number is changing.
Expected – post id remains the same.
Possible fixx – use value from <input type=’hidden’ id=’post_ID’> to build tab click url 🙂 -
September 24, 2013 at 1:34 pm #1126
KevinKeymasterThanks for the detailed feedback, I will make sure this is addressed in the next version.
Kevin
-
September 25, 2013 at 1:26 am #1131
inguss neilandsMemberWe managed to solve it!
We added 2 lines to workflows header file:
global $pagenow;
$pagenow = ‘post.php’; -
October 1, 2013 at 10:00 am #1150
SteveKeymasterNice job! Instead of editing your Workflow header file, can you try this:
-Open
/parts/shared/admin-workflow.php
-Look for theif ($url_arguments['post'])conditional, and add your $pagenow code there, so it looks like this:if ($url_arguments['post']) { unset($url['page']); $url['action'] = 'edit'; $pagenow = 'post.php'; }Let us know if that works. Thanks for the help. Without your solution, this would have taken a lot longer to fix.
-
October 1, 2013 at 10:08 am #1151
inguss neilandsMemberLooks cool.
ps. Looks like you are missing basic examples how to add tabs to current page/posts pages – easy way how to move post_title and post_content to tabs 🙂
-
-
AuthorPosts
- You must be logged in to reply to this topic.