Jump to content

randyj

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1,085 profile views

randyj's Achievements

Newbie

Newbie (2/6)

0

Reputation

  1. Hi Ryan, I'm getting closer I think. I set the field type to 'Page' on both my form and ProcessWire fields. I can now see the 'Category ID' in the form entries and limit entries that way. I still can't figure out how to get the entry to show up under the right 'Category'. Ex: I submitted a form entry called 'Green mat for sale' and put it under the Mats category. On my form entries page, I see that the 'Green mat for sale' entry is under category id #1018, which is correct. But I'm not sure how to have the entry be listed under the correct category. Thanks!
  2. Hi Macrura, Basically, I have a form that has a checkbox with 4 options (which are the 4 categories). When the user submits the form, I would like the entry to fall under the category that is checked. Right now, I set it up to automatically go into Employment category (screenshot attached). How would I make it so that the checkbox on the form determines which category the entry will fall under? The development site is located here: http://norbertslist.info/index/ Note: I manually moved the entries out of the Employment category.
  3. Thank you for your quick reply. ***EDIT 2*** Okay I got the entries to show in a category, but it's me manually setting the the 'Save to ProcessWire Pages'. I need to know how I can manually pull in entries based on checkbox field for each of the four subcategories. Thanks!
  4. Okay, I've edited submission.php file to this: $entries = $pages->get("/submissions/")->children(); <?php foreach ($entries as $entry) { ?> <p><?=$entry->name_1;?></p> <p><?=$entry->description_1;?></p> <? } ?> but on the website, it still outputs the following code: $entries = $pages->get("/submissions/")->children(); Also, sorry for straying further from the original question, but I've been rearranging some of my pages. I would like all entries to show on the submissions page, but have 4 categories in which these form entries can be inside. My question is, how would I dynamically set a form entry to fall under /submissions/{sub-category}? I have a form with checkboxes that require a user to choose one of the four sub categories. Thank you!
  5. Hi Reno, Thank you for your help. I now have the submissions page showing a listing of all the entries. However, when I click on an entry, I get the following error: Parse Error: syntax error, unexpected T_ENDFOREACH (line 8 of /home/norberts/public_html/index/site/templates/submissions.php) This error message was shown because you are logged in as a Superuser. Error has been logged. I used the following code in my submissions.php file: $entries = $pages->get("/submissions/")->children(); <!-- if ($entries->category == "Mats") echo "Turtle!";?> --> foreach ($entries as $entry) : ?> <p><?=$entry->name_1;?></p> <p><?=$entry->description_1;?></p> <? endforeach; ?> The commented line is just me testing the value of a checked box, but we can ignore that for now. I'm a newbie at PHP, so I was a bit confused with the code. Shouldn't there be an opening <? or <?php in front of the foreach loop? I tried that and I just get the following outputted: $entries = $pages->get("/submissions/")->children(); Also, I'm trying to show more fields on the current Submissions listing page. Currently, the only field being outputted is the Description field. In the screenshots attached, you can see the fields the form uses, and the available fields. Thank you for your help!
  6. I've set up the form which displays and takes entries. Now I am trying to get those entries be displayed on a separate page(s). One will be the individual entry itself, the other is a full listing of the entries. I've done the following: Enabled Save to ProcessWire Pages from the form settings page Clicked Send Checked to Pages How do I access the form entries that I allowed to be displayed? Under the form settings page, I set the Page Template field to basic-page. Screenshots are attached to show what I have done so far. Thanks in advance!
  7. Does this CMS: 1. Allow a user to submit an entry through a form on the website and have it automatically displayed on the website? It would work like Safecracker for Expression Engine. 2. Have the ability to automatically hide a form entry after X amount of days? I am planning on creating a listing of used merchandise that a visitor could view and submit his own products into. Thanks
×
×
  • Create New...