Jump to content

elvina

Members
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

elvina's Achievements

Newbie

Newbie (2/6)

1

Reputation

  1. Hi Table CSV Import / Export Version 2.0.17 (just updated) ProFields: Table 0.3.0 I wonder if I somehow am doing this wrong! I have used the csv import very successfuly with page creation, so I thought I was doing the same. I tried changing some settings in the table columns, and another row. example of what i have pasted into csv import box (which is the contents of the exported file) position and country are pages. position.title name email organisation country.title "Vice President" "FirstName Surname" name.surname@gmail.com UFRGS Brazil Settings as tab seperated. so with this one, I got the error Unknown Selector operator: '[empty]' -- was your selector value properly escaped? field='Vice', value='President', selector: 'Vice President'
  2. Hi I'm having problems importing to a csv with a page(select) in one column. Whatever I put in the correct column the title or name, I am getting an error that says I've tried pasting it in, and using a file. I've tried tab and comma delimited. I even tried filling in one row, adding it. Then I exported it as a csv and tried to import that file, and i get the same error. Is there anything specific I might have missed? its 5 columns, 2 of which are page(select) fields, the others are just plain text fields
  3. Hi, i'm a bit of a beginner, so wasn't sure how to update from a zip. I just replaced the old 'RockFrontend' folder and replaced it with the Dev one, is that correct? Is there anything else I need to do? Anyway, it works! thanks so much
  4. Hi Bernhard, I am using latte and wanted to use the 'webalize' filter. I get the error "Filter |webalize requires nette/utils package". What is the way to include it into RockFrontend? It seems useful! thanks
  5. OK, I had to fiddle with getting the right hooks. As the page is made before the title field is entered in the repeater. So this renames the repeater page with the field title and the year field of the original page holding the repeater. $wire->addHookBefore('Pages::save', function(HookEvent $event) { $page = $event->arguments(0); if($page->template->name == 'repeater_committee_section') { $title = $page->field_title; $year=date('Y', $page->getForpage()->starts); if (!empty($title)) { $page->name = $page->field_title . "-" . $year; } } });
  6. Hi, I have a repeater on a page. It is a committe with different sections, so I have each section as a repeating block containing another repeater with the members. eg. Block: title="Presidency", contains Ms J. Smith - President, Mr J. Brown - Treasurer etc Block: title="Executive Committee" contains other members. This all works fine, but when I edit in the front end, the Block editor comes up with my repeater field but says "editing block 21245454354" and opens saying "editing page 21245454354". I can see these are the page titles in the admin, but is there a way to have these pages named as the title of that block? thanks
  7. Thank you! and this version has fixed the problem I was having before you updated! My frontendlogin using a latte template was not getting redirected on login, it got stuck with the "please be patient...", but now it works all fine.
  8. Hi, I just updated to the latest version (2.1.73) and now I get an error when using FrontendLoginRegister. My login page now gets error Oh snizzle… Error: Exception: Method Link::useAriaAttributes does not exist or is not callable in this context (in wire/core/Wire.php line 563) #0 wire/core/Wire.php (419): Wire->___callUnknown('useAriaAttribut...', Array) #1 wire/core/WireHooks.php (968): Wire->_callMethod('___callUnknown', Array) #2 wire/core/Wire.php (484): WireHooks->runHooks(Object(FrontendForms\Link), 'callUnknown', Array) #3 wire/core/Wire.php (487): Wire->__call('callUnknown', Array) #4 site/modules/FrontendForms/Formelements/Form.php (2178): Wire->__call('useAriaAttribut...', Array) #5 site/modules/FrontendLoginRegister/pages/LoginPage.php (570): FrontendForms\Form->render() #6 site/modules/FrontendLoginRegister/pages/LoginPage.php (896): FrontendLoginRegister\LoginPage->render() #7 site/templates/fl_loginpage.php (10): FrontendLoginRegister\LoginPage->__toString() was there something to turn this option off?
×
×
  • Create New...