Jump to content

SIERRA

Members
  • Posts

    84
  • Joined

  • Last visited

Everything posted by SIERRA

  1. Hi @da² Thank you very much for your inputs. I used a session variable and updated it as you suggested. It works as expected. If we find an alternative solution to resolve this, it would be greatly appreciated. Thank you
  2. Hi, Thank you for your suggestion. We have tried your code, and it is working well for the repeater fields. However, one issue we are facing is that if a repeater item has an error, it should be opened by default at page loading. Unfortunately, it is not opening, and we need to manually open and view the error. Please find the screenshot attached and our coding .Could you please possibilities to fix this? Thank you. Code in ready.php file $wire->addHookAfter("Inputfield(name=test1_repeater)::processInput", function (HookEvent $event) { /** @var InputfieldRepeater $inputfieldRepeater */ $inputfieldRepeater = $event->object; /** @var InputfieldWrapper $wrapper */ foreach ($inputfieldRepeater->getWrappers() as $repeaterItemId => $wrapper) { /** @var Inputfield $itemField */ $itemField = $wrapper->getByName("test_name_repeater$repeaterItemId"); if($itemField && $itemField->value == ''){ $itemField->error('Custom Message'); } } });
  3. Hi, How to add custom validation to the field 'Test name' (inside the repeater) and display its error message similar to 'Title' field. Please find the screenshot and suggest. Thank you.
  4. Hi We tried using this hook method "$this->addHookAfter('Inputfield::processInput', $this, 'validateCustomField');", Using this we can able to show the error messages in the repeater field. However, we need to show the error message below the respective inputfield in the Repeater. Is there any hook methods to achieve this? Thanks for the support and we will avoid duplicate questions.
  5. Hi How can we show the custom error messages below specific error fields?
  6. Hi @ngrmm Thank you so much. Your information and reference link helped to me. it is worked perfectly.
  7. Hi, Please find the screenshots attached. We have a repeater field on the test1 page. On the test2 page, we would like to select values of titles created in the test1 page. Please suggest. Thank you.
  8. I found the problem. When I load the website using localhost, it works fine. However, when I load it using the IP address, it does not work. I want to run the website using the IP address. Is there a solution for this?
  9. Hi @DV-JF I have installed and configured Wamp server for the development source. It downloads something when I try to open the URL. Thank you. No
  10. Sorry @zoeck I tried with 8080 port , but it remains same.
  11. We are using XAMPP local web server https://www.apachefriends.org/
  12. Hi, Thanks for your help. Even after commenting out lines 194 and 195, it still didn't work. Please find a screenshot of what issue I facing now in the incognito window. Could you please suggest any other options that I need to check? Thank you.
  13. Hi We need to validate the input fields of the repeater item in Process Wire Admin Page. Currently we can be able to show our custom error messages on page beginning and repeater item field beginning (Please find the attachment). How can we display our custom error messages below the input fields of the repeater item (Similar to Process Wire Error message). Please suggest?
  14. Hi, We copied the production source and configured it the same as the development source on the localhost. However, the website is not working on the localhost, whereas it is working fine on the production source. Please find the error attached. FYI - we have SSL for the production environment. Can anyone kindly help resolve this issue? Thank you
  15. Hi, We are capturing the following using repeater items using process wire admin interface for sending Event related instant SMS Venue Time Event name Once 'Submit' button is clicked we are replacing the above in our SMS template and are sending. Before that we would like to validate the character count of SMS content. We would like validate the character count of Venue+time+Event name. How can we do this using JavaScript. How can we insert custom .js file in ProcessWire admin side. How can we refer these repeater fields. Please help Thanks
  16. Hi, For a website we are using ProcessWire partially for some features. This will be available in a folder. Some other features will be available in Core PHP and they will be available in another folder. The structure will be as below Website ProcessWire (Sub folder - ProcessWire soure) admin (Sub folder - Core PHP source) We would like to allow the users who logged in to ProcessWire to access the other admin panel also without asking them to login again. How can we do this. Thanks
  17. Hi, We have 'Seminar_Schedule' repeater field in the template (One of the Admin Control Panel Page) Inside the 'Seminar_Schedule' repeater field (parent), we have 'SS_Datetime' repeater field. Inside the 'SS_Datetime' repeater field (child), We have 'SS_Startdatetime' and 'SS_Enddatetime' fields. How to do validation for 'SS_Startdatetime' and 'SS_Enddatetime' fields for below cases. 'SS_Startdatetime' should be lesser than to 'SS_Enddatetime' 'SS_Startdatetime' should not be equal to 'SS_Enddatetime' PFA and Suggest,
  18. Hi, We have 'Seminar_Schedule' repeater field in the template (One of the Admin Control Panel Page) Inside the 'Seminar_Schedule' repeater field, we have 'preview_sms_content' field and other fields. In this 'preview_sms_content' field (textarea) - How to add our SMS Content to this field dynamically. (Based on the values entered on the other input fields) How to display the characters count of SMS Content to this field dynamically. How to restrict to enter the characters manually.(How to make this field readonly) PFA and Suggest, Thank you
  19. Hi, We have 'Seminar_Schedule' repeater field in the template (One of the Admin Control Panel Page) Inside the 'Seminar_Schedule' repeater field (parent), we have 'SS_Datetime' repeater field. Inside the 'SS_Datetime' repeater field (child), We have 'SS_Startdatetime' and 'SS_Enddatetime' fields. How to do validation for 'SS_Startdatetime' and 'SS_Enddatetime' fields for below cases. Disallow creating duplicate items with the same date and time The 'SS_Startdatetime' value must not set within the range of existing items 'SS_Startdatetime' and 'SS_Enddatetime' fields. Similarly, The 'SS_Enddatetime' value must not fall within the range of existing items 'SS_Startdatetime' and 'SS_Enddatetime' fields.
  20. HI, In Seo Maestro Plugin - There is no provision to add twitter:url, twitter:title, twitter:description, twitter:image values.PFA Please suggest.
×
×
  • Create New...