Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
User Folder in Git Repo
· 10 years ago
I would think the only folders you'd want are user/themes and user/pages. Config would be nice, but it can contain sensitive info. Ignore everything else. Alternatively, create two repositories, one f
-
User Folder in Git Repo
· 10 years ago
Hi all! I'm just starting up a grav blog and was wondering the best way to use git with grav. I've created the basics of a custom theme, added the admin plugin, added a user, etc locally. I'm going to
-
Manual order page collection in Admin Panel
· 10 years ago
Ah, ok, wonderful. Thanks for the quick reply.
-
Manual order page collection in Admin Panel
· 10 years ago
It is currently broken. We'll get this fixed soon: https://github.com/getgrav/grav-plugin-admin/issues/786
-
Manual order page collection in Admin Panel
· 10 years ago
Is it possible to manually order individual pages within a page collection from the Admin Panel. I know I can do this by changing the numerical prefix of the folder names on my computer or server, but
-
Javascript deleting $_POST data - form results will not render
· 10 years ago
I'm guessing some implementation of find and the order id or form-nonce while iterating through those files and matching to grav.user would work. I am planning to use my new session variable and/or th
-
Javascript deleting $_POST data - form results will not render
· 10 years ago
Glad you got it figured out. At some point you'll want to store purchase information to allow users to re-retrieve already purchased information and other functions. Grav can handle flat YAML files as
-
Javascript deleting $_POST data - form results will not render
· 10 years ago
I got this working for anyone else trying to achieve something similar. Here are the steps that worked for me: 1) Create a plugin with the onTwigSiteVariables event registered 2) Create a twig accessi
-
Javascript deleting $_POST data - form results will not render
· 10 years ago
PHP is beauty, PHP is elegance, PHP is all. From your description, @aeskew, it sounds like a couple of approaches might work: Take Input, perform calculations, store an identifier through SnipCart, s
-
Javascript deleting $_POST data - form results will not render
· 10 years ago
Getting $POST into a session variable was actually really easy, now I just need to assign that back to $POST so that the form results render. I'm not sure where to start on this...