-
Posts
355 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Mats
-
I made a Leaflet version of this module: https://github.com/madebymats/FieldtypeLeafletMapMarker- Front-end demo: http://tegelwebb.se/leaflet-map-test/
-
Working! Thanks Pete!
-
Sorry Pete, the issue persist.
-
Great idea, Pete! Unfortunately i get: Unable to complete this request due to an error. Error has been logged. When creating a profile.
-
How to manage many child pages in admin?
Mats replied to Peter Verkooijen's topic in Getting Started
Hi Peter! The pages tree in the admin becomes paginated after 50 pages or more unless you change the default setting. You can also use the lister to search/filter pages on template/parent/what ever. On the front end it's entirely up to you how you would like to display the pages/list of pages. EDIT: I see you changed your question, so this answer might seem a bit off topic. -
Check out Ryans answer beginning with Actually, you can do this (on mobile so i can't see the post id): https://processwire.com/talk/topic/4323-field-dependencies/page-6
-
How to manage many child pages in admin?
Mats replied to Peter Verkooijen's topic in Getting Started
Welcome to the forums! The child pages becomes paginated. Default is 50 pages before pagination. You can change it under Modules Page List. -
Hera are two links via sidebar: https://cdnify.com/discover/web-performance-guide http://www.luster.io/blog/9-29-14-mobile-web-checklist.html
-
Try changing the collation in PHPMyAdmin for the fields you wan't to search (or all for that matter). SO link
-
What is the last (or first) child in physical order?
Mats replied to opalepatrick's topic in API & Templates
Or you could use: $pages->findOne($selector) -
Textpattern has a nice plugin based on this code. Would love to see the same functionality in PW. I tried to make this in to a PW module but didn't come far.
-
Very nice! Perhaps some easing on the logo animation: .header__logo.header__logo--desktop {display: none;transition: all ease-in-out .3s;}
-
I never encountered this problem with FormBuilder. Does the characters work when sending mails not using FormBuilder? Could be mail client not encoding the mail properly.
-
Missing slash? mysite.com/myurlsegment/
-
Comments moderated in the comments manager seems to be changing status from approved to awaiting moderation when saving pages. Opened issue on Github.
-
I wanted to try and create a module, but of course one could use AdminCustomFiles instead. Thanks for creating it btw, learned a lot from it.
-
The module adds fastclick.js and TouchPunch to the admin. Fastclick makes clicks on touch devices faster. Touch Punch adds drag and drop ability for jqueryUI on touch devices. https://github.com/madebymats/Admintouch
-
Adding javascript files to all admin pages (for touch devices)
Mats replied to Mats's topic in Module/Plugin Development
Thanks, LostKobraKai! -
Use shopping cart with existing Processwire website (prestashop)
Mats replied to bearclaw's topic in Getting Started
I'm using simplecart.js with PW for this site: http://stellankramer.se/produkter/starkare-drycker/loch-lomond-highland-single-malt/ Really easy to set up. Don't know how secure the checkout is. Only using it for sending the customer to Systembolaget.- 9 replies
-
- E-commerce
- commerce
- (and 4 more)
-
Search filters and options for the Page FieldType
Mats replied to landitus's topic in Wishlist & Roadmap
+1 for search. -
Great website and portfolio!
-
Multiple maps showing the same area within repeater
Mats replied to melissa_boyle's topic in Getting Started
You're welcome! Glad you got it working! -
Multiple maps showing the same area within repeater
Mats replied to melissa_boyle's topic in Getting Started
<?php foreach($page->maps_left as $maps_left){ echo "<div class='location_box {$maps_left->left_or_right}'>"; echo "<h1>$maps_left->map_left_title</h1>"; echo "<p>{$maps_left->google_maps_left}</p><hr>"; echo $map->render($maps_left, 'google_maps_left'); echo "</div>"; } ?> Try changing map to google_maps_left.