-
Posts
360 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Mats
-
Stackoverflow http://stackoverflow.com/questions/7471830/google-maps-api-v3-weird-ui-display-glitches-with-screenshot
-
The zoom controls doesn't work because of the css. Try this: #map_canvas_id img { max-width: none; }
-
I tried to check if there was any output but i guess i must have done something wrong. I'll look at it again, thanks Soma!
-
Is there a way of checking if the module finds any items to display in the navigation? What i would like to do is check if there are any navigation items found, if so show a link to the submenu further down the page (on mobile), if not don't display the link. Solved it with javascript instead.
-
@awebcreature I have modified the MapMarker module so you can add a polyline (both admin and front-end). You can download it here: https://github.com/madebymats/FieldtypeMapMarkerDraw Please note that you should not use the module in production, but may give you an idea how to build the functionality you needed.
-
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!