pamtbaau Legend
Grav Forum Moderators
@pamtbaau · Joined 8 years ago · 3198 posts · 17 topics · 1020 reputation
Badges
Recent posts
-
Disabling git-sync when developing
· 5 years ago
@nolan, Running help shows there is an --env parameter. So, it seems you should be able to start Grav using a different environment. $ bin/grav scheduler --help Description: Run the Grav Scheduler.
-
Is there a way to store all emails sent?
· 5 years ago
@ozfiddler, Unfortunately I don’t have access to command line. I'm afraid the Admin route won't help. You can't create a plugin from within Admin. Even if you could, how would you then edit the PHP
-
Is there a way to store all emails sent?
· 5 years ago
@ozfiddler, Try: $ bin/gpm install devtools $ bin/plugin devtools new-plugin This will setup a basic functional plugin, which is approx. 75% of the code needed...
-
Is there a way to store all emails sent?
· 5 years ago
@ozfiddler, If you take a quick look at the code of the Email plugin, you can see there are 2 options when creating a custom plugin: Add event handler for event 'onFormProcessed' and, like the Email
-
Disabling git-sync when developing
· 5 years ago
@nolan, Never worked with Git-Sync, but wouldn't it work if you disable the plugin on localhost and manually push changes to Github? I guess that after pushing, a Github webhook will then trigger your
-
Readme Won't Let Me Unpublish
· 5 years ago
@farnsco, The first few lines of the last error are quite informative. The error is thrown by vendor/autoload.php when called by plugin 'Presentation' in presentation.php line 70. I don't think this
-
Agency Theme - change menu font color
· 5 years ago
@SportStau, The pipeline was not the issue, because earlier this morning, I saw custom.css and its css being loaded in my browser. Maybe your browser hasn't refreshed back then? When working on html
-
Agency Theme - change menu font color
· 5 years ago
@SportStau, Does the CSS file have to be compiled? No, css is what is understood by the browser. Only scss, sass and less files need to be compiled into css. I’ve inherited a job and I’m supposed
-
Fatal error - Unintelligible message
· 5 years ago
@ToTechBase If you upgraded from Grav 1.6.x to Grav 1.7.x you might experience Yaml compatibility issues. Grav 1.7.x is more strict. See Upgrade Guide Most Common Issues point 2. According the error,
-
Agency Theme - change menu font color
· 5 years ago
@SportStau, In that case, you can create file /user/themes/efbornheim/css/custom.css and add your css in that file.