We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the documentation says that there are 3 options for the 'label' on the page navigator http://www.jformer.com/documentation/form-features/page-navigator/
setting to title or prefixLabels gives the same result.
My modification is to just display the title if it is set to
if ($this->pageNavigator['label'] == 'title'){ $pageNavigatorLabelText = strip_tags($jFormPage->title); } else { $pageNavigatorLabelText = '' . $jFormPageArrayCount . ' ' . strip_tags($jFormPage->title); }
this was added on line 1027 in the production code the equivilent line is 695 of the JFormer.php file on the project site
The text was updated successfully, but these errors were encountered:
No branches or pull requests
the documentation says that there are 3 options for the 'label' on the page navigator
http://www.jformer.com/documentation/form-features/page-navigator/
setting to title or prefixLabels gives the same result.
My modification is to just display the title if it is set to
this was added on line 1027 in the production code the equivilent line is 695 of the JFormer.php file on the project site
The text was updated successfully, but these errors were encountered: