developer resources
Codebales holds an ever growing number of solutions to problems that we have experienced in our day to day code writing
Selected filter
41
results
Andrew Fletcher
•
In this article, I'll show you how to manage an Acy Mailing 5 subscription list.
Access to Acy Mailing 5
This is screen accessible via the administration area: Select Components → Acy Mailing 5 → Lists from the drop-down menus.
Newsletter lists
Presently there are six (6) list items:
Annie only;
Newsletters 2021;
Current Members Only;
Playing Groups and Tee Times;
Lapsed; and
Peter Only.
From this list the book-end items (Annie only and Peter...
Andrew Fletcher
•
In this article, I'll show you how to edit an existing member's...
Andrew Fletcher
•
In this article, I'll show you how to review a newsletter's statistics for...
Andrew Fletcher
•
In this article, you will learn how to send a newsletter using Acy...
Andrew Fletcher
•
In this article, I'll show you how to edit an unsent Acy Mailing 5...
Andrew Fletcher
•
Working in Laravel, I needed to loop through an array and know whether the current loop was odd or even row. To do this add the expression to your Twig file:
{% set direction = loop.index0 is odd ? 'left' : 'right' %}In the call above, the variable direction is set to either left or right depending on the value of the position of the loop row (loop.index0). I then used the left or right value in a div class adding to a series of tailwind css definitions. Such...
Andrew Fletcher
•
Setting up the mail configuration in October CMS is a quick progress....
Andrew Fletcher
•
Common commands
Themes and plugins have similar command lines. So rather...
Andrew Fletcher
•
At times while developing in October CMS, you will perform a step that kills the...
Andrew Fletcher
•
Using October CMS to migrate your site and update the tables with the plugins...
Andrew Fletcher
•
While I have posted an article about how to POST an image using REST in Drupal 8... the journey there can be slow. Crawling through the errors to eventually spot the missing link. For me the how to is as important as the solution.
On the journey I did receive the following 404 Not Found error:
GuzzleHttp\Exception\ClientException: Client error: `GET https://yourdomain.com/sites/default/files/pictures/imagename01.jpg` resulted in a `404 Not Found` response: <!DOCTYPE...