In order to save changes to an article, it is necessary to check/tick the reCaptcha box first, but this only appears on the Content tab.
If you're working your way through an article, changing its content, adding a publishing date and then adding a meta description, then I would prefer to be able to save the article from that tab, rather than having to go back to the content tab first.
Show reCaptcha on all tabs, i.e. Images and Links, Fields, Publishing, Metadata
Labels |
Added:
No Code Attached Yet
|
Title |
|
Good answer!
Does anyone have the know-how to change this? I don't.
As with so many things its just a template override. This time its the components/com_content/tmpl/form/edit.php
Just move this code to where you want it
<?php if ($this->captchaEnabled) : ?>
<?php echo $this->form->renderField('captcha'); ?>
<?php endif; ?>
For example if you move it after the uitab.endTabSet
it will show directly below the form no matter which tab you are on
Or if you move it inside a tab then it will show just on that tab
can be closed
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2022-03-24 09:53:26 |
Closed_By | ⇒ | Quy |
As with so many things its just a template override. This time its the components/com_content/tmpl/form/edit.php
Just move this code to where you want it
Thanks, Brian. I've only just seen this. It may be that "it's 'just' a template override" but anyone new to Joomla wouldn't know that. It took me months from first learning about Joomla (from a YouTube video) to discovering overrides, especially as I had no knowledge of PHP at the time.
There can only be one reCaptcha. It should be outside the tabbed interface.