Marty Walker
Members-
Posts
631 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Marty Walker
-
There's a few usage example the author added to Codepen. They might come in handy for you: http://codepen.io/collection/nLcqo/
-
I think that's been the case for quite some time. If you're after an alternative there are plenty of lightboxes around. I've used Magnific popup (which is used in the PW admin) recently and that's been ok: http://dimsemenov.com/plugins/magnific-popup/
-
Thanks for the reply. My people will probably want to copy/paste the examples.
-
Hello, I want to use the field description to explain the usage of some markdown syntax. How do I stop it rendering the markdown I'm entering? I've tried wrapping the lines in <pre><code> but it doesn't seem to work. -Marty
-
Use shopping cart with existing Processwire website (prestashop)
Marty Walker replied to bearclaw's topic in Getting Started
If you're after something that uses stripe there's snipcart.com. Used here: http://www.otoshimono.org/shop/- 9 replies
-
- E-commerce
- commerce
- (and 4 more)
-
Hi, I've got a problem with trying to edit a hanna code. I can see the list of codes I've setup and I can create a new one but I'm not able to edit it after I've created it. I had this problem with the final 2.4 release but I thought an update to the most recent dev build (2.4.7) might fix it but, no. There's no browser errors at all. Reinstalled it, still no. My server setup is: PHP 5.4.25 & MySQL 5.1.73-cll Any thoughts?
-
It's not working (for me) if I install it through the Modules tab but does if I download it from github and install it manually. Running 2.4.5 locally.
-
This has been asked for/mentioned/requested here a few times. I think all it will take to produce is someone with the money and/or skills to put it together. It'd be me if had either of those two
-
Forklift is very snappy compared to both the Finder and PathFinder (which is really clunky for me). It might be a keeper.
-
Never mind. Double-click on the second tab and they merge.
-
Great list Adrian. I use some of these but I've not heard of others. In xtrafinder how do you get the dual-pane tab? For the life of me I can't seem to do it. I just get two windows. :/
-
Go on then! Currently I'd use Batcher or CSV Import to do that. You way sounds much quicker.
-
New kid in class with "is this the CMS for me?" questions...
Marty Walker replied to PhotoWebMax's topic in Getting Started
@PhotoWebMax Short-answer, yes indeedy. I'm going to reference my own (very basic) photography site as an example - there are plenty of others in the gallery too. I'll probably redo it at some point to suit what I'm doing - less structure and more style categories. You can, of course, structure it how you like. There's plenty of people here to help and guide you. Looking forward to seeing what you come up with. -
Yay! This 1-step adding of pages makes complete sense to me and it's a nice addition. I've been given a few confused looks from clients when I show them the "two-step". In 99.9% of cases when my lot add a page the URL is going to match the title.
-
Adrian, That'd be very useful if it could be made to be a option in the settings. I've often wanted/needed to use thumbnails elsewhere.
-
Does anyone why I'm getting this erro? I'm saving a page that has a markdown field. If I change anything in that field I get this: SQLSTATE[42000]: Syntax error or access violation: 1066 Not unique table/alias: 'rootparent' The only thing that I can think of is I'm embedding some twitter markup which looks like: <blockquote class="twitter-tweet" lang="en"><p>texthere</p>— Jeff Selser (@jeffselser) <a href="https://twitter.com/">March 8, 2014</a></blockquote> <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> I even have Content Type set to unknown. If I remove that script line it works ok but I would like to have the twitter styling.
-
I'd just like to register some interest in getting markItUp! (or something similar that supports an interactive way for clients to use either textile or markdown) wrapped up as an inputfield. Perhaps those of us interested can pitch in a few bucks to get this happening?
-
I got this from the forum here (probably Ryan) which might help. <? $showForm = true; $email = $sanitizer->email($input->post->email); if($email) { $u = $users->get("email=$email"); if($u->id) { // generate a random, temporary password $pass = ''; $chars = 'abcdefghjkmnopqrstuvwxyz23456789'; // add more as you see fit $length = mt_rand(9,12); // password between 9 and 12 characters for($n = 0; $n < $length; $n++) $pass .= $chars[mt_rand(0, strlen($chars)-1)]; $u->of(false); $u->tmp_pass = $pass; // populate a temporary pass to their profile $u->save(); $u->of(true); $message = "Your new password on the blah blah web site is: $pass\n"; //$message .= "Please change it after you login."; mail($u->email, "Password reset", $message, "From: noreply@{$config->httpHost}"); $page->body = "<p>An email has been dispatched to you with further instructions.</p>"; $showForm = false; } else { $page->body = "<p>Sorry, account doesn't exist or doesn't have an email.</p>"; } } if($showForm) $page->body .= " <h2>Reset your password</h2> <form action='./' method='post'> <label>E-Mail <input type='email' name='email'></label> <input type='submit' value='Submit'> <p class='spam-check'>Please check your spam folder in case this email doesn't appear within 10 minutes.</p> </form> "; // include the main HTML/markup template that outputs at least $page->body in an HTML document echo $page->body; ?>
- 7 replies
-
- 1
-
- Forgotten Password
- Reset Password
-
(and 2 more)
Tagged with:
-
Thanks for the SimpleXML pointers. I'll give that a shot. Nico, I haven't got the go ahead yet so I'm in no rush for the moment.
-
I've got a wee job I will probably need some help with if the client goes ahead with it. I have an XML export of a hosted wordpress.com site (just posts, not pages and they don't let you have an sql file) I need moved into a PW blog tree. I technically know nothing about XML (and I'm not copy/pasting) so I'd appreciate some help with it. Cheers martin [at] smd.net.au
-
Best way to "sync" localdev and liveserver database?!
Marty Walker replied to OrganizedFellow's topic in Pub
I've seen it mentioned here before. I'll give it go. -
Best way to "sync" localdev and liveserver database?!
Marty Walker replied to OrganizedFellow's topic in Pub
Smarter people than me would have some git hook worked out. As I don't really use git (because I work alone [sniff]) although I am trying to learn the thing. I upload the db manually via phpmyadmin and my site files via ftp. If it's just me I can't see the point of uploading to a git repo then paying for a service to deploy it. If I was working with others on coding a site git would be the go for sure. -
Welcome. Wasn't 'Guru Meditation' the old Amiga's blue screen of death?
-
Happy yet demanding I can't wait to test this update. This Replace feature has me thinking (which I'll test soon). I know it's probably outside of the scope of what you're doing but how difficult would it be to periodically replace a page tree from one site to another? I'm thinking in terms of a site sharing a blog or news section. I know I could use Pages Web Service to show post lists but I'm thinking of shifting entire posts between sites regularly.
-
And for those of us in need of a JSON to CSV convertor: http://konklone.io/json/