Error 500 Internal Server Error

GET https://dev.jamjarprint.co.uk/3D-form

Forwarded to ErrorController (d2bd9c)

Exceptions

Impossible to access a key ("customer_add1") on a null variable.

Exception

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#254
  -lineno: 16
  -name: "@ops_frontend_bundle/blocks/threeform.html.twig"
  -rawMessage: "Impossible to access a key ("customer_add1") on a null variable."
  -sourcePath: "/home/jamjarprint/public_html/opsfrontendbundle/OpsFrontendBundle/src/templates/blocks/threeform.html.twig"
  -sourceCode: """
    <html>\n
    <head>\n
        <title>3-D Secure helper page</title>\n
    </head>\n
    <body OnLoad="OnLoadEvent();">\n
    This page should forward you to your own card issuer for identification. If your\n
    browser does not start loading the page, press the Submit button. <br/>\n
    After you successfully identify yourself you will be sent back to this website,\n
    where the payment process will continue.<br/>\n
    <form action="{{ url }}" method=POST name="theForm">\n
        <input type="hidden" name="instId" value="{{ installationId }}"> <!-- A mandatory parameter -->\n
        <input type="hidden" name="cartId" value="{{ token }}"> <!-- A mandatory parameter - reference for the item purchased -->\n
        <input type="hidden" name="amount" value="{{ total }}"> <!-- A mandatory parameter -->\n
        <input type="hidden" name="currency" value="GBP">\n
        <!-- The below parameters are all optional in this submission, but some become mandatory on the payment page -->\n
        <input type="hidden" name="address1" value="{{ paymentDetails['customer_add1'] }}">\n
        <input type="hidden" name="address2" value="{{ paymentDetails['customer_add2'] }}">\n
        <input type="hidden" name="address3" value="{{ paymentDetails['customer_add3'] }}">\n
        <input type="hidden" name="town" value="{{ paymentDetails['customer_city'] }}">\n
        <input type="hidden" name="region" value="{{ paymentDetails['customer_county'] }}">\n
        <input type="hidden" name="postcode" value="{{ paymentDetails['customer_postcode'] }}">\n
        <input type="hidden" name="country" value="{{ paymentDetails['customer_countrycode'] }}">\n
        <input type="hidden" name="desc" value="{{ customerid }}">\n
        <input type="hidden" name="name" value="{{ paymentDetails['customer_firstname'] }} {{ paymentDetails['customer_lastname']  }}"> <!-- Accepts test values to simulate transaction outcome-->\n
        <input type="hidden" name="email" value="{{ paymentDetails['customer_email']}}">\n
        <input type="hidden" name="MC_token" value="{{ token }}">\n
        <input type="hidden" name="MC_customerid" value="{{ customerid }}">\n
        <input type="hidden" name="signature" value="{{ signature }}">\n
        <input type="hidden" name="authValidTo" value="{{ authvalidto }}">\n
        <input type="submit" name="Identify yourself" />\n
    </form>\n
    <script language="Javascript">\n
        <!--\n
        function OnLoadEvent()\n
        {\n
            document.theForm.submit();\n
        }\n
        // -->\n
    </script>\n
    </body>\n
    </html>
    """
}
  1.     <input type="hidden" name="instId" value="{{ installationId }}"> <!-- A mandatory parameter -->
  2.     <input type="hidden" name="cartId" value="{{ token }}"> <!-- A mandatory parameter - reference for the item purchased -->
  3.     <input type="hidden" name="amount" value="{{ total }}"> <!-- A mandatory parameter -->
  4.     <input type="hidden" name="currency" value="GBP">
  5.     <!-- The below parameters are all optional in this submission, but some become mandatory on the payment page -->
  6.     <input type="hidden" name="address1" value="{{ paymentDetails['customer_add1'] }}">
  7.     <input type="hidden" name="address2" value="{{ paymentDetails['customer_add2'] }}">
  8.     <input type="hidden" name="address3" value="{{ paymentDetails['customer_add3'] }}">
  9.     <input type="hidden" name="town" value="{{ paymentDetails['customer_city'] }}">
  10.     <input type="hidden" name="region" value="{{ paymentDetails['customer_county'] }}">
  11.     <input type="hidden" name="postcode" value="{{ paymentDetails['customer_postcode'] }}">
  1.         echo "\"> <!-- A mandatory parameter -->
  2.     <input type=\"hidden\" name=\"currency\" value=\"GBP\">
  3.     <!-- The below parameters are all optional in this submission, but some become mandatory on the payment page -->
  4.     <input type=\"hidden\" name=\"address1\" value=\"";
  5.         // line 16
  6.         echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["paymentDetails"]) || array_key_exists("paymentDetails"$context) ? $context["paymentDetails"] : (function () { throw new RuntimeError('Variable "paymentDetails" does not exist.'16$this->source); })()), "customer_add1", [], "array"falsefalsefalse16), "html"nulltrue);
  7.         echo "\">
  8.     <input type=\"hidden\" name=\"address2\" value=\"";
  9.         // line 17
  10.         echo twig_escape_filter($this->envtwig_get_attribute($this->env$this->source, (isset($context["paymentDetails"]) || array_key_exists("paymentDetails"$context) ? $context["paymentDetails"] : (function () { throw new RuntimeError('Variable "paymentDetails" does not exist.'17$this->source); })()), "customer_add2", [], "array"falsefalsefalse17), "html"nulltrue);
  11.         echo "\">
in vendor/twig/twig/src/Template.php -> doDisplay (line 394)
  1.     }
  2.     protected function displayWithErrorHandling(array $context, array $blocks = [])
  3.     {
  4.         try {
  5.             $this->doDisplay($context$blocks);
  6.         } catch (Error $e) {
  7.             if (!$e->getSourceContext()) {
  8.                 $e->setSourceContext($this->getSourceContext());
  9.             }
in vendor/twig/twig/src/Template.php -> displayWithErrorHandling (line 367)
  1.         return $this->blocks;
  2.     }
  3.     public function display(array $context, array $blocks = [])
  4.     {
  5.         $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks$blocks));
  6.     }
  7.     public function render(array $context)
  8.     {
  9.         $level ob_get_level();
in vendor/twig/twig/src/Template.php -> display (line 379)
  1.             ob_start();
  2.         } else {
  3.             ob_start(function () { return ''; });
  4.         }
  5.         try {
  6.             $this->display($context);
  7.         } catch (\Throwable $e) {
  8.             while (ob_get_level() > $level) {
  9.                 ob_end_clean();
  10.             }
  1.         $this->template $template;
  2.     }
  3.     public function render(array $context = []): string
  4.     {
  5.         return $this->template->render($context);
  6.     }
  7.     public function display(array $context = [])
  8.     {
  9.         // using func_get_args() allows to not expose the blocks argument
  1.      * @throws SyntaxError  When an error occurred during compilation
  2.      * @throws RuntimeError When an error occurred during rendering
  3.      */
  4.     public function render($name, array $context = []): string
  5.     {
  6.         return $this->load($name)->render($context);
  7.     }
  8.     /**
  9.      * Displays a template.
  10.      *
  1.         if (null !== $block) {
  2.             return $this->container->get('twig')->load($view)->renderBlock($block$parameters);
  3.         }
  4.         return $this->container->get('twig')->render($view$parameters);
  5.     }
  6.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  7.     {
  8.         $content $this->doRenderView($view$block$parameters$method);
  1.         return $this->container->get('twig')->render($view$parameters);
  2.     }
  3.     private function doRender(string $view, ?string $block, array $parameters, ?Response $responsestring $method): Response
  4.     {
  5.         $content $this->doRenderView($view$block$parameters$method);
  6.         $response ??= new Response();
  7.         if (200 === $response->getStatusCode()) {
  8.             foreach ($parameters as $v) {
  9.                 if ($v instanceof FormInterface && $v->isSubmitted() && !$v->isValid()) {
  1.      * If an invalid form is found in the list of parameters, a 422 status code is returned.
  2.      * Forms found in parameters are auto-cast to form views.
  3.      */
  4.     protected function render(string $view, array $parameters = [], Response $response null): Response
  5.     {
  6.         return $this->doRender($viewnull$parameters$response__FUNCTION__);
  7.     }
  8.     /**
  9.      * Renders a block in a view.
  10.      *
AbstractController->render('@ops_frontend_bundle/blocks/threeform.html.twig', array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null)) in opsfrontendbundle/OpsFrontendBundle/src/Controller/BasketController.php (line 1463)
  1.         $mdstring $api->getFrontendSettings('worldpay_mdstring').':'.$installationId.':'.$total.':GBP:'.$token.':'.$token.':'.$customerid;
  2.         $signature md5($mdstring);
  3.         $authvalidto strtotime("+15 minutes")*1000;
  4.         return $this->render('@ops_frontend_bundle/blocks/threeform.html.twig',array('token' => $token'paymentDetails' => $paymentDetails'total' => $total,'merchantCode'=>$merchantCode,'password'=>$password,'url'=>$url,'installationId'=>$installationId,'signature'=>$signature,'authvalidto'=>$authvalidto,'customerid'=>$customerid));
  5.     }
  6.     /**
  7.      * @throws GuzzleException
  8.      * @throws FilesystemException
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/home/jamjarprint/public_html/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 14:18:36 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "40af6e"
    },
    "request_uri": "https://dev.jamjarprint.co.uk/_profiler/40af6e?panel=exception&type=request",
    "method": "GET"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Ops\OpsFrontendBundle\Services\SessionIdleHandler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Ops\\OpsFrontendBundle\\Services\\SessionIdleHandler::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Ops\OpsFrontendBundle\Services\TwigGlobalsExtension::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Ops\\OpsFrontendBundle\\Services\\TwigGlobalsExtension::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Ops\OpsFrontendBundle\Services\SessionIdleHandler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Ops\\OpsFrontendBundle\\Services\\SessionIdleHandler::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Ops\OpsFrontendBundle\Services\TwigGlobalsExtension::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Ops\\OpsFrontendBundle\\Services\\TwigGlobalsExtension::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Ops\OpsFrontendBundle\Services\SessionIdleHandler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Ops\\OpsFrontendBundle\\Services\\SessionIdleHandler::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Ops\OpsFrontendBundle\Services\TwigGlobalsExtension::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Ops\\OpsFrontendBundle\\Services\\TwigGlobalsExtension::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SurrogateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SurrogateListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 14:18:36 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 14:18:36 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.request" to listener "Ops\OpsFrontendBundle\Services\SessionIdleHandler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Ops\\OpsFrontendBundle\\Services\\SessionIdleHandler::onKernelRequest"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Ops\OpsFrontendBundle\Services\TwigGlobalsExtension::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Ops\\OpsFrontendBundle\\Services\\TwigGlobalsExtension::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 14:18:36 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Trace

RuntimeError
Twig\Error\RuntimeError:
Impossible to access a key ("customer_add1") on a null variable.

  at opsfrontendbundle/OpsFrontendBundle/src/templates/blocks/threeform.html.twig:16
  at twig_get_attribute(object(Environment), object(Source), null, 'customer_add1', array(), 'array', false, false, false, 16)
     (var/cache/dev/twig/e4/e4ad1ff827826d2e181a336fcc5be9bc.php:72)
  at __TwigTemplate_9e45c41fa53478c16d44a3188d42f9a8->doDisplay(array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null, 'app' => object(AppVariable), 'company' => 'jamjar', 'cdn_domain' => 'https://ops.jamjarprint.co.uk', 'api_domain' => 'https://print-ops.com', 'google_maps_key' => 'AIzaSyC_R7ekthtQ0Xa8u0orlv9ugiS79a3Qf_w', 'company_name' => 'JamJar Print', 'siteMenu' => array(array('menu' => 'Print', 'active' => 1, 'menuid' => 1, 'headings' => array(array('headingid' => 24, 'friendlyurl' => 'business-cards', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Business Cards', 'pages' => array(array('pageid' => 143, 'visibility' => 1, 'pagenavname' => '350gsm Pulp', 'friendlyurl' => 'printing/pulp-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 160, 'pageid' => 143, 'image' => '5b179bc84d76b.jpg', 'imageflag' => '1'))), array('pageid' => 46, 'visibility' => 1, 'pagenavname' => '400gsm Matt Laminated', 'friendlyurl' => 'printing/business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 130, 'pageid' => 46, 'image' => '5b179bd2ca655.jpg', 'imageflag' => '1'))), array('pageid' => 136, 'visibility' => 1, 'pagenavname' => '400gsm Foiled Matt Laminated', 'friendlyurl' => 'printing/foiled-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 158, 'pageid' => 136, 'image' => '5b179be016a10.jpg', 'imageflag' => '1'))), array('pageid' => 139, 'visibility' => 1, 'pagenavname' => '400gsm Spot UV Matt Laminated', 'friendlyurl' => 'printing/spot-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 159, 'pageid' => 139, 'image' => '5a37f4368d1f6.png', 'imageflag' => '1'))), array('pageid' => 144, 'visibility' => 0, 'pagenavname' => '400gsm Gloss Flood UV', 'friendlyurl' => 'printing/gloss-flood-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 161, 'pageid' => 144, 'image' => 'JamJar_Business_Card4.jpg', 'imageflag' => '1'))), array('pageid' => 48, 'visibility' => 1, 'pagenavname' => '400gsm Shaped Matt Laminated', 'friendlyurl' => 'printing/shaped-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 132, 'pageid' => 48, 'image' => '5a37f53b12013.jpg', 'imageflag' => '1'))), array('pageid' => 224, 'visibility' => 1, 'pagenavname' => 'Showcase Business Cards', 'friendlyurl' => 'printing/showcase-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 190, 'pageid' => 224, 'image' => '5baa5ff702c62.jpg', 'imageflag' => '1'))), array('pageid' => 235, 'visibility' => 1, 'pagenavname' => '600gsm Soft Touch Laminated Business Cards', 'friendlyurl' => 'printing/600gsm-soft-touch-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 329, 'pageid' => 235, 'image' => '5afaf052aee49.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 131, 'visibility' => 1, 'pagenavname' => '600gsm Matt Laminated', 'friendlyurl' => 'printing/600gsm-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 328, 'pageid' => 131, 'image' => '5b179be9f20a0.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 153, 'visibility' => 1, 'pagenavname' => '600gsm Spot UV Matt Laminated', 'friendlyurl' => 'printing/600gsm-spot-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 165, 'pageid' => 153, 'image' => '5a37f44a742df.png', 'imageflag' => '1'))), array('pageid' => 244, 'visibility' => 1, 'pagenavname' => '600 Micron Uncoated', 'friendlyurl' => 'printing/600micron-uncoated-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 200, 'pageid' => 244, 'image' => '57a06ac984575.jpg', 'imageflag' => '1'))), array('pageid' => 245, 'visibility' => 1, 'pagenavname' => 'Scodix Sense', 'friendlyurl' => 'printing/scodix-sense-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 201, 'pageid' => 245, 'image' => '57eb94f6b41bd.jpg', 'imageflag' => '1'))), array('pageid' => 246, 'visibility' => 1, 'pagenavname' => 'Scodix Foil', 'friendlyurl' => 'printing/scodix-foil-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 202, 'pageid' => 246, 'image' => '57eb9731f0e8b.jpg', 'imageflag' => '1'))), array('pageid' => 247, 'visibility' => 1, 'pagenavname' => 'Scodix Hi-Build', 'friendlyurl' => 'printing/scodix-hi-build-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 203, 'pageid' => 247, 'image' => '57eb973a87bd4.jpg', 'imageflag' => '1'))), array('pageid' => 262, 'visibility' => 1, 'pagenavname' => 'Edge Painted Business Cards (600gsm Matt Lam)', 'friendlyurl' => 'printing/edge-painted-business-cards-laminated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 217, 'pageid' => 262, 'image' => '59a517638c028.jpg', 'imageflag' => '1'))), array('pageid' => 263, 'visibility' => 0, 'pagenavname' => 'Edge Painted Business Cards (600 Micron Uncoated)', 'friendlyurl' => 'printing/edge-painted-business-cards-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 218, 'pageid' => 263, 'image' => '59a51e9bbf3a6.jpg', 'imageflag' => '1'))), array('pageid' => 265, 'visibility' => 1, 'pagenavname' => 'White Ink Business Cards', 'friendlyurl' => 'printing/white-ink-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 220, 'pageid' => 265, 'image' => '5a1fe0b703687.jpg', 'imageflag' => '1'))), array('pageid' => 282, 'visibility' => 1, 'pagenavname' => 'Repurposed Business Cards', 'friendlyurl' => 'printing/repurposed-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 237, 'pageid' => 282, 'image' => '5dde9601ea88b.gif', 'imageflag' => '1'))), array('pageid' => 289, 'visibility' => 1, 'pagenavname' => 'Rounded Corners Business Cards', 'friendlyurl' => 'printing/roundedcorners-businesscards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 244, 'pageid' => 289, 'image' => '5e5f71a9d4d9a.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5a37f707dbaa2.jpg'), array('headingid' => 75, 'friendlyurl' => 'wall-planners', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Wall Planners', 'pages' => array(), 'users' => array(), 'image' => 'no'), array('headingid' => 74, 'friendlyurl' => 'wall-calendars', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Wall Calendars', 'pages' => array(), 'users' => array(), 'image' => 'no'), array('headingid' => 76, 'friendlyurl' => 'promo-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Promo Products (Not Visible)', 'pages' => array(array('pageid' => 194, 'visibility' => 0, 'pagenavname' => 'Free Services', 'friendlyurl' => 'printing/free-services', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array())), 'users' => array(), 'image' => 'no'), array('headingid' => 78, 'friendlyurl' => 'davies-turner', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Davies Turner', 'pages' => array(array('pageid' => 264, 'visibility' => 2, 'pagenavname' => 'DT Business Cards', 'friendlyurl' => 'printing/davies-turner-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 219, 'pageid' => 264, 'image' => '59c36c9114374.jpg', 'imageflag' => '1'))), array('pageid' => 266, 'visibility' => 2, 'pagenavname' => 'Oversized Presentation Folder', 'friendlyurl' => 'printing/davies-turner-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 221, 'pageid' => 266, 'image' => '59d35b0aa607a.jpg', 'imageflag' => '1'))), array('pageid' => 267, 'visibility' => 2, 'pagenavname' => 'Davies Turner Brochures', 'friendlyurl' => 'printing/davies-turner-brochures', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 222, 'pageid' => 267, 'image' => '59d35b137af48.jpg', 'imageflag' => '1'))), array('pageid' => 288, 'visibility' => 2, 'pagenavname' => 'DT Comp Slips', 'friendlyurl' => 'printing/davies-turner-comp-slips', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 243, 'pageid' => 288, 'image' => '5e4d45d14d01f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '59d34df21121c.jpg'), array('headingid' => 40, 'friendlyurl' => 'posters', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Posters & Point of Sale', 'pages' => array(array('pageid' => 41, 'visibility' => 1, 'pagenavname' => 'Fly Posters', 'friendlyurl' => 'printing/fly-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 126, 'pageid' => 41, 'image' => '59e4b4af1084c.gif', 'imageflag' => '1'))), array('pageid' => 42, 'visibility' => 1, 'pagenavname' => 'Digital Colour Posters', 'friendlyurl' => 'printing/digital-colour-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 127, 'pageid' => 42, 'image' => '570f7c6ae4ca7.jpg', 'imageflag' => '1'))), array('pageid' => 43, 'visibility' => 1, 'pagenavname' => 'Large Format Inkjet', 'friendlyurl' => 'printing/large-format-inkjet-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 128, 'pageid' => 43, 'image' => '570f7c78441aa.jpg', 'imageflag' => '1'))), array('pageid' => 44, 'visibility' => 1, 'pagenavname' => 'Lithographic Posters', 'friendlyurl' => 'printing/litho-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 129, 'pageid' => 44, 'image' => '570f7c88b75f6.jpg', 'imageflag' => '1'))), array('pageid' => 214, 'visibility' => 1, 'pagenavname' => 'Banner Stands', 'friendlyurl' => 'printing/banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 288, 'pageid' => 214, 'image' => 'Bannerstand resize.png', 'imageflag' => null))), array('pageid' => 215, 'visibility' => 1, 'pagenavname' => 'Vinyl Banners', 'friendlyurl' => 'printing/vinyl-banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 182, 'pageid' => 215, 'image' => '570f7cad9d2e5.jpg', 'imageflag' => '1'))), array('pageid' => 216, 'visibility' => 1, 'pagenavname' => 'Light-Box Graphic Posters', 'friendlyurl' => 'printing/light-box-graphic-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 183, 'pageid' => 216, 'image' => '570f7cbcb279d.jpg', 'imageflag' => '1'))), array('pageid' => 217, 'visibility' => 1, 'pagenavname' => 'Outdoor Posters', 'friendlyurl' => 'printing/outdoor-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 184, 'pageid' => 217, 'image' => '570f7ccfab65e.jpg', 'imageflag' => '1'))), array('pageid' => 303, 'visibility' => 1, 'pagenavname' => 'Mounted Posters', 'friendlyurl' => 'mounted-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => '<br>', 'images' => array(array('imageid' => 290, 'pageid' => 303, 'image' => 'contactless resized.jpg', 'imageflag' => null))), array('pageid' => 297, 'visibility' => 1, 'pagenavname' => 'Mounted Signs', 'friendlyurl' => 'printing/mounted-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 252, 'pageid' => 297, 'image' => '5ed4f0d3c92de.gif', 'imageflag' => '1'), array('imageid' => 283, 'pageid' => 297, 'image' => 'contactless_payment5.jpg', 'imageflag' => null), array('imageid' => 284, 'pageid' => 297, 'image' => 'social_distancing5.jpg', 'imageflag' => null), array('imageid' => 285, 'pageid' => 297, 'image' => 'wash_hands5.jpg', 'imageflag' => null), array('imageid' => 286, 'pageid' => 297, 'image' => 'wear_masks5.jpg', 'imageflag' => null), array('imageid' => 287, 'pageid' => 297, 'image' => 'wipe_down5.jpg', 'imageflag' => null))), array('pageid' => 68, 'visibility' => 1, 'pagenavname' => 'Deluxe Canvas Prints', 'friendlyurl' => 'printing/deluxe-canvas-prints', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 148, 'pageid' => 68, 'image' => '570f7d27c3718.jpg', 'imageflag' => '1'))), array('pageid' => 69, 'visibility' => 0, 'pagenavname' => 'Pro Canvas Prints', 'friendlyurl' => 'printing/pro-canvas-prints', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 149, 'pageid' => 69, 'image' => '570f7d37b24ca.jpg', 'imageflag' => '1'))), array('pageid' => 304, 'visibility' => 1, 'pagenavname' => 'Encapsulated Posters', 'friendlyurl' => 'encapsulated-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 291, 'pageid' => 304, 'image' => 'Encapsulated Poster resize.jpg', 'imageflag' => null)))), 'users' => array(), 'image' => '570f7c4ca0636.jpg'), array('headingid' => 80, 'friendlyurl' => 'covid19-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Covid-19 Protection Products', 'pages' => array(array('pageid' => 302, 'visibility' => 1, 'pagenavname' => 'Single Use Recycled Menus', 'friendlyurl' => 'printing/single-use-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 257, 'pageid' => 302, 'image' => '5ee898ae6fb05.jpg', 'imageflag' => '1'))), array('pageid' => 290, 'visibility' => 1, 'pagenavname' => 'Hand Sanitising Station', 'friendlyurl' => 'printing/hand-sanitising-station', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 245, 'pageid' => 290, 'image' => '5ec6372f76812.jpg', 'imageflag' => '1'))), array('pageid' => 291, 'visibility' => 0, 'pagenavname' => 'Sneeze Guards', 'friendlyurl' => 'printing/sneeze-guards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 71, 'pageid' => 291, 'image' => 'sneeze_guard.gif', 'imageflag' => null), array('imageid' => 72, 'pageid' => 291, 'image' => 'sneeze_guard_black.jpg', 'imageflag' => null), array('imageid' => 73, 'pageid' => 291, 'image' => 'sneeze_guard_blue_nhs.jpg', 'imageflag' => null), array('imageid' => 74, 'pageid' => 291, 'image' => 'sneeze_guard_grey.jpg', 'imageflag' => null), array('imageid' => 75, 'pageid' => 291, 'image' => 'sneeze_guard_yellow.jpg', 'imageflag' => null), array('imageid' => 76, 'pageid' => 291, 'image' => 'sneeze_guard_green.jpg', 'imageflag' => null), array('imageid' => 246, 'pageid' => 291, 'image' => '5ec5244189c2f.gif', 'imageflag' => '1'))), array('pageid' => 292, 'visibility' => 1, 'pagenavname' => 'Social Distancing PVC Floor Tape', 'friendlyurl' => 'printing/floor-tape', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 247, 'pageid' => 292, 'image' => '5ee08df6aba62.jpg', 'imageflag' => '1'), array('imageid' => 259, 'pageid' => 292, 'image' => 'tape2.jpg', 'imageflag' => null), array('imageid' => 260, 'pageid' => 292, 'image' => 'tape3.jpg', 'imageflag' => null), array('imageid' => 261, 'pageid' => 292, 'image' => 'tape4.jpg', 'imageflag' => null))), array('pageid' => 295, 'visibility' => 1, 'pagenavname' => '200gsm Silk Signs', 'friendlyurl' => 'printing/200gsm-silk-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 250, 'pageid' => 295, 'image' => '5ec52ad1170ce.gif', 'imageflag' => '1'), array('imageid' => 273, 'pageid' => 295, 'image' => 'contacless_payment.jpg', 'imageflag' => null), array('imageid' => 274, 'pageid' => 295, 'image' => 'wipe_down.jpg', 'imageflag' => null), array('imageid' => 275, 'pageid' => 295, 'image' => 'wash_hands3.jpg', 'imageflag' => null), array('imageid' => 276, 'pageid' => 295, 'image' => 'social_distancing3.jpg', 'imageflag' => null), array('imageid' => 277, 'pageid' => 295, 'image' => 'wear_masks3.jpg', 'imageflag' => null))), array('pageid' => 296, 'visibility' => 1, 'pagenavname' => 'Encapsulated Signs', 'friendlyurl' => 'printing/encapsulated-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 251, 'pageid' => 296, 'image' => '5ed4f0f43b832.gif', 'imageflag' => '1'), array('imageid' => 278, 'pageid' => 296, 'image' => 'contacless_payment4.jpg', 'imageflag' => null), array('imageid' => 279, 'pageid' => 296, 'image' => 'social_distancing4.jpg', 'imageflag' => null), array('imageid' => 280, 'pageid' => 296, 'image' => 'wash_hands4.jpg', 'imageflag' => null), array('imageid' => 281, 'pageid' => 296, 'image' => 'wear_masks4.jpg', 'imageflag' => null), array('imageid' => 282, 'pageid' => 296, 'image' => 'wipe_down4.jpg', 'imageflag' => null))), array('pageid' => 298, 'visibility' => 1, 'pagenavname' => 'Mounted Signs with Strut', 'friendlyurl' => 'printing/mounted-signs-with-strut', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 96, 'pageid' => 298, 'image' => 'clean_after_use.jpg', 'imageflag' => null), array('imageid' => 97, 'pageid' => 298, 'image' => 'contactless_payment.jpg', 'imageflag' => null), array('imageid' => 98, 'pageid' => 298, 'image' => 'social_distancing.jpg', 'imageflag' => null), array('imageid' => 99, 'pageid' => 298, 'image' => 'wash_hands.jpg', 'imageflag' => null), array('imageid' => 100, 'pageid' => 298, 'image' => 'wear_masks.jpg', 'imageflag' => null), array('imageid' => 253, 'pageid' => 298, 'image' => '5ed4f0e410e58.gif', 'imageflag' => '1'))), array('pageid' => 299, 'visibility' => 1, 'pagenavname' => 'Pull-Up Banner Stands', 'friendlyurl' => 'printing/pull-up-banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 254, 'pageid' => 299, 'image' => '5ec79f4a86219.jpg', 'imageflag' => '1'))), array('pageid' => 300, 'visibility' => 1, 'pagenavname' => 'Vinyl Banners', 'friendlyurl' => 'printing/vinylbanners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 255, 'pageid' => 300, 'image' => '5ec79f562b52b.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5eafefd8bac39.png'), array('headingid' => 35, 'friendlyurl' => 'postcards-heading', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Postcards', 'pages' => array(array('pageid' => 219, 'visibility' => 1, 'pagenavname' => 'Postcards', 'friendlyurl' => 'printing/postcards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 186, 'pageid' => 219, 'image' => '56fb97f4a712f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fb97e32c818.jpg'), array('headingid' => 28, 'friendlyurl' => 'folded-leaflets', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Folded Leaflets', 'pages' => array(array('pageid' => 222, 'visibility' => 1, 'pagenavname' => '120gsm Matt Folded Leaflets', 'friendlyurl' => 'printing/matt-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 189, 'pageid' => 222, 'image' => 'Jamjar_Folded_Leaflets_1.jpg', 'imageflag' => '1'))), array('pageid' => 221, 'visibility' => 1, 'pagenavname' => '150gsm Gloss Folded Leaflets', 'friendlyurl' => 'printing/gloss-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 188, 'pageid' => 221, 'image' => 'JamJar_Folded_Leaflet.jpg', 'imageflag' => '1'))), array('pageid' => 204, 'visibility' => 1, 'pagenavname' => '170gsm Folded Silk Leaflets', 'friendlyurl' => 'printing/silk-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 171, 'pageid' => 204, 'image' => 'Jamjar_Folded_Leaflets_3.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7a9a79a5f.jpg'), array('headingid' => 26, 'friendlyurl' => 'leaflets-and-flyers', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Leaflets & Flyers', 'pages' => array(array('pageid' => 220, 'visibility' => 1, 'pagenavname' => '120gsm Matt Uncoated Leaflets', 'friendlyurl' => 'printing/matt-uncoated-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 187, 'pageid' => 220, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '1'))), array('pageid' => 205, 'visibility' => 1, 'pagenavname' => '150gsm Gloss Leaflets', 'friendlyurl' => 'printing/gloss-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 172, 'pageid' => 205, 'image' => 'JamJar_Leaflets_3.jpg', 'imageflag' => '1'))), array('pageid' => 146, 'visibility' => 1, 'pagenavname' => '170gsm Silk Leaflets', 'friendlyurl' => 'printing/silk-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 162, 'pageid' => 146, 'image' => '570f7a8006330.jpg', 'imageflag' => '1'))), array('pageid' => 34, 'visibility' => 1, 'pagenavname' => '300gsm Silk Flyers', 'friendlyurl' => 'printing/standard-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 121, 'pageid' => 34, 'image' => '56f1743d5615a.jpg', 'imageflag' => '1'))), array('pageid' => 38, 'visibility' => 1, 'pagenavname' => '300gsm Gloss Laminated Flyers', 'friendlyurl' => 'printing/gloss-laminated-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 123, 'pageid' => 38, 'image' => 'jamjarprint_product_main_b3_glosslam_1.jpg', 'imageflag' => '1'))), array('pageid' => 60, 'visibility' => 1, 'pagenavname' => '300gsm Die Cut Flyers', 'friendlyurl' => 'printing/die-cut-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 143, 'pageid' => 60, 'image' => 'JamJar_Diecut_Leaflet_3.jpg', 'imageflag' => '1'))), array('pageid' => 36, 'visibility' => 1, 'pagenavname' => '350 micron Fibrous Pulp Flyers', 'friendlyurl' => 'printing/pulp-board-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 122, 'pageid' => 36, 'image' => '570f5e9a14160.jpg', 'imageflag' => '1'))), array('pageid' => 234, 'visibility' => 0, 'pagenavname' => '450gsm Silk Flyers', 'friendlyurl' => 'printing/450gsm-silk-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 192, 'pageid' => 234, 'image' => '570e2ca70fdcc.jpg', 'imageflag' => '1'))), array('pageid' => 301, 'visibility' => 0, 'pagenavname' => 'High Volume Leaflets & Flyers', 'friendlyurl' => 'printing/high-volume-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 256, 'pageid' => 301, 'image' => '5ec3dfc2b8e9a.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => 'JamJar_Flyers_Main.jpg'), array('headingid' => 30, 'friendlyurl' => 'booklets', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Booklets & Books', 'pages' => array(array('pageid' => 77, 'visibility' => 1, 'pagenavname' => 'Soft Cover Booklets', 'friendlyurl' => 'printing/soft-cover-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 152, 'pageid' => 77, 'image' => 'JamJar_Booklets.jpg', 'imageflag' => '1'))), array('pageid' => 233, 'visibility' => 1, 'pagenavname' => 'Hard Cover Booklets ', 'friendlyurl' => 'printing/hard-cover-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 191, 'pageid' => 233, 'image' => '5714beee9c523.jpg', 'imageflag' => '1'))), array('pageid' => 272, 'visibility' => 1, 'pagenavname' => 'Case Bound Books', 'friendlyurl' => 'printing/case-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 227, 'pageid' => 272, 'image' => '5a72fe69ac14f.jpg', 'imageflag' => '1'))), array('pageid' => 273, 'visibility' => 1, 'pagenavname' => 'Wiro Bound Books', 'friendlyurl' => 'printing/wiro-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 228, 'pageid' => 273, 'image' => '5a72fe7585a38.jpg', 'imageflag' => '1'))), array('pageid' => 274, 'visibility' => 1, 'pagenavname' => 'Perfect Bound Books', 'friendlyurl' => 'printing/perfect-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 229, 'pageid' => 274, 'image' => '5a72fe825f20f.jpg', 'imageflag' => '1'))), array('pageid' => 275, 'visibility' => 1, 'pagenavname' => 'Singer Sewn Booklets', 'friendlyurl' => 'printing/singer-sewn-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 230, 'pageid' => 275, 'image' => '5aba77a9cb2c1.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fb95f92ffb1.jpg'), array('headingid' => 29, 'friendlyurl' => 'menus-and-brochures', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Menus & Brochures', 'pages' => array(array('pageid' => 64, 'visibility' => 1, 'pagenavname' => 'Gloss Laminated Brochures / Folded Menus', 'friendlyurl' => 'printing/gloss-laminated-brouchures-and-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 145, 'pageid' => 64, 'image' => '56fba2cf0b461.jpg', 'imageflag' => '1'))), array('pageid' => 66, 'visibility' => 1, 'pagenavname' => 'Matt Laminated Brochures / Folded Menus', 'friendlyurl' => 'printing/matt-laminated-brouchures-and-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 147, 'pageid' => 66, 'image' => '570f7abc29538.jpg', 'imageflag' => '1'))), array('pageid' => 286, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Brochures/Folded Menus', 'friendlyurl' => 'printing/scodix-brochures', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 241, 'pageid' => 286, 'image' => '5e282bd4032cf.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fba512746fc.jpg'), array('headingid' => 43, 'friendlyurl' => 'canvas-prints', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Canvas Prints', 'pages' => array(), 'users' => array(), 'image' => '570f7d181ed90.jpg'), array('headingid' => 31, 'friendlyurl' => 'stationery', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Stationery, Pads & Envelopes', 'pages' => array(array('pageid' => 50, 'visibility' => 1, 'pagenavname' => 'Letterheads', 'friendlyurl' => 'printing/letterheads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 134, 'pageid' => 50, 'image' => '570f7af0cd3a4.jpg', 'imageflag' => '1'))), array('pageid' => 51, 'visibility' => 1, 'pagenavname' => 'Compliment Slips', 'friendlyurl' => 'printing/compliment-slips', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 135, 'pageid' => 51, 'image' => '570f7b0219f96.jpg', 'imageflag' => '1'))), array('pageid' => 52, 'visibility' => 1, 'pagenavname' => 'Stationery Packages', 'friendlyurl' => 'printing/stationery-packages', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 136, 'pageid' => 52, 'image' => '570f7b2986253.jpg', 'imageflag' => '1'))), array('pageid' => 134, 'visibility' => 1, 'pagenavname' => '2 Part NCR Pads', 'friendlyurl' => 'printing/2part-ncr-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 156, 'pageid' => 134, 'image' => '570f7b3b640b6.jpg', 'imageflag' => '1'))), array('pageid' => 135, 'visibility' => 1, 'pagenavname' => '3 Part NCR Pads', 'friendlyurl' => 'printing/3part-ncr-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 157, 'pageid' => 135, 'image' => '570f7b51ee1b0.jpg', 'imageflag' => '1'))), array('pageid' => 190, 'visibility' => 1, 'pagenavname' => 'Envelopes', 'friendlyurl' => 'printing/envelopes', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 166, 'pageid' => 190, 'image' => '570f7b6081e21.jpg', 'imageflag' => '1'))), array('pageid' => 258, 'visibility' => 0, 'pagenavname' => 'Pads', 'friendlyurl' => 'printing/offer-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array()), array('pageid' => 285, 'visibility' => 1, 'pagenavname' => 'Notepads', 'friendlyurl' => 'printing/notepads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 240, 'pageid' => 285, 'image' => '5e202da5040d5.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => 'NCR.jpg'), array('headingid' => 36, 'friendlyurl' => 'folders', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Folders', 'pages' => array(array('pageid' => 79, 'visibility' => 0, 'pagenavname' => 'One Colour (Pantone) Folders', 'friendlyurl' => 'printing/pantone-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 153, 'pageid' => 79, 'image' => '570f7bab0ca35.jpg', 'imageflag' => '1'))), array('pageid' => 211, 'visibility' => 1, 'pagenavname' => 'Full Colour, Single Sided Folders', 'friendlyurl' => 'printing/single-sided-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 178, 'pageid' => 211, 'image' => '570f7bb8c5878.jpg', 'imageflag' => '1'))), array('pageid' => 212, 'visibility' => 1, 'pagenavname' => 'Full Colour, Double Sided Folder', 'friendlyurl' => 'printing/double-sided-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 179, 'pageid' => 212, 'image' => '570f7bc756df1.jpg', 'imageflag' => '1'))), array('pageid' => 213, 'visibility' => 1, 'pagenavname' => 'Full Colour Spot UV Folders', 'friendlyurl' => 'printing/spot-uv-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 180, 'pageid' => 213, 'image' => '570f7bd4b695b.jpg', 'imageflag' => '1'))), array('pageid' => 251, 'visibility' => 1, 'pagenavname' => 'Showcase Folders', 'friendlyurl' => 'printing/showcase-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 66, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Animated_Close.gif', 'imageflag' => null), array('imageid' => 67, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close2.jpg', 'imageflag' => null), array('imageid' => 68, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close1.jpg', 'imageflag' => null), array('imageid' => 69, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close3.jpg', 'imageflag' => null), array('imageid' => 70, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close4.jpg', 'imageflag' => null), array('imageid' => 207, 'pageid' => 251, 'image' => '5851462950dc0.gif', 'imageflag' => '1'))), array('pageid' => 322, 'visibility' => 1, 'pagenavname' => 'Full Colour Scodix Sense Folders', 'friendlyurl' => 'printing/scodix-sense-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 330, 'pageid' => 322, 'image' => 'JamJar_Fodler_Sense.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 323, 'visibility' => 1, 'pagenavname' => 'Full Colour Scodix Foil Folders', 'friendlyurl' => 'printing/scodix-foil-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 331, 'pageid' => 323, 'image' => 'JamJar_Folder_Folder.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '570f7b8c31e62.jpg'), array('headingid' => 39, 'friendlyurl' => 'stickers-and-labels', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Stickers & Labels', 'pages' => array(array('pageid' => 208, 'visibility' => 1, 'pagenavname' => 'Lithographic Stickers', 'friendlyurl' => 'printing/litho-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 175, 'pageid' => 208, 'image' => 'Jamjar_sticker1.jpg', 'imageflag' => '1'))), array('pageid' => 209, 'visibility' => 1, 'pagenavname' => 'Shaped Stickers', 'friendlyurl' => 'printing/shaped-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 176, 'pageid' => 209, 'image' => 'Jamjar_rounded_Sticker.jpg', 'imageflag' => '1'))), array('pageid' => 210, 'visibility' => 1, 'pagenavname' => 'Vinyl Stickers', 'friendlyurl' => 'printing/vinyl-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 177, 'pageid' => 210, 'image' => '570e4c394afbb.jpg', 'imageflag' => '1'))), array('pageid' => 294, 'visibility' => 1, 'pagenavname' => 'Window Stickers', 'friendlyurl' => 'printing/window-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 249, 'pageid' => 294, 'image' => '5ec52afb8d0c5.gif', 'imageflag' => '1'), array('imageid' => 268, 'pageid' => 294, 'image' => 'open_collections.jpg', 'imageflag' => null), array('imageid' => 269, 'pageid' => 294, 'image' => 'sanitise_hands.jpg', 'imageflag' => null), array('imageid' => 270, 'pageid' => 294, 'image' => 'window_sticker.jpg', 'imageflag' => null), array('imageid' => 271, 'pageid' => 294, 'image' => 'contactless_payment2.jpg', 'imageflag' => null), array('imageid' => 272, 'pageid' => 294, 'image' => 'wear_masks2.jpg', 'imageflag' => null))), array('pageid' => 73, 'visibility' => 1, 'pagenavname' => 'Digital Stickers', 'friendlyurl' => 'printing/digital-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 151, 'pageid' => 73, 'image' => '57233baf9d992.jpg', 'imageflag' => '1'))), array('pageid' => 277, 'visibility' => 1, 'pagenavname' => 'Kraft Stickers', 'friendlyurl' => 'printing/kraftstickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 232, 'pageid' => 277, 'image' => '5c7673643b147.jpg', 'imageflag' => '1'))), array('pageid' => 287, 'visibility' => 1, 'pagenavname' => 'Laser Cut Stickers', 'friendlyurl' => 'printing/lasercut-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 242, 'pageid' => 287, 'image' => '5e57aa4ba2ff3.jpg', 'imageflag' => '1'))), array('pageid' => 293, 'visibility' => 1, 'pagenavname' => 'Floor Graphics', 'friendlyurl' => 'printing/floor-graphics', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 248, 'pageid' => 293, 'image' => '5ec52ac670aa8.gif', 'imageflag' => '1'), array('imageid' => 263, 'pageid' => 293, 'image' => '2metres_blue.jpg', 'imageflag' => null), array('imageid' => 264, 'pageid' => 293, 'image' => '2metres_yellow.jpg', 'imageflag' => null), array('imageid' => 265, 'pageid' => 293, 'image' => 'oneway_orange.jpg', 'imageflag' => null), array('imageid' => 266, 'pageid' => 293, 'image' => 'oneway_yellow.jpg', 'imageflag' => null), array('imageid' => 267, 'pageid' => 293, 'image' => 'social_distancing_floor.jpg', 'imageflag' => null))), array('pageid' => 347, 'visibility' => 2, 'pagenavname' => 'Scodix Stickers', 'friendlyurl' => 'printing/scodix-stickers', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 363, 'pageid' => 347, 'image' => 'Scodix Stickers Final.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => 'JamJar_Stickers_Labels.jpg'), array('headingid' => 23, 'friendlyurl' => 'eco-friendly-range', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Eco-Friendly Range', 'pages' => array(array('pageid' => 32, 'visibility' => 1, 'pagenavname' => 'Recycled Stationery', 'friendlyurl' => 'printing/recycled-stationery', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 119, 'pageid' => 32, 'image' => '570f78b191fcf.jpg', 'imageflag' => '1'))), array('pageid' => 29, 'visibility' => 1, 'pagenavname' => 'Recycled Matt Flyers', 'friendlyurl' => 'printing/recycled-matt-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 117, 'pageid' => 29, 'image' => '570f78fa34586.jpg', 'imageflag' => '1'))), array('pageid' => 33, 'visibility' => 1, 'pagenavname' => 'Recycled Leaflets', 'friendlyurl' => 'printing/recycled-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 120, 'pageid' => 33, 'image' => '570f79ca89bba.jpg', 'imageflag' => '1'))), array('pageid' => 30, 'visibility' => 1, 'pagenavname' => 'Recycled Business Cards', 'friendlyurl' => 'printing/recycled-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 118, 'pageid' => 30, 'image' => '570f79dc9f22c.jpg', 'imageflag' => '1'))), array('pageid' => 307, 'visibility' => 1, 'pagenavname' => 'Coffee Cup Paper', 'friendlyurl' => 'printing/coffee-cup-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 314, 'pageid' => 307, 'image' => 'Coffee website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 308, 'visibility' => 1, 'pagenavname' => 'Algal Bloom Paper', 'friendlyurl' => 'printing/algal-bloom-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 317, 'pageid' => 308, 'image' => 'agal flyer website.jpg', 'imageflag' => '["2"]'))), array('pageid' => 309, 'visibility' => 1, 'pagenavname' => 'Grass Paper', 'friendlyurl' => 'printing/grass-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 316, 'pageid' => 309, 'image' => 'Grass Paper website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 310, 'visibility' => 1, 'pagenavname' => 'Repurposed Business Cards', 'friendlyurl' => 'printing/repurposed-business-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 315, 'pageid' => 310, 'image' => 'algal BCs website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 311, 'visibility' => 1, 'pagenavname' => '130GSM BROWN ECO KRAFT LEAFLETS', 'friendlyurl' => 'printing/kraft-leaflets', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 310, 'pageid' => 311, 'image' => 'Kraft Leaflets.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 312, 'visibility' => 1, 'pagenavname' => '130GSM BROWN ECO KRAFT FOLDED LEAFLETS', 'friendlyurl' => 'printing/kraft-folded-leaflets', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 311, 'pageid' => 312, 'image' => 'Kraft folded leaflet.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 313, 'visibility' => 1, 'pagenavname' => '280GSM BROWN ECO KRAFT BOARD', 'friendlyurl' => 'printing/kraft-flyers', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 312, 'pageid' => 313, 'image' => 'Kraft flyer.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 314, 'visibility' => 1, 'pagenavname' => '280GSM BROWN ECO KRAFT BOARD (FOLDED)', 'friendlyurl' => 'printing/kraft-folded-flyers', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 313, 'pageid' => 314, 'image' => 'Kraft folded flyer.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 321, 'visibility' => 0, 'pagenavname' => 'AGRICULTURAL WASTE PAPER', 'friendlyurl' => 'printing/agriculturalpaper', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array())), 'users' => array(), 'image' => '5a1d9f108eed9.jpg'), array('headingid' => 79, 'friendlyurl' => 'repurposedpaper', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Repurposed Paper', 'pages' => array(array('pageid' => 278, 'visibility' => 1, 'pagenavname' => 'Coffee Cup Paper', 'friendlyurl' => 'printing/coffee-cup-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 233, 'pageid' => 278, 'image' => '5d02083a6608a.jpg', 'imageflag' => '1'))), array('pageid' => 279, 'visibility' => 1, 'pagenavname' => 'Algal Bloom Paper', 'friendlyurl' => 'printing/algal-bloom-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 234, 'pageid' => 279, 'image' => '5d15fb2ff3835.jpg', 'imageflag' => '1'))), array('pageid' => 280, 'visibility' => 0, 'pagenavname' => 'Cocoa Shells Paper', 'friendlyurl' => 'printing/cocoa-shells-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array()), array('pageid' => 281, 'visibility' => 1, 'pagenavname' => 'Grass Paper', 'friendlyurl' => 'printing/grass-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 236, 'pageid' => 281, 'image' => '5dd7cbb7d9d14.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5d0103f8ebcdd.jpg'), array('headingid' => 89, 'friendlyurl' => 'kraft-takeaway-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Kraft Takeaway Menus', 'pages' => array(), 'users' => array('MICH99', 'JUNG06', 'ISTV01'), 'image' => '67ab4d163c4bc.jpg'), array('headingid' => 71, 'friendlyurl' => 'brownkraftproducts', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Brown Kraft Products', 'pages' => array(array('pageid' => 342, 'visibility' => 1, 'pagenavname' => '115gsm Kraft Takeaway Menus', 'friendlyurl' => 'printing/kraft-takeaway', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 361, 'pageid' => 342, 'image' => 'Kraft Menu.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 238, 'visibility' => 1, 'pagenavname' => '130gsm Brown Eco Kraft', 'friendlyurl' => 'printing/kraft-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 194, 'pageid' => 238, 'image' => '577bd179b4df5.jpg', 'imageflag' => '1'))), array('pageid' => 239, 'visibility' => 1, 'pagenavname' => '130gsm Brown Eco Kraft Folded', 'friendlyurl' => 'printing/kraft-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 195, 'pageid' => 239, 'image' => '577ce8fd3d7c1.jpg', 'imageflag' => '1'))), array('pageid' => 240, 'visibility' => 1, 'pagenavname' => '280gsm Brown Eco Kraft', 'friendlyurl' => 'printing/kraft-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 196, 'pageid' => 240, 'image' => '57766c0d79d67.jpg', 'imageflag' => '1'))), array('pageid' => 241, 'visibility' => 1, 'pagenavname' => '280gsm Brown Eco Kraft Folded', 'friendlyurl' => 'printing/kraft-folded-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 197, 'pageid' => 241, 'image' => '57766c18921f5.jpg', 'imageflag' => '1'))), array('pageid' => 242, 'visibility' => 1, 'pagenavname' => '500 Micron Almond Kraft', 'friendlyurl' => 'printing/kraft-thick-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 198, 'pageid' => 242, 'image' => '577bd2b500dfa.jpg', 'imageflag' => '1'))), array('pageid' => 276, 'visibility' => 1, 'pagenavname' => 'Kraft Stickers', 'friendlyurl' => 'printing/kraftstickers', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 231, 'pageid' => 276, 'image' => '5c766e67be92d.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '577cec425548d.jpg'), array('headingid' => 77, 'friendlyurl' => 'packaging', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Packaging - Box Board', 'pages' => array(array('pageid' => 259, 'visibility' => 1, 'pagenavname' => 'Pillow Packs', 'friendlyurl' => 'printing/pillow-packs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 214, 'pageid' => 259, 'image' => '593fce488fc63.jpg', 'imageflag' => '1'))), array('pageid' => 261, 'visibility' => 1, 'pagenavname' => 'Box - Lid & Base', 'friendlyurl' => 'printing/base-and-lid', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 216, 'pageid' => 261, 'image' => '593fce58ad46a.jpg', 'imageflag' => '1'))), array('pageid' => 260, 'visibility' => 1, 'pagenavname' => 'End Tuck Cartons', 'friendlyurl' => 'printing/end-tuck-cartons', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 215, 'pageid' => 260, 'image' => '593fce66bf9ca.jpg', 'imageflag' => '1'))), array('pageid' => 315, 'visibility' => 0, 'pagenavname' => 'Swing Tags', 'friendlyurl' => 'swing-tags', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 318, 'pageid' => 315, 'image' => '593fcf35849aa.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '591d84ac0444e.jpg'), array('headingid' => 81, 'friendlyurl' => 'swing-tags', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Swing Tags', 'pages' => array(array('pageid' => 255, 'visibility' => 1, 'pagenavname' => 'Swing Tags (280gsm Brown Eco Kraft)', 'friendlyurl' => 'printing/swing-tags-280gsm-kraft', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 210, 'pageid' => 255, 'image' => '593fcf274c64b.jpg', 'imageflag' => '1'))), array('pageid' => 253, 'visibility' => 1, 'pagenavname' => 'Swing Tags (300gsm Silk)', 'friendlyurl' => 'printing/swing-tags-300gsm-silk', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 208, 'pageid' => 253, 'image' => '593fcf35849aa.jpg', 'imageflag' => '1'))), array('pageid' => 254, 'visibility' => 1, 'pagenavname' => 'Swing Tags (350gsm Uncoated)', 'friendlyurl' => 'printing/swing-tags-350gsm-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 209, 'pageid' => 254, 'image' => '593fcf425e4d3.jpg', 'imageflag' => '1'))), array('pageid' => 256, 'visibility' => 1, 'pagenavname' => 'Swing Tags (600gsm Matt Lam)', 'friendlyurl' => 'printing/swing-tags-600gsm-matt lam', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 211, 'pageid' => 256, 'image' => '593fcf4a83b28.jpg', 'imageflag' => '1'))), array('pageid' => 257, 'visibility' => 1, 'pagenavname' => 'Swing Tags (600 micron Hi-Bulk Uncoated)', 'friendlyurl' => 'printing/swing-tags-600micron-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 212, 'pageid' => 257, 'image' => '593fcf5447c74.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '6008546735ef4.jpeg'), array('headingid' => 88, 'friendlyurl' => 'packaging', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Packaging', 'pages' => array(), 'users' => array(), 'image' => '67aa2cf645895.png'), array('headingid' => 82, 'friendlyurl' => 'scodix', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Scodix', 'pages' => array(array('pageid' => 305, 'visibility' => 1, 'pagenavname' => 'Scodix Proofing', 'friendlyurl' => 'scodix-proofing', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 295, 'pageid' => 305, 'image' => '5 copy.png', 'imageflag' => '1'), array('imageid' => 296, 'pageid' => 305, 'image' => '4.png', 'imageflag' => null), array('imageid' => 297, 'pageid' => 305, 'image' => '3 copy.png', 'imageflag' => null), array('imageid' => 298, 'pageid' => 305, 'image' => '2.png', 'imageflag' => null), array('imageid' => 299, 'pageid' => 305, 'image' => '1.png', 'imageflag' => null)))), 'users' => array(), 'image' => '6098f2172de69.jpeg'), array('headingid' => 83, 'friendlyurl' => 'oli-epp-postcards', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Oli Epp Postcards', 'pages' => array(array('pageid' => 306, 'visibility' => 1, 'pagenavname' => 'Oli Epp Free Postcards', 'friendlyurl' => 'oli-epp-free-postcards', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 300, 'pageid' => 306, 'image' => 'Oli Epp 1.jpg', 'imageflag' => '1'), array('imageid' => 301, 'pageid' => 306, 'image' => 'Oli Epp 2.jpg', 'imageflag' => null), array('imageid' => 302, 'pageid' => 306, 'image' => 'Oli Epp 3.jpg', 'imageflag' => null), array('imageid' => 306, 'pageid' => 306, 'image' => 'Oli Epp 5.jpg', 'imageflag' => null), array('imageid' => 307, 'pageid' => 306, 'image' => 'Oli Epp 4.jpg', 'imageflag' => null)))), 'users' => array(), 'image' => '60b8925ab4f0c.jpeg'), array('headingid' => 84, 'friendlyurl' => 'seasonal-products', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Seasonal Products <i class="fa fa-tree" aria-hidden="true" style="color: forestgreen"></i>', 'pages' => array(array('pageid' => 316, 'visibility' => 1, 'pagenavname' => 'Wrapping Paper', 'friendlyurl' => 'wrapping-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 319, 'pageid' => 316, 'image' => 'wrapping web.jpg', 'imageflag' => null))), array('pageid' => 317, 'visibility' => 0, 'pagenavname' => 'Swing Tags (280gsm Brown Eco Kraft)', 'friendlyurl' => 'printing/swing-tags-280gsm-kraft', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 320, 'pageid' => 317, 'image' => 'swing tag kraft.jpg', 'imageflag' => null))), array('pageid' => 318, 'visibility' => 1, 'pagenavname' => 'Wall Calendars', 'friendlyurl' => 'printing/wall-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 321, 'pageid' => 318, 'image' => 'wall calendarsa.jpg', 'imageflag' => null))), array('pageid' => 319, 'visibility' => 1, 'pagenavname' => 'Wall Planners', 'friendlyurl' => 'printing/wall-planners', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 322, 'pageid' => 319, 'image' => 'wallplanner.jpg', 'imageflag' => null))), array('pageid' => 324, 'visibility' => 1, 'pagenavname' => 'A4 Advent Calendars', 'friendlyurl' => 'printing/advent-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 333, 'pageid' => 324, 'image' => 'A4 Advent Calendars.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 325, 'visibility' => 1, 'pagenavname' => 'Desktop Calendars', 'friendlyurl' => 'printing/desktop-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 334, 'pageid' => 325, 'image' => 'Desktop Calendars.jpg', 'imageflag' => '["1"]'))), array('pageid' => 326, 'visibility' => 1, 'pagenavname' => 'Pen Pot Calendars', 'friendlyurl' => 'printing/pen-pot-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 335, 'pageid' => 326, 'image' => 'Penpot Calendar.jpg', 'imageflag' => '["1"]'))), array('pageid' => 327, 'visibility' => 1, 'pagenavname' => 'Short Run Greeting Cards', 'friendlyurl' => 'printing/short-run-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 337, 'pageid' => 327, 'image' => 'Short Run Greetings Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 328, 'visibility' => 1, 'pagenavname' => 'Greeting Cards', 'friendlyurl' => 'printing/greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 338, 'pageid' => 328, 'image' => 'Lithographic Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 329, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 339, 'pageid' => 329, 'image' => 'Scodix Foil Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 330, 'visibility' => 1, 'pagenavname' => 'Scodix Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-sense-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 340, 'pageid' => 330, 'image' => 'Scodix Sense Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 331, 'visibility' => 1, 'pagenavname' => 'Scodix Foil & Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-and-sense-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 341, 'pageid' => 331, 'image' => 'Scodix Foil & Sense Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 332, 'visibility' => 1, 'pagenavname' => 'Kraft Invites', 'friendlyurl' => 'printing/kraft-invites', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 342, 'pageid' => 332, 'image' => 'Kraft Invites.jpg', 'imageflag' => '["1"]'))), array('pageid' => 333, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Gloss Laminated', 'friendlyurl' => 'printing/invitations-400gsm-gloss', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 343, 'pageid' => 333, 'image' => 'Invitations 400gsm Gloss Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 334, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-400gsm-matt', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 344, 'pageid' => 334, 'image' => 'Invitations 400gsm Matt Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 335, 'visibility' => 1, 'pagenavname' => 'Invitations 600gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-600gsm-matt', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 345, 'pageid' => 335, 'image' => 'Invitations 600gsm Matt Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 336, 'visibility' => 1, 'pagenavname' => '600 Micron Hi-Bulk Uncoated Invites', 'friendlyurl' => 'printing/invitations-600micron-uncoated', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 346, 'pageid' => 336, 'image' => '600 Micron Hi-Bulk Uncoated Invites.jpg', 'imageflag' => '["1"]')))), 'users' => array(), 'image' => '61681ba795ee6.jpg'), array('headingid' => 87, 'friendlyurl' => 'instruction-leaflets', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Instruction Leaflets', 'pages' => array(array('pageid' => 339, 'visibility' => 1, 'pagenavname' => 'Instruction Leaflets B&W', 'friendlyurl' => 'printing/instruction-leaflets-bw', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 362, 'pageid' => 339, 'image' => 'B&W Folded Instructions.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 343, 'visibility' => 1, 'pagenavname' => 'Instruction Leaflets Full Colour', 'friendlyurl' => 'printing/instruction-leaflets-colour', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 356, 'pageid' => 343, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '["1","2"]')))), 'users' => array('MICH99', 'JUNG06'), 'image' => '67aa2cbc1f661.png'), array('headingid' => 85, 'friendlyurl' => 'alexander-guy-limited-edition-prints', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Alexander Guy Limited Edition Prints', 'pages' => array(array('pageid' => 320, 'visibility' => 1, 'pagenavname' => 'Alexander Guy Limited Edition Print', 'friendlyurl' => 'alexander-guy-supersavers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 326, 'pageid' => 320, 'image' => 'Alexander Guy - Super Savers - Print Signing.jpeg', 'imageflag' => null), array('imageid' => 327, 'pageid' => 320, 'image' => 'Scaled down - Alexander Guy - Super Savers 01.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '620287f8a6755.jpg'), array('headingid' => 41, 'friendlyurl' => 'calendars', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Calendars & Wall Planners', 'pages' => array(array('pageid' => 192, 'visibility' => 1, 'pagenavname' => 'Wall Calendars', 'friendlyurl' => 'printing/wall-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 332, 'pageid' => 192, 'image' => 'Calender 2024.png', 'imageflag' => '["1","2"]'))), array('pageid' => 193, 'visibility' => 1, 'pagenavname' => 'Wall Planners', 'friendlyurl' => 'printing/wall-planners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 169, 'pageid' => 193, 'image' => '5a182a7d70f12.jpg', 'imageflag' => '1'))), array('pageid' => 248, 'visibility' => 1, 'pagenavname' => 'Advent Calendars', 'friendlyurl' => 'printing/advent-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 204, 'pageid' => 248, 'image' => '57fe096ba25cc.jpg', 'imageflag' => '1'))), array('pageid' => 249, 'visibility' => 1, 'pagenavname' => 'Desktop Calendars', 'friendlyurl' => 'printing/desktop-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 205, 'pageid' => 249, 'image' => '57fe0a426968f.jpg', 'imageflag' => '1'))), array('pageid' => 250, 'visibility' => 1, 'pagenavname' => 'Pen Pot Calendars', 'friendlyurl' => 'printing/pen-pot-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 206, 'pageid' => 250, 'image' => '57ff5c69247f5.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7ce4b9f6e.jpg'), array('headingid' => 38, 'friendlyurl' => 'tickets-and-vouchers', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Tickets & Gift Vouchers', 'pages' => array(array('pageid' => 71, 'visibility' => 1, 'pagenavname' => 'Two Part Security', 'friendlyurl' => 'printing/two-part-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 150, 'pageid' => 71, 'image' => '570f7bfd71bf3.jpg', 'imageflag' => '1'))), array('pageid' => 206, 'visibility' => 1, 'pagenavname' => 'Three Part Security', 'friendlyurl' => 'printing/three-part-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 173, 'pageid' => 206, 'image' => '570f7c0a2b12f.jpg', 'imageflag' => '1'))), array('pageid' => 207, 'visibility' => 1, 'pagenavname' => 'Colour Tickets', 'friendlyurl' => 'printing/colour-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 174, 'pageid' => 207, 'image' => '570f7c1656ca0.jpg', 'imageflag' => '1'))), array('pageid' => 218, 'visibility' => 1, 'pagenavname' => 'Secure Paper Gift Vouchers', 'friendlyurl' => 'printing/gift-vouchers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 185, 'pageid' => 218, 'image' => '570f7c24c25f5.jpg', 'imageflag' => '1'))), array('pageid' => 284, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Gift Vouchers', 'friendlyurl' => 'printing/scodix-gift-vouchers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 239, 'pageid' => 284, 'image' => '5e15e6f97034f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7be8aab6e.jpg'), array('headingid' => 32, 'friendlyurl' => 'cards-and-invitations', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Greeting Cards & Invitations', 'pages' => array(array('pageid' => 55, 'visibility' => 1, 'pagenavname' => 'Short Run Greeting Cards', 'friendlyurl' => 'printing/short-run-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 138, 'pageid' => 55, 'image' => 'JamJar_ChristmasCard2.jpg', 'imageflag' => '1'))), array('pageid' => 57, 'visibility' => 0, 'pagenavname' => 'Premium Marketing Cards', 'friendlyurl' => 'printing/premium-marketing-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 140, 'pageid' => 57, 'image' => 'jamjarprint_premium_marketing_card_1_dummy.jpg', 'imageflag' => '1'))), array('pageid' => 85, 'visibility' => 0, 'pagenavname' => 'Greeting Card Envelopes', 'friendlyurl' => 'printing/greeting-card-envelopes', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 154, 'pageid' => 85, 'image' => 'jamjarprint_greeting_card_envelopes_1_dummy copy.jpg', 'imageflag' => '1'))), array('pageid' => 56, 'visibility' => 1, 'pagenavname' => 'Greeting Cards', 'friendlyurl' => 'printing/greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 139, 'pageid' => 56, 'image' => 'JamJar_ChristmasCard.jpg', 'imageflag' => '1'))), array('pageid' => 269, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 224, 'pageid' => 269, 'image' => '5a1d5a3c4265c.jpg', 'imageflag' => '1'))), array('pageid' => 270, 'visibility' => 1, 'pagenavname' => 'Scodix Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-sense-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 225, 'pageid' => 270, 'image' => '5a1d5a4aeb9e3.jpg', 'imageflag' => '1'))), array('pageid' => 271, 'visibility' => 1, 'pagenavname' => 'Scodix Foil & Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-and-sense-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 226, 'pageid' => 271, 'image' => '5a1d5a5f0987d.jpg', 'imageflag' => '1'))), array('pageid' => 283, 'visibility' => 1, 'pagenavname' => 'Kraft Invites', 'friendlyurl' => 'printing/kraft-invites', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 238, 'pageid' => 283, 'image' => '5e281fa4b707a.jpg', 'imageflag' => '1'))), array('pageid' => 63, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Gloss Laminated', 'friendlyurl' => 'printing/invitations-400gsm-gloss', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 144, 'pageid' => 63, 'image' => '56fbc336ae76d.jpg', 'imageflag' => '1'))), array('pageid' => 65, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-400gsm-matt', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 146, 'pageid' => 65, 'image' => '56fbc3443e69b.jpg', 'imageflag' => '1'))), array('pageid' => 151, 'visibility' => 1, 'pagenavname' => 'Invitations 600gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-600gsm-matt', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 164, 'pageid' => 151, 'image' => '56fbc3502deba.jpg', 'imageflag' => '1'))), array('pageid' => 243, 'visibility' => 1, 'pagenavname' => 'Invitations 600 Micron Hi-Bulk Uncoated', 'friendlyurl' => 'printing/invitations-600micron-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 199, 'pageid' => 243, 'image' => '57a066d8aa2ce.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fba74032424.jpg'), array('headingid' => 86, 'friendlyurl' => 'scratch-cards', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Scratch Cards', 'pages' => array(array('pageid' => 348, 'visibility' => 1, 'pagenavname' => 'Scratch Cards', 'friendlyurl' => 'printing/scratch-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 360, 'pageid' => 348, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '["1","2"]')))), 'users' => array('MICH99'), 'image' => '67aa2c2f92d1d.png'), array('headingid' => 44, 'friendlyurl' => 'digital-printed-products', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Digital Printed Products', 'pages' => array(array('pageid' => 39, 'visibility' => 1, 'pagenavname' => 'Short Run Colour Flyers', 'friendlyurl' => 'printing/short-run-colour-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 124, 'pageid' => 39, 'image' => '570f7d5aeb7c9.jpg', 'imageflag' => '1'))), array('pageid' => 40, 'visibility' => 1, 'pagenavname' => 'Short Run B&W Flyers', 'friendlyurl' => 'printing/short-run-mono-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 125, 'pageid' => 40, 'image' => '570f7d68d1572.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7d4d59ca4.jpg'))), 'no' => array()), 'upsellProducts' => array(array('upsellid' => 1, 'pageid' => 48, 'onpage' => null, 'page' => array('pageid' => 48, 'pagename' => '400gsm Shaped Matt Laminated Business Cards', 'pagenavname' => '400gsm Shaped Matt Laminated', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 1, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Get your business cards cut to exciting shapes with our existing templates, you can go with one or four rounded corners, or an undersized card with rounded corners.</p><p></p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 400gsm silk, matt lamination both sides, die cut to shape. Prices subject to VAT.</strong></p>', 'htmltitle' => '400gsm Shaped Deluxe Business Cards - JamJar Print', 'metakeywords' => 'shaped business cards, shaped business card printing, business card printing, 400gsm paper stock, business cards, cheap business cards, matt lamination, printing, litho, cheap, uk, bristol, london, deluxe busniess cards', 'metadesc' => 'JamJar Print - Shaped Deluxe Matt Laminated Business Cards - best for prices, quality and service', 'friendlyurl' => 'printing/shaped-business-cards', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => '<p>*Shape E is done using a hand cornering machine (with 6mm radius rounded corners), rather than die-cutting, so results may not be quite as consistent as die-cutting.</p><p><a href="/artwork-guidelines#templates" target="_blank"><img src="https://ops.jamjarprint.co.uk/assets/images/image_2016-05-10-10-12-32_5731a60016961.png" class="img-responsive"></a></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 132, 'pageid' => 48, 'image' => '5a37f53b12013.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 2, 'pageid' => 29, 'onpage' => null, 'page' => array('pageid' => 29, 'pagename' => 'Recycled Matt Flyers', 'pagenavname' => 'Recycled Matt Flyers', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to do your&nbsp;bit for the environment whilst maintaining a high quality flyer then this is the one for you.&nbsp;This board is one of the whitest recycled stocks available, so you can expect a clean finish.</p><p></p><p><strong>Full colour to both sides (lithographically printed), 100% recycled 350 micron board. No VAT to pay on flyers.</strong></p>', 'htmltitle' => 'Recycled Matt Flyer Printing - JamJar Print', 'metakeywords' => 'recycled matt flyers, recycled matt flyer printing, environmentally friendly flyers, eco paper, green printers, matt paper stock, eco specialists, green', 'metadesc' => 'JamJar Print - Recycled matt flyer printing - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-matt-flyers', 'sortorder' => 1, 'pageblurb' => null, 'pageblurb2' => '<p>All artwork received before end of day on Tuesdays will be guaranteed for Friday delivery that week.<br /> All artwork received before end of day on Fridays will be guaranteed for delivery on Wednesday the following week.<br /> Timings may vary around bank holidays, so please check with us in this case.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 117, 'pageid' => 29, 'image' => '570f78fa34586.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 3, 'pageid' => 33, 'onpage' => null, 'page' => array('pageid' => 33, 'pagename' => 'Recycled Leaflets', 'pagenavname' => 'Recycled Leaflets', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 1, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 1, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>The 100% Recycled 150gsm Revive Offset has a great punch for a recycled stock and is virtually impossible to distinguish from standard uncoated paper. That\'s why we can confidently offer our recycled leaflets with no compromise on quality.</p><p></p><p><strong>Full colour (lithographically printed) onto 100% recycled 150gsm Revive Offset. Prices may be subject to VAT.</strong></p>', 'htmltitle' => 'Recycled Leaflets - JamJar Print', 'metakeywords' => 'recycled leaflets, recycled marketing materials, eco-friendly marketing, eco-friendly printing, environmentally friendly, eco paper stock, green printers, matt paper stock, eco specialists, green printing', 'metadesc' => 'JamJar Print - Recycled leaflet printing - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-leaflets', 'sortorder' => 2, 'pageblurb' => null, 'pageblurb2' => '<p>Dimensions (mm): DL (210 x 99), A6 (148 X 105), A5 (210 x 148), A4 (297 x 210)</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 120, 'pageid' => 33, 'image' => '570f79ca89bba.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 4, 'pageid' => 32, 'onpage' => null, 'page' => array('pageid' => 32, 'pagename' => 'Recycled Letterhead & Compliment Slip Packages', 'pagenavname' => 'Recycled Stationery', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Send an eco-conscious message to all your contacts by placing a recycled logo at the bottom of your letterhead and compliment slip.</p><p><strong>Full colour one side only (lithographically printed) onto 100% recycled 120gsm Revive Offset. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Recycled Business Stationery Printing - JamJar Print', 'metakeywords' => 'recycled stationery, recycled compliment slips, recycled business cards, recycled letterheads, printing, litho printing, eco printing, green, office supplies', 'metadesc' => 'JamJar Print - Recycled business stationery - letterheads & comp slips - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-stationery', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p>Package consists of equal number of single sided A4 letterheads and DL compliment slips.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 119, 'pageid' => 32, 'image' => '570f78b191fcf.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 5, 'pageid' => 272, 'onpage' => null, 'page' => array('pageid' => 272, 'pagename' => 'Case Bound Books', 'pagenavname' => 'Case Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Case binding uses paper being bonded to thick boards to create hardcover books. These are great for items you want to have increased durability and a professional look.</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'Case Bound Books', 'metakeywords' => 'Hard back books, hard cover books, hard back books, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london case bound, case binding', 'metadesc' => 'JamJar Print - Full colour, high quality case-bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/case-bound-books', 'sortorder' => 2, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 227, 'pageid' => 272, 'image' => '5a72fe69ac14f.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 6, 'pageid' => 273, 'onpage' => null, 'page' => array('pageid' => 273, 'pagename' => 'Wiro Bound Books', 'pagenavname' => 'Wiro Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Wiro binding is a simple and effective binding method that is particularly useful for short runs. Sheets are stacked on top of each, holes are punched before a wire is threaded through and clamped close. This method can be used to create a whole range of products, from diaries, to manuals and directories, with a professional finish and a lot of scope for variation. Wires are usually silver, black or white, but we can also get greens, reds and blues.</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'Wiro Bound Books', 'metakeywords' => 'wirobound books, wiro-binding, wiro-bound, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london', 'metadesc' => 'JamJar Print - Full colour, high quality wiro-bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/wiro-bound-books', 'sortorder' => 3, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 228, 'pageid' => 273, 'image' => '5a72fe7585a38.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 7, 'pageid' => 274, 'onpage' => null, 'page' => array('pageid' => 274, 'pagename' => 'PERFECT BOUND (PUR BOUND) BOOKS', 'pagenavname' => 'Perfect Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>PUR binding is a great way of getting a good, solid bind on a booklet when there are just too many pages for traditional stitching. Not as costly as case binding, it uses a simliar technique, but with a printed card cover (rather than paper bonded to card).</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'PUR Bound Books', 'metakeywords' => 'Hard back books, hard cover books, hard back booklets, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london, PUR binding', 'metadesc' => 'JamJar Print - Full colour, high quality PUR bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/perfect-bound-books', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 229, 'pageid' => 274, 'image' => '5a72fe825f20f.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 8, 'pageid' => 214, 'onpage' => null, 'page' => array('pageid' => 214, 'pagename' => 'Banner Stands', 'pagenavname' => 'Banner Stands', 'pagenavblurb' => null, 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>These banner stands come attached inside a stand, rolled-up, ready to be unleashed and assembled at the drop of a hat. A minimum fuss, high quality way to take your banner with you wherever your business needs demand it.</p><p>The stand and banner all fit neatly inside a carry bag with a handle to make your life even easier!</p><p></p><p><strong>2000x800mm. Full Colour Print One Side Only (Inkjet). Premium 310mic Grey Back Material. Supplied with carry case and collapsible stand. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Banner Stands - JamJar Print', 'metakeywords' => 'Banner stands, stand up banner, pull up banner, roller banner, banner, exhibition stand, Exhibition banner, cheap banner, vinyl banner, colour banner, colour roller banner, carry case, bristol, UK, ', 'metadesc' => 'JamJar Print - Full colour, high quality banner printing. Market leading prices and quality', 'friendlyurl' => 'printing/banners', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 288, 'pageid' => 214, 'image' => 'Bannerstand resize.png', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 9, 'pageid' => 303, 'onpage' => null, 'page' => array('pageid' => 303, 'pagename' => 'Mounted Posters', 'pagenavname' => 'Mounted Posters', 'pagenavblurb' => '<br>', 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to add a bit of rigidity to your posters then these are perfect for you, mounted onto a thick and firm, but lightweight, foam board.</p><p><b>Full colour print to one side only (inkjet output) onto 190gsm satin, bonded to 5mm foamcor. Prices subject to VAT.</b></p><p><br></p>', 'htmltitle' => 'Mounted Posters - JamJar Print', 'metakeywords' => 'mounted posters, posters, inkjet, printing, litho, cheap, uk, bristol, london, environmentally friendly printing', 'metadesc' => 'JamJar Print - Full colour, high quality mounted posters. Professional, competitive and personal service', 'friendlyurl' => 'mounted-posters', 'sortorder' => 3, 'pageblurb' => '<br>', 'pageblurb2' => '<p>Foamex (a heavier weight foam board) prices available on request, click <a href="https://jamjarprint.co.uk/request-quote">here</a>.</p>', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 290, 'pageid' => 303, 'image' => 'contactless resized.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 10, 'pageid' => 43, 'onpage' => null, 'page' => array('pageid' => 43, 'pagename' => 'Large Format Inkjet Posters', 'pagenavname' => 'Large Format Inkjet', 'pagenavblurb' => null, 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>These posters cover many uses from light boxes, exhibition stands and temporary banners to A-boards. These posters are printed at up to 2400dpi to one side only using UV stable pigment inks ensuring your colours won\'t fade. Our latest rip software and 12 colour inkjet machine processes RGB and CMYK files into a massive spectrum of colours producing fantastically vibrant results.</p><p>Our website displays standard prices but as always we try our best to be as flexible as possible offering large format inkjet posters at any length with a maximum width of 1340mm (maximum width on light box graphic & outdoor posters is 1100mm).</p><p><strong>Full colour print to one side only (inkjet output) onto 190gsm satin. Prices subject to VAT.</strong><br></p>', 'htmltitle' => 'Large Format Inkjet Posters - JamJar Print', 'metakeywords' => 'large poster printing, big poster printing, inkjet poster printing, large format poster printing, large format inkjet poster printing', 'metadesc' => 'JamJar Print - Large format inkjet poster printing - best for prices, quality and service', 'friendlyurl' => 'printing/large-format-inkjet-posters', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p><br></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 128, 'pageid' => 43, 'image' => '570f7c78441aa.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 11, 'pageid' => 304, 'onpage' => null, 'page' => array('pageid' => 304, 'pagename' => 'Encapsulated Posters', 'pagenavname' => 'Encapsulated Posters', 'pagenavblurb' => ' ', 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to add a bit of durability to your posters then these are perfect for you, encapsulated and sealed around all edges with a plastic border to give your posters a longer life.</p><p><b>Full colour print to one side only (inkjet output) onto 190gsm satin, 125 micron gloss encapsulation. Prices subject to VAT.</b><br></p>', 'htmltitle' => 'Encapsulated Posters - JamJar Print', 'metakeywords' => 'encapsulated posters, posters, inkjet, printing, litho, cheap, uk, bristol, london, environmentally friendly printing', 'metadesc' => 'JamJar Print - Full colour, high quality encapsulated posters. Professional, competitive and personal service', 'friendlyurl' => 'encapsulated-posters', 'sortorder' => 11, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => '<p> </p>', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 291, 'pageid' => 304, 'image' => 'Encapsulated Poster resize.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 12, 'pageid' => 39, 'onpage' => null, 'page' => array('pageid' => 39, 'pagename' => 'Short Run Colour Flyers', 'pagenavname' => 'Short Run Colour Flyers', 'pagenavblurb' => null, 'headingid' => 44, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 1, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Need low quantities with a quick turnaround? We offer smaller runs, from as little as 250 flyers, for £11.</p><p>Small runs are digitally printed either single or double sided onto 300gsm stock with a choice of silk, gloss or uncoated matt board.</p>', 'htmltitle' => 'Short Run Colour Flyers - JamJar Print', 'metakeywords' => 'short run flyer printing, digital flyers, digital flyer printing, low quantity flyer printing', 'metadesc' => 'JamJar Print - Digital flyer printing - best for prices, quality and service', 'friendlyurl' => 'printing/short-run-colour-flyers', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => '<p><strong>Full colour (digital print), 300gsm gloss, silk or uncoated matt card. Prices subject to VAT where applicable.</strong></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 124, 'pageid' => 39, 'image' => '570f7d5aeb7c9.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 13, 'pageid' => 131, 'onpage' => null, 'page' => array('pageid' => 131, 'pagename' => '600gsm (800mic) Matt Laminated Business Cards', 'pagenavname' => '600gsm Matt Laminated', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 1, 'matrixdisplay' => 1, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 1, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Need to impress? We\'re confident these business cards will do just that. The 600gsm board used is amongst some of the thickest board available (800 microns). Their value won\'t disappoint either!</p><p></p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 600gsm silk</strong><b> (800 microns)</b>.<strong> matt lamination both sides. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Deluxe 600gsm Matt Laminated Business Cards - JamJar Print', 'metakeywords' => 'Business cards, thick business cards, business card printing, cheap business cards, printing, litho, cheap, uk, bristol, london, luxury', 'metadesc' => 'JamJar Print - 600 gsm Matt Laminated Business Cards - best for prices, quality and service', 'friendlyurl' => 'printing/600gsm-business-cards', 'sortorder' => 7, 'pageblurb' => null, 'pageblurb2' => '<p><br></p>', 'pageblurb3' => null, 'pageblurb4' => 'Full Colour Both Sides (Lithographic Print), 55x85mm, 600gsm Silk, Matt Lamination Both Sides. Prices Subject to VAT.', 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(array('promoid' => 13, 'promocode' => 'TASTY30', 'offertype' => 0, 'discount' => '0.3', 'start' => '2023-12-13T00:00:00+00:00', 'end' => '2024-01-31T00:00:00+00:00', 'limitsingleuse' => 0, 'customerid' => null, 'friendlyname' => '600gsm 800 mic', 'promoproducts' => null, 'priceid' => null, 'clientid' => 0, 'pageid' => 131, 'pageoffertext' => null, 'pageofferimage' => null, 'pageofferextra' => null, 'emailtemplate' => null, 'emailsubject' => null, 'emailsender' => null)), 'images' => array(array('imageid' => 328, 'pageid' => 131, 'image' => '5b179be9f20a0.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 14, 'pageid' => 305, 'onpage' => null, 'page' => array('pageid' => 305, 'pagename' => 'Scodix Proofing', 'pagenavname' => 'Scodix Proofing', 'pagenavblurb' => ' ', 'headingid' => 82, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p style="text-align: left;">The Scodix technology is a fantastic tool to have at your fingertips, offering raised foil and UV as well as a textured UV effect. One of the problems designers can encounter is not knowing how a certain design element is going to look on the final product.</p><p style="text-align: left;">In response to these concerns we\'ve decided to help overcome this problem by offering free<span style="color:#ff0000;">*</span> Scodix tests on&nbsp;pre-printed sheets, so you can see if your design is going to work or needs a little tweaking.</p><p style="text-align: left;">Clicking the link below you can choose the appropriate Scodix finish (Gold/Silver Foil or Sense UV), the stock colour and your preferred delivery option. We are offering a next-day DPD delivery for when you need those samples a bit quicker, as well as cheaper Royal Mail options.</p><p style="text-align: left;">All prints will be on a matt laminated stock and supplied at A4 size.</p> ', 'htmltitle' => 'Scodix Proofing - JamJar Print', 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'scodix-proofing', 'sortorder' => 0, 'pageblurb' => ' ', 'pageblurb2' => '<p><i>Please note that Scodix cannot bleed off the edge of sheets.</i></p><p><i>For full details on how to setup Scodix artwork please see&nbsp;<a data-emb-href-display="jamjarprint.co.uk" data-cke-saved-href="https://jamjarprint.co.uk/artwork-guidelines" href="https://jamjarprint.co.uk/artwork-guidelines">here</a>.</i></p><p><i>*x1 or x2 Scodix test sheets are free, you only have to pay for the postage/courier, after that quantity costs are as below.</i></p><p><i>Turnaround is 2 working days for the DPD option, note that for Royal Mail 1st and 2nd class this will most likely add 1 and 2 working days (respectively) to the order.</i></p><p><i>If you want to collect your prints from our Bristol office you just need to remove the delivery option (click the x) from the basket and change the job to "collection".</i><br></p> ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 295, 'pageid' => 305, 'image' => '5 copy.png', 'imageflag' => '1'), array('imageid' => 296, 'pageid' => 305, 'image' => '4.png', 'imageflag' => null), array('imageid' => 297, 'pageid' => 305, 'image' => '3 copy.png', 'imageflag' => null), array('imageid' => 298, 'pageid' => 305, 'image' => '2.png', 'imageflag' => null), array('imageid' => 299, 'pageid' => 305, 'image' => '1.png', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 15, 'pageid' => 306, 'onpage' => null, 'page' => array('pageid' => 306, 'pagename' => 'Wanda Koop and Oli Epp\'s Free Postcard Pack', 'pagenavname' => 'Oli Epp Free Postcards', 'pagenavblurb' => ' ', 'headingid' => 83, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>This is a Limited Edition postcard pack made by Oli Epp and Wanda Koop. This is a free souvenir for those who were unable to attend their two-person show at Division Galerie, in Montreal, Canada. Hope you enjoy this little memento!<br></p><p>Please note that the purchaser assumes all responsibility for any associated duty/import costs.<br></p><p><b>This is a limited edition free souvenir, to ensure they are fairly distributed we will only allow one order per person/address. If you try to order more than one copy we will not process your order.&nbsp;</b></p>', 'htmltitle' => 'Wanda Koop and Oli Epp\'s Free Postcard Pack - JamJar Print', 'metakeywords' => null, 'metadesc' => 'Oli Epp Free Postcards - JamJar Print', 'friendlyurl' => 'oli-epp-free-postcards', 'sortorder' => 0, 'pageblurb' => ' ', 'pageblurb2' => '<p>This is a limited edition free souvenir, to ensure they are fairly distributed we will only allow one order per person/address. If you try to order more than one copy we will not process your order nor refund your payment. </p><p>Also, please ignore the "upload artwork" option at the end of the ordering process - once you have paid that is all we need from you thanks!</p>', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 300, 'pageid' => 306, 'image' => 'Oli Epp 1.jpg', 'imageflag' => '1'), array('imageid' => 301, 'pageid' => 306, 'image' => 'Oli Epp 2.jpg', 'imageflag' => null), array('imageid' => 302, 'pageid' => 306, 'image' => 'Oli Epp 3.jpg', 'imageflag' => null), array('imageid' => 306, 'pageid' => 306, 'image' => 'Oli Epp 5.jpg', 'imageflag' => null), array('imageid' => 307, 'pageid' => 306, 'image' => 'Oli Epp 4.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 16, 'pageid' => 307, 'onpage' => null, 'page' => array('pageid' => 307, 'pagename' => 'Repurposed Coffee Cup Paper', 'pagenavname' => 'Coffee Cup Paper', 'pagenavblurb' => ' ', 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => ' ', 'htmltitle' => null, 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/coffee-cup-paper', 'sortorder' => 4, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 1, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 314, 'pageid' => 307, 'image' => 'Coffee website.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 17, 'pageid' => 278, 'onpage' => null, 'page' => array('pageid' => 278, 'pagename' => 'Repurposed Coffee Cup Paper', 'pagenavname' => 'Coffee Cup Paper', 'pagenavblurb' => null, 'headingid' => 79, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>The first repurposed paper on which we\'re starting to print is GF Smith\'s "Extract". They have partnered with CupCycling™ to extract the plastic element, that stops most single-use coffee cup being recycled, from the cup and turn the leftover paper into this stock. Below are prices on just the one shade, Moon (an off-white), in two different weights. We can also order in their whole range of colours, a lot of which would work great with white ink, so get in touch if you need a bespoke quote.</p>', 'htmltitle' => 'Repurposed Coffee Cup Paper - JamJar Print Ltd', 'metakeywords' => 'coffee cup paper, repurposed paper, eco-friendly stock, recycled printing, GF Smith Extract', 'metadesc' => 'JamJar Print - Repurposed Coffee Cup Paper Printing - best for prices, quality and service', 'friendlyurl' => 'printing/coffee-cup-paper', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p><strong>Full colour both sides (Indigo printed), 380gsm GF Smith Extract Moon. No VAT to pay on leaflets/flyers, but VAT applicable on menus/invites/cards etc (please select in basket).</strong></p><p>Other stock colours are available, but will cost more; get in touch if you want a quote.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 233, 'pageid' => 278, 'image' => '5d02083a6608a.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 18, 'pageid' => 310, 'onpage' => null, 'page' => array('pageid' => 310, 'pagename' => 'Repurposed Business Cards', 'pagenavname' => 'Repurposed Business Cards', 'pagenavblurb' => ' ', 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => ' ', 'htmltitle' => null, 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/repurposed-business-cards', 'sortorder' => 27, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 1, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 315, 'pageid' => 310, 'image' => 'algal BCs website.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 19, 'pageid' => 289, 'onpage' => null, 'page' => array('pageid' => 289, 'pagename' => 'Rounded Corners Business Cards', 'pagenavname' => 'Rounded Corners Business Cards', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 1, 'matrixdisplay' => 0, 'displaysort' => 1, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Shaped business cards can often be quite expensive due to new die cutting tools and setup time. However, with our new manual round cornering machine we can offer them at a much more affordable price. The machine is setup with a 6mm diameter radius, applied to all four corners, giving your business cards an extra bit of class.<br /><br />We will be offering these rounded corner business cards for online purchase on 400gsm matt laminated, 600gsm matt or soft touch laminated, 350gsm pulp and 600 micron white pulp, but if you have any other quotes requests don\'t hesitate to get in touch.</p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 6mm radius rounded corners, stock as below. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Rounded Corners Business Cards - JamJar Print', 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/roundedcorners-businesscards', 'sortorder' => 18, 'pageblurb' => null, 'pageblurb2' => '<p>Turnaround times will vary depending on type ordered:</p> <p>400gsm matt lam, 600gsm matt lam and 350gsm pulp are 5-6 working days.</p> <p>600gsm soft touch is 6-7 working days</p> <p>600 micron uncoated is 7-8 working days</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 244, 'pageid' => 289, 'image' => '5e5f71a9d4d9a.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0))), 'types' => false, 'processes' => array(array('process' => 'Lithographic Print', 'category' => 1, 'code' => 'LITHO', 'sizes' => null, 'typeid' => 1, 'processid' => 2), array('process' => 'Digital Print', 'category' => 1, 'code' => 'DIG', 'sizes' => null, 'typeid' => 1, 'processid' => 3), array('process' => 'Indigo Print', 'category' => 1, 'code' => 'IND', 'sizes' => null, 'typeid' => 1, 'processid' => 4), array('process' => 'Full Colour', 'category' => 5, 'code' => '4col', 'sizes' => null, 'typeid' => 1, 'processid' => 5), array('process' => 'Matt Lam 1 Side', 'category' => 3, 'code' => 'LamMTSS', 'sizes' => null, 'typeid' => 1, 'processid' => 7), array('process' => 'Matt Lam 2 Sides', 'category' => 3, 'code' => 'LamMTDS', 'sizes' => null, 'typeid' => 1, 'processid' => 8), array('process' => 'Gloss Lam 1 Side', 'category' => 3, 'code' => 'LamGLSSS', 'sizes' => null, 'typeid' => 4, 'processid' => 9), array('process' => 'Gloss Lam 2 Sides', 'category' => 3, 'code' => 'LamGLSDS', 'sizes' => null, 'typeid' => 1, 'processid' => 10), array('process' => 'Soft Touch Lam 1 Side', 'category' => 3, 'code' => 'LamSOFSS', 'sizes' => null, 'typeid' => 1, 'processid' => 11), array('process' => 'Soft Touch Lam 2 Sides', 'category' => 3, 'code' => 'LamSOFDS', 'sizes' => null, 'typeid' => 1, 'processid' => 12), array('process' => 'Large Format Print', 'category' => 1, 'code' => 'LFP', 'sizes' => null, 'typeid' => 1, 'processid' => 13), array('process' => 'Sublimation', 'category' => 1, 'code' => 'SUB', 'sizes' => null, 'typeid' => 1, 'processid' => 14), array('process' => 'A4 Cross Fold to A6', 'category' => 4, 'code' => 'A4xfA6', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 17), array('process' => 'A3 Cross Fold to A5', 'category' => 4, 'code' => 'A3xfA5', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 18), array('process' => 'A5 Double Fold to 1/3 A5', 'category' => 4, 'code' => 'A5df3rdA5', 'sizes' => '["21"]', 'typeid' => 9, 'processid' => 19), array('process' => 'A4 Double Fold to 1/3 A4', 'category' => 4, 'code' => 'A4df3rdA4', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 20), array('process' => 'A3 Double Fold to 1/3 A3', 'category' => 4, 'code' => 'A3df3rdA3', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 21), array('process' => 'A5 Single Fold to A6', 'category' => 4, 'code' => 'A5sfA6', 'sizes' => '["21","235"]', 'typeid' => 9, 'processid' => 22), array('process' => 'A4 Single Fold to A5', 'category' => 4, 'code' => 'A4sfA5', 'sizes' => '["2","234"]', 'typeid' => 9, 'processid' => 25), array('process' => 'A4 Single Fold to A5L', 'category' => 4, 'code' => 'A4sfA5L', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 26), array('process' => 'A3 Single Fold to A4', 'category' => 4, 'code' => 'A3sfA4', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 27), array('process' => 'A3 Single Fold to A3L', 'category' => 4, 'code' => 'A3sfA3L', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 28), array('process' => 'Gold Foil', 'category' => 4, 'code' => 'FOILGld', 'sizes' => null, 'typeid' => 1, 'processid' => 29), array('process' => 'Silver Foil', 'category' => 4, 'code' => 'FOILSlv', 'sizes' => null, 'typeid' => 1, 'processid' => 30), array('process' => 'Single Sided Spot UV', 'category' => 4, 'code' => 'spUVSS', 'sizes' => null, 'typeid' => 1, 'processid' => 31), array('process' => 'Scodix Hi Build', 'category' => 4, 'code' => 'ScdxHIB', 'sizes' => null, 'typeid' => 17, 'processid' => 32), array('process' => 'Scodix Sense', 'category' => 4, 'code' => 'ScdxSNS', 'sizes' => null, 'typeid' => 17, 'processid' => 33), array('process' => 'Scodix Gold Foil', 'category' => 4, 'code' => 'ScdxGLD', 'sizes' => null, 'typeid' => 17, 'processid' => 34), array('process' => 'Scodix Silver Foil', 'category' => 4, 'code' => 'ScdxSLV', 'sizes' => null, 'typeid' => 17, 'processid' => 35), array('process' => 'Scodix Foil', 'category' => 4, 'code' => 'ScdxFOIL', 'sizes' => null, 'typeid' => 17, 'processid' => 36), array('process' => 'Gloss Encapsulation', 'category' => 3, 'code' => 'EncapGLS', 'sizes' => null, 'typeid' => 1, 'processid' => 37), array('process' => 'Matt Encapsulation', 'category' => 4, 'code' => 'EncapMT', 'sizes' => null, 'typeid' => 1, 'processid' => 38), array('process' => 'Diecut', 'category' => 4, 'code' => 'Diecut', 'sizes' => null, 'typeid' => 1, 'processid' => 39), array('process' => 'Rounded Corners', 'category' => 4, 'code' => 'RndCNR', 'sizes' => null, 'typeid' => 10, 'processid' => 40), array('process' => '1 Colour', 'category' => 5, 'code' => '1col', 'sizes' => null, 'typeid' => 1, 'processid' => 44), array('process' => 'Full Colour + SS Pantone', 'category' => 5, 'code' => '5/4', 'sizes' => null, 'typeid' => 1, 'processid' => 45), array('process' => 'Full Colour + DS Pantone', 'category' => 5, 'code' => '5/5', 'sizes' => null, 'typeid' => 1, 'processid' => 46), array('process' => 'Single Fold to CC', 'category' => 4, 'code' => 'SFCC', 'sizes' => null, 'typeid' => 1, 'processid' => 47), array('process' => 'Edge Painted', 'category' => 4, 'code' => 'EgPaint', 'sizes' => null, 'typeid' => 1, 'processid' => 48), array('process' => 'Interlocking Flap', 'category' => 4, 'code' => 'LOCflaps', 'sizes' => null, 'typeid' => 1, 'processid' => 49), array('process' => 'Pocket & BC', 'category' => 4, 'code' => 'PocBC', 'sizes' => '["217"]', 'typeid' => 1, 'processid' => 50), array('process' => '4mm Pocket & BC', 'category' => 4, 'code' => '4mmPocBC', 'sizes' => '["217"]', 'typeid' => 1, 'processid' => 51), array('process' => '8 Page', 'category' => 2, 'code' => '8pp', 'sizes' => null, 'typeid' => 1, 'processid' => 53), array('process' => '16 Page', 'category' => 2, 'code' => '16pp', 'sizes' => null, 'typeid' => 1, 'processid' => 54), array('process' => 'Single Sided', 'category' => 2, 'code' => 'SS', 'sizes' => null, 'typeid' => 2, 'processid' => 55), array('process' => 'Double Sided', 'category' => 2, 'code' => 'DS', 'sizes' => null, 'typeid' => 2, 'processid' => 56), array('process' => 'Silk Lamination 1 Side', 'category' => 3, 'code' => 'LamSSslk', 'sizes' => null, 'typeid' => 15, 'processid' => 57), array('process' => 'Silk Lamination 2 Sides', 'category' => 3, 'code' => 'LamDSslk', 'sizes' => null, 'typeid' => 15, 'processid' => 58), array('process' => 'Anti Scuff Lam 1 Side', 'category' => 3, 'code' => 'LamSSscuff', 'sizes' => null, 'typeid' => 7, 'processid' => 59), array('process' => 'DS Anti Scuff Lam', 'category' => 3, 'code' => 'LamDSscuff', 'sizes' => null, 'typeid' => 7, 'processid' => 61), array('process' => 'Linen Lam 1 Side', 'category' => 3, 'code' => 'LamSSlinen', 'sizes' => null, 'typeid' => 6, 'processid' => 62), array('process' => 'DS Linen Lam', 'category' => 3, 'code' => 'LamDSlinen', 'sizes' => null, 'typeid' => 6, 'processid' => 63), array('process' => 'Vertical Business Card Slot', 'category' => 4, 'code' => 'DieVBC', 'sizes' => null, 'typeid' => 10, 'processid' => 64), array('process' => 'Horizontal Business Card Slot', 'category' => 4, 'code' => 'DieHBC', 'sizes' => null, 'typeid' => 10, 'processid' => 65), array('process' => 'A3 Cross Fold to A6', 'category' => 4, 'code' => 'A3xfA6', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 68), array('process' => 'A2 Cross Fold to A5', 'category' => 4, 'code' => 'A2xfA5', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 72), array('process' => 'Silver Stitch', 'category' => 4, 'code' => 'STITslv', 'sizes' => null, 'typeid' => 19, 'processid' => 73), array('process' => '2 Colour', 'category' => 5, 'code' => '2col', 'sizes' => null, 'typeid' => 1, 'processid' => 74), array('process' => 'Pad', 'category' => 4, 'code' => 'PAD', 'sizes' => null, 'typeid' => 19, 'processid' => 75), array('process' => 'Black Only', 'category' => 5, 'code' => 'Blk', 'sizes' => null, 'typeid' => 1, 'processid' => 76), array('process' => 'with Eyelets', 'category' => 4, 'code' => 'Eyelet', 'sizes' => null, 'typeid' => 12, 'processid' => 77), array('process' => 'No Eyelets', 'category' => 4, 'code' => 'NoEyelets', 'sizes' => null, 'typeid' => 12, 'processid' => 78), array('process' => '2 Part', 'category' => 4, 'code' => '1Perf', 'sizes' => null, 'typeid' => 20, 'processid' => 79), array('process' => '3 Part', 'category' => 4, 'code' => '2Perf', 'sizes' => null, 'typeid' => 20, 'processid' => 80), array('process' => 'Laser Cutting', 'category' => 4, 'code' => 'LASER', 'sizes' => null, 'typeid' => 21, 'processid' => 81), array('process' => 'Glue', 'category' => 4, 'code' => 'GLUE', 'sizes' => null, 'typeid' => 12, 'processid' => 82), array('process' => 'Drill', 'category' => 4, 'code' => 'DRILL', 'sizes' => null, 'typeid' => 22, 'processid' => 83), array('process' => 'SIngle Fold to 55x55mm', 'category' => 4, 'code' => 'SF55x55', 'sizes' => null, 'typeid' => 9, 'processid' => 84), array('process' => 'A6 Single Fold to A7', 'category' => 4, 'code' => 'A6sfA7', 'sizes' => '["4"]', 'typeid' => 9, 'processid' => 85), array('process' => 'Wiro Binding', 'category' => 4, 'code' => 'WIRO', 'sizes' => null, 'typeid' => 19, 'processid' => 86), array('process' => 'Bond', 'category' => 4, 'code' => 'BOND', 'sizes' => null, 'typeid' => 23, 'processid' => 87), array('process' => '14 Page', 'category' => 2, 'code' => '14pp', 'sizes' => null, 'typeid' => 2, 'processid' => 88), array('process' => '26 Page', 'category' => 2, 'code' => '26pp', 'sizes' => null, 'typeid' => 2, 'processid' => 89), array('process' => 'A2 Double Fold to A4', 'category' => 4, 'code' => 'A2dfA4', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 90), array('process' => 'A1 cross fold to A4', 'category' => 4, 'code' => 'A1xfA4', 'sizes' => '["19"]', 'typeid' => 9, 'processid' => 91), array('process' => '290mm Single Fold to 145mm', 'category' => 4, 'code' => '290sf145', 'sizes' => '["227"]', 'typeid' => 9, 'processid' => 92), array('process' => 'White Ink', 'category' => 5, 'code' => 'WhtINK', 'sizes' => null, 'typeid' => 1, 'processid' => 94), array('process' => '198mm Single Fold to 99mm', 'category' => 4, 'code' => '198sf99', 'sizes' => '["228"]', 'typeid' => 9, 'processid' => 95), array('process' => '370 Single Fold to 85mm', 'category' => 4, 'code' => '370sf85', 'sizes' => '["229"]', 'typeid' => 9, 'processid' => 96), array('process' => 'White Laminate', 'category' => 3, 'code' => 'WhtLAM', 'sizes' => null, 'typeid' => 24, 'processid' => 97), array('process' => 'A4 Single Fold to A4L', 'category' => 4, 'code' => 'A4sfA4L', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 98), array('process' => 'Anti Slip Laminate', 'category' => 3, 'code' => 'LamSSantislip', 'sizes' => null, 'typeid' => 25, 'processid' => 107), array('process' => '13 Leaves', 'category' => 2, 'code' => '13Leaf', 'sizes' => null, 'typeid' => 2, 'processid' => 108), array('process' => '7 Leaves', 'category' => 2, 'code' => '7 Leaf', 'sizes' => null, 'typeid' => 2, 'processid' => 109), array('process' => 'Stretch', 'category' => 4, 'code' => 'STRETCH', 'sizes' => null, 'typeid' => 12, 'processid' => 110), array('process' => 'A7 Folded to A9', 'category' => 4, 'code' => 'a7fa9', 'sizes' => '["243"]', 'typeid' => 23, 'processid' => 115), array('process' => 'A2 Cross Fold to A4', 'category' => 4, 'code' => 'a2xfA4', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 116), array('process' => 'Latex Finish (Scratch Card)', 'category' => 4, 'code' => 'LATEX', 'sizes' => null, 'typeid' => 26, 'processid' => 117)), 'processtypes' => array(array('type' => 'print', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 1), array('type' => 'sides', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 2), array('type' => 'mattlam', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 3), array('type' => 'glosslam', 'hasnooption' => 0, 'blocks' => '["8","17"]', 'typeid' => 4), array('type' => 'softtouchlam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 5), array('type' => 'linenlam', 'hasnooption' => 0, 'blocks' => '["17"]', 'typeid' => 6), array('type' => 'antiscufflam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 7), array('type' => 'spotuv', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 8), array('type' => 'fold', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 9), array('type' => 'diecut', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 10), array('type' => 'foil', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 11), array('type' => 'handfinish', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 12), array('type' => 'silklam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 15), array('type' => 'Scodix', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 17), array('type' => 'binding', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 19), array('type' => 'Perforation', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 20), array('type' => 'Laser', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 21), array('type' => 'Drill', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 22), array('type' => 'Bond', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 23), array('type' => 'White Laminate', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 24), array('type' => 'antisliplam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 25), array('type' => 'Latex', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 26)), 'accounting' => 'qb', 'baseholidays' => '2023-12-25,2023-12-26,2023-12-27,2023-12-28,2023-12-29', 'block_printing_orders_on_credit_hold' => '0', 'campaignmonitor_apikey' => 'bd175225853df3bf3c60f0a56fa651ef', 'campaignmonitor_listid' => '4bebbb2d83cf43ed99dbe982448cafcf', 'colour_main' => '#fc424a', 'colour_other' => '#a9332f', 'colour_other2' => '#f38668', 'colour_primary_rgba' => 'rgba(252, 66, 74 , 0.95)', 'colour_secondary' => '#c2443f', 'colour_secondary_rgba' => 'rgba(244, 102, 109, 0.7)', 'company_email' => 'info@jamjarprint.co.uk', 'company_telephone' => '01173731605', 'default_addressid' => '2', 'default_order_line_notes' => 'REPRO:\\n\\n\\n\\nPRINT:\\n\\n\\n\\nFINISHING:\\n\\n\\n\\nOTHER:', 'default_turnaround_days' => '5', 'delivery_stockcode' => 'DEL/COURIER', 'detrack_key' => '8ef8b494fa093f0abaebce13671a767d17e2811df7d3e793 ', 'display_invoiceemail_customers' => '1', 'dpd_our_contact' => 'Shaun Bibby', 'dpd_parcelweight_1' => '5', 'dpd_parcelweight_multiple' => '15', 'dpd_password' => 'flatpack', 'dpd_printer' => 'Fedex Label Printer', 'dpd_username' => 'jamjar1', 'ekomi_count' => '870', 'ekomi_rating' => '4.9', 'email_on_new_customer' => '0', 'email_on_new_order' => '0', 'email_on_new_order_type' => '0', 'enable_support' => '1', 'exchequer' => 'SIN', 'fedex_account' => '301802919', 'fedex_api_key' => 'l7808616d577dc4a4498e17a44141c693a', 'fedex_secret_key' => '8c731071-7e5d-4111-96d2-cfce22e2fb07', 'fedex_url' => 'https://apis.fedex.com', 'financial_month' => '8', 'googlemaps_key' => 'AIzaSyDnsSZvmS8TzYY54AKAkFfORWQNDaQKu1k', 'hotfolder_path' => 'artworkhotfolder', 'ignore_orders_before_start' => '1', 'internal_customers' => '[]', 'invoice_email' => 'accounts@jamjarprint.co.uk', 'locations_enabled' => '0', 'newcustomer_email' => 'hello@outofhand.co.uk', 'neworder_email' => 'hello@outofhand.co.uk', 'ops_start_date' => '2021-01-01', 'order_email' => 'info@jamjarprint.co.uk', 'payment_email' => 'info@jamjarprint.co.uk', 'pca_account' => 'FUEL111111', 'pca_key' => 'PF45-YM45-GP55-RE56', 'pca_on' => '1', 'po_email' => 'info@jamjarprint.co.uk', 'prodcode_separator' => '-', 'quickbooks_authcode' => 'AB11706524510RvFBIQeeQWJsOsGpokfDnMaSAwjPEKC5CiKYq', 'quickbooks_clientid' => 'ABzZiabR3jasGcfnMCm9x9HHx8SbjmTQFq27Yq80bgXYsoynlk', 'quickbooks_companyid' => '9130357639530906', 'quickbooks_description_fields' => '[{"prefix":"","field":"jobname"},{"prefix":"","field":"productname"}]', 'quickbooks_pobill_pushing' => '0', 'quickbooks_ponumber_on_statement' => '0', 'quickbooks_secret' => 'OOcwriYnHSwG4JZLUNiyfVCFwrkvjNuBaWyKWxF9', 'quote_email' => 'info@jamjarprint.co.uk', 'require_address_on_customers' => '1', 'require_job_ref_field' => '0', 'samplepack_email' => 'info@jamjarprint.co.uk', 'send_email_on_support_ticket' => '1', 'show_product_dropdowns' => '1', 'support_notification_email' => 'it@jamjarprint.co.uk', 'tbc_addressid' => '9', 'tradeprint_key' => 'ztlfkfm3tor9uwsd0tyqryaj', 'tradeprint_user' => 'outofhand', 'worldpay_installation_id' => '1099704', 'worldpay_merchant_code' => 'JAMJARPRINTLM1', 'worldpay_merchant_password' => 'vKzw7TAZ', 'worldpay_url' => 'https://secure.worldpay.com/wcc/purchase', 'orderemail' => 'info@jamjarprint.co.uk', 'worldpay_installationid' => '1099704', 'basket_usemincharge' => '1', 'basket_mincharge' => '15', 'productpage_proof' => '0', 'basket_proofcost' => '0', 'basket_freedeliveryamount' => '1000000', 'saledisabled' => '0', 'banneractive' => '0', 'bannercolour' => '#d73333', 'bannertextcolour' => '#130b0b', 'bannermessage' => 'Test banner', 'basket_pricemarkup' => '0', 'productpage_express' => '0', 'infoemail' => 'info@jamjarprint.co.uk', 'hascampaignmonitor' => '1', 'quoteemail' => 'info@jamjarprint.co.uk', 'samplepackemail' => 'info@jamjarprint.co.uk', 'worldpay_mdstring' => 'G3v6H940r3f4*Y4.3!FdfgB32Gtg5', 'homepage_carousel' => '1', 'homepage_articles' => '1', 'homepage_vertical_menu' => '0', 'homepage_news' => '1', 'homepage_upsell_display' => '0', 'homepage_upsell_products' => '41', 'homepage_heading_widget' => '0', 'homepage_heading_id' => '24', 'homepage_blurb_shown' => '0', 'homepage_blurb' => '<div class="row">
 <div class="col-md-6">
 <img src="/assets/images/b/promo.jpg" alt="">
 </div>
 <div class="col-md-6">
 <div class="promo-text">
 <h2>Edinburgh Fringe 2023</h2>
 <p>The largest arts festival in the world - working in partnership with The City of Edinburgh Council, we offer outdoor advertising spaces to all performers and venues. We also print hundreds of thousands of flyers / leaflets and posters for Fringe shows. We offer flyer and poster distribution to indoor outlets and on the street with our promotional teams undertaking hand to hand activity in all the hot spots throughout the city centre.</p>
 <a href="/fringe" class="button">Find Out More</a>
 </div>

 </div>
 </div>', 'productpage_jobname' => '0', 'page_title_headings' => '0', 'address_display' => 'Unit 1, New Queen Street<br>Bedminster<br/>Bristol <br> UK<br/>BS3 4AG', 'basket_displaytandcs' => '0', 'termsandconditions' => '', 'bacsdetails' => 'To make payment please find our details below these can also be found at the bottom of your confirmation email<br>
 Terms and Conditions apply.<br>
 Cheques payable to JamJar Print Ltd<br>
 Bank details. Barclays Bank, Bristol Branch<br>
 Sort code 20-13-45 Account No 70260649', 'heading_lowest_price' => '1', 'phonenumber' => '+448456809090', 'phonenumber_display' => '08456 80 90 90', 'productpage_showturnaround' => '1', 'basket_payment_bacs' => '1', 'basket_payment_credit' => '1', 'basket_requiretandcs' => '0', 'basket_minicart_icon' => '1', 'site_display_breadcrumbs' => '1', 'saledisabled_fringe' => 'Select...', 'maintenance_mode' => '0', 'maintenance_date' => 'Tuesday 7th May 2024', 'site_users' => '', 'basket_payment_online' => '1', 'frontendsettings' => array('orderemail' => 'info@jamjarprint.co.uk', 'worldpay_installationid' => '1099704', 'basket_usemincharge' => '1', 'basket_mincharge' => '15', 'productpage_proof' => '0', 'basket_proofcost' => '0', 'basket_freedeliveryamount' => '1000000', 'saledisabled' => '0', 'banneractive' => '0', 'bannercolour' => '#d73333', 'bannertextcolour' => '#130b0b', 'bannermessage' => 'Test banner', 'basket_pricemarkup' => '0', 'productpage_express' => '0', 'infoemail' => 'info@jamjarprint.co.uk', 'hascampaignmonitor' => '1', 'quoteemail' => 'info@jamjarprint.co.uk', 'samplepackemail' => 'info@jamjarprint.co.uk', 'worldpay_mdstring' => 'G3v6H940r3f4*Y4.3!FdfgB32Gtg5', 'homepage_carousel' => '1', 'homepage_articles' => '1', 'homepage_vertical_menu' => '0', 'homepage_news' => '1', 'homepage_upsell_display' => '0', 'homepage_upsell_products' => '41', 'homepage_heading_widget' => '0', 'homepage_heading_id' => '24', 'homepage_blurb_shown' => '0', 'homepage_blurb' => '<div class="row">
 <div class="col-md-6">
 <img src="/assets/images/b/promo.jpg" alt="">
 </div>
 <div class="col-md-6">
 <div class="promo-text">
 <h2>Edinburgh Fringe 2023</h2>
 <p>The largest arts festival in the world - working in partnership with The City of Edinburgh Council, we offer outdoor advertising spaces to all performers and venues. We also print hundreds of thousands of flyers / leaflets and posters for Fringe shows. We offer flyer and poster distribution to indoor outlets and on the street with our promotional teams undertaking hand to hand activity in all the hot spots throughout the city centre.</p>
 <a href="/fringe" class="button">Find Out More</a>
 </div>

 </div>
 </div>', 'productpage_jobname' => '0', 'page_title_headings' => '0', 'address_display' => 'Unit 1, New Queen Street<br>Bedminster<br/>Bristol <br> UK<br/>BS3 4AG', 'basket_displaytandcs' => '0', 'termsandconditions' => '', 'bacsdetails' => 'To make payment please find our details below these can also be found at the bottom of your confirmation email<br>
 Terms and Conditions apply.<br>
 Cheques payable to JamJar Print Ltd<br>
 Bank details. Barclays Bank, Bristol Branch<br>
 Sort code 20-13-45 Account No 70260649', 'heading_lowest_price' => '1', 'phonenumber' => '+448456809090', 'phonenumber_display' => '08456 80 90 90', 'productpage_showturnaround' => '1', 'basket_payment_bacs' => '1', 'basket_payment_credit' => '1', 'basket_requiretandcs' => '0', 'basket_minicart_icon' => '1', 'site_display_breadcrumbs' => '1', 'saledisabled_fringe' => 'Select...', 'maintenance_mode' => '0', 'maintenance_date' => 'Tuesday 7th May 2024', 'site_users' => '', 'basket_payment_online' => '1')), array())
     (vendor/twig/twig/src/Template.php:394)
  at Twig\Template->displayWithErrorHandling(array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null, 'app' => object(AppVariable), 'company' => 'jamjar', 'cdn_domain' => 'https://ops.jamjarprint.co.uk', 'api_domain' => 'https://print-ops.com', 'google_maps_key' => 'AIzaSyC_R7ekthtQ0Xa8u0orlv9ugiS79a3Qf_w', 'company_name' => 'JamJar Print', 'siteMenu' => array(array('menu' => 'Print', 'active' => 1, 'menuid' => 1, 'headings' => array(array('headingid' => 24, 'friendlyurl' => 'business-cards', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Business Cards', 'pages' => array(array('pageid' => 143, 'visibility' => 1, 'pagenavname' => '350gsm Pulp', 'friendlyurl' => 'printing/pulp-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 160, 'pageid' => 143, 'image' => '5b179bc84d76b.jpg', 'imageflag' => '1'))), array('pageid' => 46, 'visibility' => 1, 'pagenavname' => '400gsm Matt Laminated', 'friendlyurl' => 'printing/business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 130, 'pageid' => 46, 'image' => '5b179bd2ca655.jpg', 'imageflag' => '1'))), array('pageid' => 136, 'visibility' => 1, 'pagenavname' => '400gsm Foiled Matt Laminated', 'friendlyurl' => 'printing/foiled-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 158, 'pageid' => 136, 'image' => '5b179be016a10.jpg', 'imageflag' => '1'))), array('pageid' => 139, 'visibility' => 1, 'pagenavname' => '400gsm Spot UV Matt Laminated', 'friendlyurl' => 'printing/spot-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 159, 'pageid' => 139, 'image' => '5a37f4368d1f6.png', 'imageflag' => '1'))), array('pageid' => 144, 'visibility' => 0, 'pagenavname' => '400gsm Gloss Flood UV', 'friendlyurl' => 'printing/gloss-flood-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 161, 'pageid' => 144, 'image' => 'JamJar_Business_Card4.jpg', 'imageflag' => '1'))), array('pageid' => 48, 'visibility' => 1, 'pagenavname' => '400gsm Shaped Matt Laminated', 'friendlyurl' => 'printing/shaped-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 132, 'pageid' => 48, 'image' => '5a37f53b12013.jpg', 'imageflag' => '1'))), array('pageid' => 224, 'visibility' => 1, 'pagenavname' => 'Showcase Business Cards', 'friendlyurl' => 'printing/showcase-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 190, 'pageid' => 224, 'image' => '5baa5ff702c62.jpg', 'imageflag' => '1'))), array('pageid' => 235, 'visibility' => 1, 'pagenavname' => '600gsm Soft Touch Laminated Business Cards', 'friendlyurl' => 'printing/600gsm-soft-touch-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 329, 'pageid' => 235, 'image' => '5afaf052aee49.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 131, 'visibility' => 1, 'pagenavname' => '600gsm Matt Laminated', 'friendlyurl' => 'printing/600gsm-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 328, 'pageid' => 131, 'image' => '5b179be9f20a0.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 153, 'visibility' => 1, 'pagenavname' => '600gsm Spot UV Matt Laminated', 'friendlyurl' => 'printing/600gsm-spot-uv-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 165, 'pageid' => 153, 'image' => '5a37f44a742df.png', 'imageflag' => '1'))), array('pageid' => 244, 'visibility' => 1, 'pagenavname' => '600 Micron Uncoated', 'friendlyurl' => 'printing/600micron-uncoated-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 200, 'pageid' => 244, 'image' => '57a06ac984575.jpg', 'imageflag' => '1'))), array('pageid' => 245, 'visibility' => 1, 'pagenavname' => 'Scodix Sense', 'friendlyurl' => 'printing/scodix-sense-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 201, 'pageid' => 245, 'image' => '57eb94f6b41bd.jpg', 'imageflag' => '1'))), array('pageid' => 246, 'visibility' => 1, 'pagenavname' => 'Scodix Foil', 'friendlyurl' => 'printing/scodix-foil-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 202, 'pageid' => 246, 'image' => '57eb9731f0e8b.jpg', 'imageflag' => '1'))), array('pageid' => 247, 'visibility' => 1, 'pagenavname' => 'Scodix Hi-Build', 'friendlyurl' => 'printing/scodix-hi-build-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 203, 'pageid' => 247, 'image' => '57eb973a87bd4.jpg', 'imageflag' => '1'))), array('pageid' => 262, 'visibility' => 1, 'pagenavname' => 'Edge Painted Business Cards (600gsm Matt Lam)', 'friendlyurl' => 'printing/edge-painted-business-cards-laminated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 217, 'pageid' => 262, 'image' => '59a517638c028.jpg', 'imageflag' => '1'))), array('pageid' => 263, 'visibility' => 0, 'pagenavname' => 'Edge Painted Business Cards (600 Micron Uncoated)', 'friendlyurl' => 'printing/edge-painted-business-cards-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 218, 'pageid' => 263, 'image' => '59a51e9bbf3a6.jpg', 'imageflag' => '1'))), array('pageid' => 265, 'visibility' => 1, 'pagenavname' => 'White Ink Business Cards', 'friendlyurl' => 'printing/white-ink-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 220, 'pageid' => 265, 'image' => '5a1fe0b703687.jpg', 'imageflag' => '1'))), array('pageid' => 282, 'visibility' => 1, 'pagenavname' => 'Repurposed Business Cards', 'friendlyurl' => 'printing/repurposed-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 237, 'pageid' => 282, 'image' => '5dde9601ea88b.gif', 'imageflag' => '1'))), array('pageid' => 289, 'visibility' => 1, 'pagenavname' => 'Rounded Corners Business Cards', 'friendlyurl' => 'printing/roundedcorners-businesscards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 244, 'pageid' => 289, 'image' => '5e5f71a9d4d9a.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5a37f707dbaa2.jpg'), array('headingid' => 75, 'friendlyurl' => 'wall-planners', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Wall Planners', 'pages' => array(), 'users' => array(), 'image' => 'no'), array('headingid' => 74, 'friendlyurl' => 'wall-calendars', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Wall Calendars', 'pages' => array(), 'users' => array(), 'image' => 'no'), array('headingid' => 76, 'friendlyurl' => 'promo-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Promo Products (Not Visible)', 'pages' => array(array('pageid' => 194, 'visibility' => 0, 'pagenavname' => 'Free Services', 'friendlyurl' => 'printing/free-services', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array())), 'users' => array(), 'image' => 'no'), array('headingid' => 78, 'friendlyurl' => 'davies-turner', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Davies Turner', 'pages' => array(array('pageid' => 264, 'visibility' => 2, 'pagenavname' => 'DT Business Cards', 'friendlyurl' => 'printing/davies-turner-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 219, 'pageid' => 264, 'image' => '59c36c9114374.jpg', 'imageflag' => '1'))), array('pageid' => 266, 'visibility' => 2, 'pagenavname' => 'Oversized Presentation Folder', 'friendlyurl' => 'printing/davies-turner-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 221, 'pageid' => 266, 'image' => '59d35b0aa607a.jpg', 'imageflag' => '1'))), array('pageid' => 267, 'visibility' => 2, 'pagenavname' => 'Davies Turner Brochures', 'friendlyurl' => 'printing/davies-turner-brochures', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 222, 'pageid' => 267, 'image' => '59d35b137af48.jpg', 'imageflag' => '1'))), array('pageid' => 288, 'visibility' => 2, 'pagenavname' => 'DT Comp Slips', 'friendlyurl' => 'printing/davies-turner-comp-slips', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 243, 'pageid' => 288, 'image' => '5e4d45d14d01f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '59d34df21121c.jpg'), array('headingid' => 40, 'friendlyurl' => 'posters', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Posters & Point of Sale', 'pages' => array(array('pageid' => 41, 'visibility' => 1, 'pagenavname' => 'Fly Posters', 'friendlyurl' => 'printing/fly-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 126, 'pageid' => 41, 'image' => '59e4b4af1084c.gif', 'imageflag' => '1'))), array('pageid' => 42, 'visibility' => 1, 'pagenavname' => 'Digital Colour Posters', 'friendlyurl' => 'printing/digital-colour-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 127, 'pageid' => 42, 'image' => '570f7c6ae4ca7.jpg', 'imageflag' => '1'))), array('pageid' => 43, 'visibility' => 1, 'pagenavname' => 'Large Format Inkjet', 'friendlyurl' => 'printing/large-format-inkjet-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 128, 'pageid' => 43, 'image' => '570f7c78441aa.jpg', 'imageflag' => '1'))), array('pageid' => 44, 'visibility' => 1, 'pagenavname' => 'Lithographic Posters', 'friendlyurl' => 'printing/litho-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 129, 'pageid' => 44, 'image' => '570f7c88b75f6.jpg', 'imageflag' => '1'))), array('pageid' => 214, 'visibility' => 1, 'pagenavname' => 'Banner Stands', 'friendlyurl' => 'printing/banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 288, 'pageid' => 214, 'image' => 'Bannerstand resize.png', 'imageflag' => null))), array('pageid' => 215, 'visibility' => 1, 'pagenavname' => 'Vinyl Banners', 'friendlyurl' => 'printing/vinyl-banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 182, 'pageid' => 215, 'image' => '570f7cad9d2e5.jpg', 'imageflag' => '1'))), array('pageid' => 216, 'visibility' => 1, 'pagenavname' => 'Light-Box Graphic Posters', 'friendlyurl' => 'printing/light-box-graphic-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 183, 'pageid' => 216, 'image' => '570f7cbcb279d.jpg', 'imageflag' => '1'))), array('pageid' => 217, 'visibility' => 1, 'pagenavname' => 'Outdoor Posters', 'friendlyurl' => 'printing/outdoor-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 184, 'pageid' => 217, 'image' => '570f7ccfab65e.jpg', 'imageflag' => '1'))), array('pageid' => 303, 'visibility' => 1, 'pagenavname' => 'Mounted Posters', 'friendlyurl' => 'mounted-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => '<br>', 'images' => array(array('imageid' => 290, 'pageid' => 303, 'image' => 'contactless resized.jpg', 'imageflag' => null))), array('pageid' => 297, 'visibility' => 1, 'pagenavname' => 'Mounted Signs', 'friendlyurl' => 'printing/mounted-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 252, 'pageid' => 297, 'image' => '5ed4f0d3c92de.gif', 'imageflag' => '1'), array('imageid' => 283, 'pageid' => 297, 'image' => 'contactless_payment5.jpg', 'imageflag' => null), array('imageid' => 284, 'pageid' => 297, 'image' => 'social_distancing5.jpg', 'imageflag' => null), array('imageid' => 285, 'pageid' => 297, 'image' => 'wash_hands5.jpg', 'imageflag' => null), array('imageid' => 286, 'pageid' => 297, 'image' => 'wear_masks5.jpg', 'imageflag' => null), array('imageid' => 287, 'pageid' => 297, 'image' => 'wipe_down5.jpg', 'imageflag' => null))), array('pageid' => 68, 'visibility' => 1, 'pagenavname' => 'Deluxe Canvas Prints', 'friendlyurl' => 'printing/deluxe-canvas-prints', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 148, 'pageid' => 68, 'image' => '570f7d27c3718.jpg', 'imageflag' => '1'))), array('pageid' => 69, 'visibility' => 0, 'pagenavname' => 'Pro Canvas Prints', 'friendlyurl' => 'printing/pro-canvas-prints', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 149, 'pageid' => 69, 'image' => '570f7d37b24ca.jpg', 'imageflag' => '1'))), array('pageid' => 304, 'visibility' => 1, 'pagenavname' => 'Encapsulated Posters', 'friendlyurl' => 'encapsulated-posters', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 291, 'pageid' => 304, 'image' => 'Encapsulated Poster resize.jpg', 'imageflag' => null)))), 'users' => array(), 'image' => '570f7c4ca0636.jpg'), array('headingid' => 80, 'friendlyurl' => 'covid19-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Covid-19 Protection Products', 'pages' => array(array('pageid' => 302, 'visibility' => 1, 'pagenavname' => 'Single Use Recycled Menus', 'friendlyurl' => 'printing/single-use-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 257, 'pageid' => 302, 'image' => '5ee898ae6fb05.jpg', 'imageflag' => '1'))), array('pageid' => 290, 'visibility' => 1, 'pagenavname' => 'Hand Sanitising Station', 'friendlyurl' => 'printing/hand-sanitising-station', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 245, 'pageid' => 290, 'image' => '5ec6372f76812.jpg', 'imageflag' => '1'))), array('pageid' => 291, 'visibility' => 0, 'pagenavname' => 'Sneeze Guards', 'friendlyurl' => 'printing/sneeze-guards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 71, 'pageid' => 291, 'image' => 'sneeze_guard.gif', 'imageflag' => null), array('imageid' => 72, 'pageid' => 291, 'image' => 'sneeze_guard_black.jpg', 'imageflag' => null), array('imageid' => 73, 'pageid' => 291, 'image' => 'sneeze_guard_blue_nhs.jpg', 'imageflag' => null), array('imageid' => 74, 'pageid' => 291, 'image' => 'sneeze_guard_grey.jpg', 'imageflag' => null), array('imageid' => 75, 'pageid' => 291, 'image' => 'sneeze_guard_yellow.jpg', 'imageflag' => null), array('imageid' => 76, 'pageid' => 291, 'image' => 'sneeze_guard_green.jpg', 'imageflag' => null), array('imageid' => 246, 'pageid' => 291, 'image' => '5ec5244189c2f.gif', 'imageflag' => '1'))), array('pageid' => 292, 'visibility' => 1, 'pagenavname' => 'Social Distancing PVC Floor Tape', 'friendlyurl' => 'printing/floor-tape', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 247, 'pageid' => 292, 'image' => '5ee08df6aba62.jpg', 'imageflag' => '1'), array('imageid' => 259, 'pageid' => 292, 'image' => 'tape2.jpg', 'imageflag' => null), array('imageid' => 260, 'pageid' => 292, 'image' => 'tape3.jpg', 'imageflag' => null), array('imageid' => 261, 'pageid' => 292, 'image' => 'tape4.jpg', 'imageflag' => null))), array('pageid' => 295, 'visibility' => 1, 'pagenavname' => '200gsm Silk Signs', 'friendlyurl' => 'printing/200gsm-silk-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 250, 'pageid' => 295, 'image' => '5ec52ad1170ce.gif', 'imageflag' => '1'), array('imageid' => 273, 'pageid' => 295, 'image' => 'contacless_payment.jpg', 'imageflag' => null), array('imageid' => 274, 'pageid' => 295, 'image' => 'wipe_down.jpg', 'imageflag' => null), array('imageid' => 275, 'pageid' => 295, 'image' => 'wash_hands3.jpg', 'imageflag' => null), array('imageid' => 276, 'pageid' => 295, 'image' => 'social_distancing3.jpg', 'imageflag' => null), array('imageid' => 277, 'pageid' => 295, 'image' => 'wear_masks3.jpg', 'imageflag' => null))), array('pageid' => 296, 'visibility' => 1, 'pagenavname' => 'Encapsulated Signs', 'friendlyurl' => 'printing/encapsulated-signs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 251, 'pageid' => 296, 'image' => '5ed4f0f43b832.gif', 'imageflag' => '1'), array('imageid' => 278, 'pageid' => 296, 'image' => 'contacless_payment4.jpg', 'imageflag' => null), array('imageid' => 279, 'pageid' => 296, 'image' => 'social_distancing4.jpg', 'imageflag' => null), array('imageid' => 280, 'pageid' => 296, 'image' => 'wash_hands4.jpg', 'imageflag' => null), array('imageid' => 281, 'pageid' => 296, 'image' => 'wear_masks4.jpg', 'imageflag' => null), array('imageid' => 282, 'pageid' => 296, 'image' => 'wipe_down4.jpg', 'imageflag' => null))), array('pageid' => 298, 'visibility' => 1, 'pagenavname' => 'Mounted Signs with Strut', 'friendlyurl' => 'printing/mounted-signs-with-strut', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 96, 'pageid' => 298, 'image' => 'clean_after_use.jpg', 'imageflag' => null), array('imageid' => 97, 'pageid' => 298, 'image' => 'contactless_payment.jpg', 'imageflag' => null), array('imageid' => 98, 'pageid' => 298, 'image' => 'social_distancing.jpg', 'imageflag' => null), array('imageid' => 99, 'pageid' => 298, 'image' => 'wash_hands.jpg', 'imageflag' => null), array('imageid' => 100, 'pageid' => 298, 'image' => 'wear_masks.jpg', 'imageflag' => null), array('imageid' => 253, 'pageid' => 298, 'image' => '5ed4f0e410e58.gif', 'imageflag' => '1'))), array('pageid' => 299, 'visibility' => 1, 'pagenavname' => 'Pull-Up Banner Stands', 'friendlyurl' => 'printing/pull-up-banners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 254, 'pageid' => 299, 'image' => '5ec79f4a86219.jpg', 'imageflag' => '1'))), array('pageid' => 300, 'visibility' => 1, 'pagenavname' => 'Vinyl Banners', 'friendlyurl' => 'printing/vinylbanners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 255, 'pageid' => 300, 'image' => '5ec79f562b52b.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5eafefd8bac39.png'), array('headingid' => 35, 'friendlyurl' => 'postcards-heading', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Postcards', 'pages' => array(array('pageid' => 219, 'visibility' => 1, 'pagenavname' => 'Postcards', 'friendlyurl' => 'printing/postcards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 186, 'pageid' => 219, 'image' => '56fb97f4a712f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fb97e32c818.jpg'), array('headingid' => 28, 'friendlyurl' => 'folded-leaflets', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Folded Leaflets', 'pages' => array(array('pageid' => 222, 'visibility' => 1, 'pagenavname' => '120gsm Matt Folded Leaflets', 'friendlyurl' => 'printing/matt-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 189, 'pageid' => 222, 'image' => 'Jamjar_Folded_Leaflets_1.jpg', 'imageflag' => '1'))), array('pageid' => 221, 'visibility' => 1, 'pagenavname' => '150gsm Gloss Folded Leaflets', 'friendlyurl' => 'printing/gloss-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 188, 'pageid' => 221, 'image' => 'JamJar_Folded_Leaflet.jpg', 'imageflag' => '1'))), array('pageid' => 204, 'visibility' => 1, 'pagenavname' => '170gsm Folded Silk Leaflets', 'friendlyurl' => 'printing/silk-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 171, 'pageid' => 204, 'image' => 'Jamjar_Folded_Leaflets_3.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7a9a79a5f.jpg'), array('headingid' => 26, 'friendlyurl' => 'leaflets-and-flyers', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Leaflets & Flyers', 'pages' => array(array('pageid' => 220, 'visibility' => 1, 'pagenavname' => '120gsm Matt Uncoated Leaflets', 'friendlyurl' => 'printing/matt-uncoated-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 187, 'pageid' => 220, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '1'))), array('pageid' => 205, 'visibility' => 1, 'pagenavname' => '150gsm Gloss Leaflets', 'friendlyurl' => 'printing/gloss-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 172, 'pageid' => 205, 'image' => 'JamJar_Leaflets_3.jpg', 'imageflag' => '1'))), array('pageid' => 146, 'visibility' => 1, 'pagenavname' => '170gsm Silk Leaflets', 'friendlyurl' => 'printing/silk-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 162, 'pageid' => 146, 'image' => '570f7a8006330.jpg', 'imageflag' => '1'))), array('pageid' => 34, 'visibility' => 1, 'pagenavname' => '300gsm Silk Flyers', 'friendlyurl' => 'printing/standard-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 121, 'pageid' => 34, 'image' => '56f1743d5615a.jpg', 'imageflag' => '1'))), array('pageid' => 38, 'visibility' => 1, 'pagenavname' => '300gsm Gloss Laminated Flyers', 'friendlyurl' => 'printing/gloss-laminated-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 123, 'pageid' => 38, 'image' => 'jamjarprint_product_main_b3_glosslam_1.jpg', 'imageflag' => '1'))), array('pageid' => 60, 'visibility' => 1, 'pagenavname' => '300gsm Die Cut Flyers', 'friendlyurl' => 'printing/die-cut-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 143, 'pageid' => 60, 'image' => 'JamJar_Diecut_Leaflet_3.jpg', 'imageflag' => '1'))), array('pageid' => 36, 'visibility' => 1, 'pagenavname' => '350 micron Fibrous Pulp Flyers', 'friendlyurl' => 'printing/pulp-board-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 122, 'pageid' => 36, 'image' => '570f5e9a14160.jpg', 'imageflag' => '1'))), array('pageid' => 234, 'visibility' => 0, 'pagenavname' => '450gsm Silk Flyers', 'friendlyurl' => 'printing/450gsm-silk-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 192, 'pageid' => 234, 'image' => '570e2ca70fdcc.jpg', 'imageflag' => '1'))), array('pageid' => 301, 'visibility' => 0, 'pagenavname' => 'High Volume Leaflets & Flyers', 'friendlyurl' => 'printing/high-volume-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 256, 'pageid' => 301, 'image' => '5ec3dfc2b8e9a.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => 'JamJar_Flyers_Main.jpg'), array('headingid' => 30, 'friendlyurl' => 'booklets', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Booklets & Books', 'pages' => array(array('pageid' => 77, 'visibility' => 1, 'pagenavname' => 'Soft Cover Booklets', 'friendlyurl' => 'printing/soft-cover-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 152, 'pageid' => 77, 'image' => 'JamJar_Booklets.jpg', 'imageflag' => '1'))), array('pageid' => 233, 'visibility' => 1, 'pagenavname' => 'Hard Cover Booklets ', 'friendlyurl' => 'printing/hard-cover-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 191, 'pageid' => 233, 'image' => '5714beee9c523.jpg', 'imageflag' => '1'))), array('pageid' => 272, 'visibility' => 1, 'pagenavname' => 'Case Bound Books', 'friendlyurl' => 'printing/case-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 227, 'pageid' => 272, 'image' => '5a72fe69ac14f.jpg', 'imageflag' => '1'))), array('pageid' => 273, 'visibility' => 1, 'pagenavname' => 'Wiro Bound Books', 'friendlyurl' => 'printing/wiro-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 228, 'pageid' => 273, 'image' => '5a72fe7585a38.jpg', 'imageflag' => '1'))), array('pageid' => 274, 'visibility' => 1, 'pagenavname' => 'Perfect Bound Books', 'friendlyurl' => 'printing/perfect-bound-books', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 229, 'pageid' => 274, 'image' => '5a72fe825f20f.jpg', 'imageflag' => '1'))), array('pageid' => 275, 'visibility' => 1, 'pagenavname' => 'Singer Sewn Booklets', 'friendlyurl' => 'printing/singer-sewn-booklets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 230, 'pageid' => 275, 'image' => '5aba77a9cb2c1.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fb95f92ffb1.jpg'), array('headingid' => 29, 'friendlyurl' => 'menus-and-brochures', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Menus & Brochures', 'pages' => array(array('pageid' => 64, 'visibility' => 1, 'pagenavname' => 'Gloss Laminated Brochures / Folded Menus', 'friendlyurl' => 'printing/gloss-laminated-brouchures-and-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 145, 'pageid' => 64, 'image' => '56fba2cf0b461.jpg', 'imageflag' => '1'))), array('pageid' => 66, 'visibility' => 1, 'pagenavname' => 'Matt Laminated Brochures / Folded Menus', 'friendlyurl' => 'printing/matt-laminated-brouchures-and-menus', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 147, 'pageid' => 66, 'image' => '570f7abc29538.jpg', 'imageflag' => '1'))), array('pageid' => 286, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Brochures/Folded Menus', 'friendlyurl' => 'printing/scodix-brochures', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 241, 'pageid' => 286, 'image' => '5e282bd4032cf.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fba512746fc.jpg'), array('headingid' => 43, 'friendlyurl' => 'canvas-prints', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Canvas Prints', 'pages' => array(), 'users' => array(), 'image' => '570f7d181ed90.jpg'), array('headingid' => 31, 'friendlyurl' => 'stationery', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Stationery, Pads & Envelopes', 'pages' => array(array('pageid' => 50, 'visibility' => 1, 'pagenavname' => 'Letterheads', 'friendlyurl' => 'printing/letterheads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 134, 'pageid' => 50, 'image' => '570f7af0cd3a4.jpg', 'imageflag' => '1'))), array('pageid' => 51, 'visibility' => 1, 'pagenavname' => 'Compliment Slips', 'friendlyurl' => 'printing/compliment-slips', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 135, 'pageid' => 51, 'image' => '570f7b0219f96.jpg', 'imageflag' => '1'))), array('pageid' => 52, 'visibility' => 1, 'pagenavname' => 'Stationery Packages', 'friendlyurl' => 'printing/stationery-packages', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 136, 'pageid' => 52, 'image' => '570f7b2986253.jpg', 'imageflag' => '1'))), array('pageid' => 134, 'visibility' => 1, 'pagenavname' => '2 Part NCR Pads', 'friendlyurl' => 'printing/2part-ncr-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 156, 'pageid' => 134, 'image' => '570f7b3b640b6.jpg', 'imageflag' => '1'))), array('pageid' => 135, 'visibility' => 1, 'pagenavname' => '3 Part NCR Pads', 'friendlyurl' => 'printing/3part-ncr-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 157, 'pageid' => 135, 'image' => '570f7b51ee1b0.jpg', 'imageflag' => '1'))), array('pageid' => 190, 'visibility' => 1, 'pagenavname' => 'Envelopes', 'friendlyurl' => 'printing/envelopes', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 166, 'pageid' => 190, 'image' => '570f7b6081e21.jpg', 'imageflag' => '1'))), array('pageid' => 258, 'visibility' => 0, 'pagenavname' => 'Pads', 'friendlyurl' => 'printing/offer-pads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array()), array('pageid' => 285, 'visibility' => 1, 'pagenavname' => 'Notepads', 'friendlyurl' => 'printing/notepads', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 240, 'pageid' => 285, 'image' => '5e202da5040d5.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => 'NCR.jpg'), array('headingid' => 36, 'friendlyurl' => 'folders', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Folders', 'pages' => array(array('pageid' => 79, 'visibility' => 0, 'pagenavname' => 'One Colour (Pantone) Folders', 'friendlyurl' => 'printing/pantone-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 153, 'pageid' => 79, 'image' => '570f7bab0ca35.jpg', 'imageflag' => '1'))), array('pageid' => 211, 'visibility' => 1, 'pagenavname' => 'Full Colour, Single Sided Folders', 'friendlyurl' => 'printing/single-sided-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 178, 'pageid' => 211, 'image' => '570f7bb8c5878.jpg', 'imageflag' => '1'))), array('pageid' => 212, 'visibility' => 1, 'pagenavname' => 'Full Colour, Double Sided Folder', 'friendlyurl' => 'printing/double-sided-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 179, 'pageid' => 212, 'image' => '570f7bc756df1.jpg', 'imageflag' => '1'))), array('pageid' => 213, 'visibility' => 1, 'pagenavname' => 'Full Colour Spot UV Folders', 'friendlyurl' => 'printing/spot-uv-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 180, 'pageid' => 213, 'image' => '570f7bd4b695b.jpg', 'imageflag' => '1'))), array('pageid' => 251, 'visibility' => 1, 'pagenavname' => 'Showcase Folders', 'friendlyurl' => 'printing/showcase-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 66, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Animated_Close.gif', 'imageflag' => null), array('imageid' => 67, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close2.jpg', 'imageflag' => null), array('imageid' => 68, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close1.jpg', 'imageflag' => null), array('imageid' => 69, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close3.jpg', 'imageflag' => null), array('imageid' => 70, 'pageid' => 251, 'image' => 'JamJar_ShowCase_Folder_Close4.jpg', 'imageflag' => null), array('imageid' => 207, 'pageid' => 251, 'image' => '5851462950dc0.gif', 'imageflag' => '1'))), array('pageid' => 322, 'visibility' => 1, 'pagenavname' => 'Full Colour Scodix Sense Folders', 'friendlyurl' => 'printing/scodix-sense-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 330, 'pageid' => 322, 'image' => 'JamJar_Fodler_Sense.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 323, 'visibility' => 1, 'pagenavname' => 'Full Colour Scodix Foil Folders', 'friendlyurl' => 'printing/scodix-foil-folders', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 331, 'pageid' => 323, 'image' => 'JamJar_Folder_Folder.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '570f7b8c31e62.jpg'), array('headingid' => 39, 'friendlyurl' => 'stickers-and-labels', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Stickers & Labels', 'pages' => array(array('pageid' => 208, 'visibility' => 1, 'pagenavname' => 'Lithographic Stickers', 'friendlyurl' => 'printing/litho-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 175, 'pageid' => 208, 'image' => 'Jamjar_sticker1.jpg', 'imageflag' => '1'))), array('pageid' => 209, 'visibility' => 1, 'pagenavname' => 'Shaped Stickers', 'friendlyurl' => 'printing/shaped-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 176, 'pageid' => 209, 'image' => 'Jamjar_rounded_Sticker.jpg', 'imageflag' => '1'))), array('pageid' => 210, 'visibility' => 1, 'pagenavname' => 'Vinyl Stickers', 'friendlyurl' => 'printing/vinyl-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 177, 'pageid' => 210, 'image' => '570e4c394afbb.jpg', 'imageflag' => '1'))), array('pageid' => 294, 'visibility' => 1, 'pagenavname' => 'Window Stickers', 'friendlyurl' => 'printing/window-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 249, 'pageid' => 294, 'image' => '5ec52afb8d0c5.gif', 'imageflag' => '1'), array('imageid' => 268, 'pageid' => 294, 'image' => 'open_collections.jpg', 'imageflag' => null), array('imageid' => 269, 'pageid' => 294, 'image' => 'sanitise_hands.jpg', 'imageflag' => null), array('imageid' => 270, 'pageid' => 294, 'image' => 'window_sticker.jpg', 'imageflag' => null), array('imageid' => 271, 'pageid' => 294, 'image' => 'contactless_payment2.jpg', 'imageflag' => null), array('imageid' => 272, 'pageid' => 294, 'image' => 'wear_masks2.jpg', 'imageflag' => null))), array('pageid' => 73, 'visibility' => 1, 'pagenavname' => 'Digital Stickers', 'friendlyurl' => 'printing/digital-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 151, 'pageid' => 73, 'image' => '57233baf9d992.jpg', 'imageflag' => '1'))), array('pageid' => 277, 'visibility' => 1, 'pagenavname' => 'Kraft Stickers', 'friendlyurl' => 'printing/kraftstickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 232, 'pageid' => 277, 'image' => '5c7673643b147.jpg', 'imageflag' => '1'))), array('pageid' => 287, 'visibility' => 1, 'pagenavname' => 'Laser Cut Stickers', 'friendlyurl' => 'printing/lasercut-stickers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 242, 'pageid' => 287, 'image' => '5e57aa4ba2ff3.jpg', 'imageflag' => '1'))), array('pageid' => 293, 'visibility' => 1, 'pagenavname' => 'Floor Graphics', 'friendlyurl' => 'printing/floor-graphics', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 248, 'pageid' => 293, 'image' => '5ec52ac670aa8.gif', 'imageflag' => '1'), array('imageid' => 263, 'pageid' => 293, 'image' => '2metres_blue.jpg', 'imageflag' => null), array('imageid' => 264, 'pageid' => 293, 'image' => '2metres_yellow.jpg', 'imageflag' => null), array('imageid' => 265, 'pageid' => 293, 'image' => 'oneway_orange.jpg', 'imageflag' => null), array('imageid' => 266, 'pageid' => 293, 'image' => 'oneway_yellow.jpg', 'imageflag' => null), array('imageid' => 267, 'pageid' => 293, 'image' => 'social_distancing_floor.jpg', 'imageflag' => null))), array('pageid' => 347, 'visibility' => 2, 'pagenavname' => 'Scodix Stickers', 'friendlyurl' => 'printing/scodix-stickers', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 363, 'pageid' => 347, 'image' => 'Scodix Stickers Final.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => 'JamJar_Stickers_Labels.jpg'), array('headingid' => 23, 'friendlyurl' => 'eco-friendly-range', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Eco-Friendly Range', 'pages' => array(array('pageid' => 32, 'visibility' => 1, 'pagenavname' => 'Recycled Stationery', 'friendlyurl' => 'printing/recycled-stationery', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 119, 'pageid' => 32, 'image' => '570f78b191fcf.jpg', 'imageflag' => '1'))), array('pageid' => 29, 'visibility' => 1, 'pagenavname' => 'Recycled Matt Flyers', 'friendlyurl' => 'printing/recycled-matt-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 117, 'pageid' => 29, 'image' => '570f78fa34586.jpg', 'imageflag' => '1'))), array('pageid' => 33, 'visibility' => 1, 'pagenavname' => 'Recycled Leaflets', 'friendlyurl' => 'printing/recycled-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 120, 'pageid' => 33, 'image' => '570f79ca89bba.jpg', 'imageflag' => '1'))), array('pageid' => 30, 'visibility' => 1, 'pagenavname' => 'Recycled Business Cards', 'friendlyurl' => 'printing/recycled-business-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 118, 'pageid' => 30, 'image' => '570f79dc9f22c.jpg', 'imageflag' => '1'))), array('pageid' => 307, 'visibility' => 1, 'pagenavname' => 'Coffee Cup Paper', 'friendlyurl' => 'printing/coffee-cup-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 314, 'pageid' => 307, 'image' => 'Coffee website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 308, 'visibility' => 1, 'pagenavname' => 'Algal Bloom Paper', 'friendlyurl' => 'printing/algal-bloom-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 317, 'pageid' => 308, 'image' => 'agal flyer website.jpg', 'imageflag' => '["2"]'))), array('pageid' => 309, 'visibility' => 1, 'pagenavname' => 'Grass Paper', 'friendlyurl' => 'printing/grass-paper', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 316, 'pageid' => 309, 'image' => 'Grass Paper website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 310, 'visibility' => 1, 'pagenavname' => 'Repurposed Business Cards', 'friendlyurl' => 'printing/repurposed-business-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 315, 'pageid' => 310, 'image' => 'algal BCs website.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 311, 'visibility' => 1, 'pagenavname' => '130GSM BROWN ECO KRAFT LEAFLETS', 'friendlyurl' => 'printing/kraft-leaflets', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 310, 'pageid' => 311, 'image' => 'Kraft Leaflets.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 312, 'visibility' => 1, 'pagenavname' => '130GSM BROWN ECO KRAFT FOLDED LEAFLETS', 'friendlyurl' => 'printing/kraft-folded-leaflets', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 311, 'pageid' => 312, 'image' => 'Kraft folded leaflet.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 313, 'visibility' => 1, 'pagenavname' => '280GSM BROWN ECO KRAFT BOARD', 'friendlyurl' => 'printing/kraft-flyers', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 312, 'pageid' => 313, 'image' => 'Kraft flyer.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 314, 'visibility' => 1, 'pagenavname' => '280GSM BROWN ECO KRAFT BOARD (FOLDED)', 'friendlyurl' => 'printing/kraft-folded-flyers', 'linkflag' => 1, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 313, 'pageid' => 314, 'image' => 'Kraft folded flyer.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 321, 'visibility' => 0, 'pagenavname' => 'AGRICULTURAL WASTE PAPER', 'friendlyurl' => 'printing/agriculturalpaper', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array())), 'users' => array(), 'image' => '5a1d9f108eed9.jpg'), array('headingid' => 79, 'friendlyurl' => 'repurposedpaper', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Repurposed Paper', 'pages' => array(array('pageid' => 278, 'visibility' => 1, 'pagenavname' => 'Coffee Cup Paper', 'friendlyurl' => 'printing/coffee-cup-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 233, 'pageid' => 278, 'image' => '5d02083a6608a.jpg', 'imageflag' => '1'))), array('pageid' => 279, 'visibility' => 1, 'pagenavname' => 'Algal Bloom Paper', 'friendlyurl' => 'printing/algal-bloom-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 234, 'pageid' => 279, 'image' => '5d15fb2ff3835.jpg', 'imageflag' => '1'))), array('pageid' => 280, 'visibility' => 0, 'pagenavname' => 'Cocoa Shells Paper', 'friendlyurl' => 'printing/cocoa-shells-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array()), array('pageid' => 281, 'visibility' => 1, 'pagenavname' => 'Grass Paper', 'friendlyurl' => 'printing/grass-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 236, 'pageid' => 281, 'image' => '5dd7cbb7d9d14.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '5d0103f8ebcdd.jpg'), array('headingid' => 89, 'friendlyurl' => 'kraft-takeaway-products', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Kraft Takeaway Menus', 'pages' => array(), 'users' => array('MICH99', 'JUNG06', 'ISTV01'), 'image' => '67ab4d163c4bc.jpg'), array('headingid' => 71, 'friendlyurl' => 'brownkraftproducts', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Brown Kraft Products', 'pages' => array(array('pageid' => 342, 'visibility' => 1, 'pagenavname' => '115gsm Kraft Takeaway Menus', 'friendlyurl' => 'printing/kraft-takeaway', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 361, 'pageid' => 342, 'image' => 'Kraft Menu.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 238, 'visibility' => 1, 'pagenavname' => '130gsm Brown Eco Kraft', 'friendlyurl' => 'printing/kraft-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 194, 'pageid' => 238, 'image' => '577bd179b4df5.jpg', 'imageflag' => '1'))), array('pageid' => 239, 'visibility' => 1, 'pagenavname' => '130gsm Brown Eco Kraft Folded', 'friendlyurl' => 'printing/kraft-folded-leaflets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 195, 'pageid' => 239, 'image' => '577ce8fd3d7c1.jpg', 'imageflag' => '1'))), array('pageid' => 240, 'visibility' => 1, 'pagenavname' => '280gsm Brown Eco Kraft', 'friendlyurl' => 'printing/kraft-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 196, 'pageid' => 240, 'image' => '57766c0d79d67.jpg', 'imageflag' => '1'))), array('pageid' => 241, 'visibility' => 1, 'pagenavname' => '280gsm Brown Eco Kraft Folded', 'friendlyurl' => 'printing/kraft-folded-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 197, 'pageid' => 241, 'image' => '57766c18921f5.jpg', 'imageflag' => '1'))), array('pageid' => 242, 'visibility' => 1, 'pagenavname' => '500 Micron Almond Kraft', 'friendlyurl' => 'printing/kraft-thick-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 198, 'pageid' => 242, 'image' => '577bd2b500dfa.jpg', 'imageflag' => '1'))), array('pageid' => 276, 'visibility' => 1, 'pagenavname' => 'Kraft Stickers', 'friendlyurl' => 'printing/kraftstickers', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 231, 'pageid' => 276, 'image' => '5c766e67be92d.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '577cec425548d.jpg'), array('headingid' => 77, 'friendlyurl' => 'packaging', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Packaging - Box Board', 'pages' => array(array('pageid' => 259, 'visibility' => 1, 'pagenavname' => 'Pillow Packs', 'friendlyurl' => 'printing/pillow-packs', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 214, 'pageid' => 259, 'image' => '593fce488fc63.jpg', 'imageflag' => '1'))), array('pageid' => 261, 'visibility' => 1, 'pagenavname' => 'Box - Lid & Base', 'friendlyurl' => 'printing/base-and-lid', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 216, 'pageid' => 261, 'image' => '593fce58ad46a.jpg', 'imageflag' => '1'))), array('pageid' => 260, 'visibility' => 1, 'pagenavname' => 'End Tuck Cartons', 'friendlyurl' => 'printing/end-tuck-cartons', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 215, 'pageid' => 260, 'image' => '593fce66bf9ca.jpg', 'imageflag' => '1'))), array('pageid' => 315, 'visibility' => 0, 'pagenavname' => 'Swing Tags', 'friendlyurl' => 'swing-tags', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 318, 'pageid' => 315, 'image' => '593fcf35849aa.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '591d84ac0444e.jpg'), array('headingid' => 81, 'friendlyurl' => 'swing-tags', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Swing Tags', 'pages' => array(array('pageid' => 255, 'visibility' => 1, 'pagenavname' => 'Swing Tags (280gsm Brown Eco Kraft)', 'friendlyurl' => 'printing/swing-tags-280gsm-kraft', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 210, 'pageid' => 255, 'image' => '593fcf274c64b.jpg', 'imageflag' => '1'))), array('pageid' => 253, 'visibility' => 1, 'pagenavname' => 'Swing Tags (300gsm Silk)', 'friendlyurl' => 'printing/swing-tags-300gsm-silk', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 208, 'pageid' => 253, 'image' => '593fcf35849aa.jpg', 'imageflag' => '1'))), array('pageid' => 254, 'visibility' => 1, 'pagenavname' => 'Swing Tags (350gsm Uncoated)', 'friendlyurl' => 'printing/swing-tags-350gsm-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 209, 'pageid' => 254, 'image' => '593fcf425e4d3.jpg', 'imageflag' => '1'))), array('pageid' => 256, 'visibility' => 1, 'pagenavname' => 'Swing Tags (600gsm Matt Lam)', 'friendlyurl' => 'printing/swing-tags-600gsm-matt lam', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 211, 'pageid' => 256, 'image' => '593fcf4a83b28.jpg', 'imageflag' => '1'))), array('pageid' => 257, 'visibility' => 1, 'pagenavname' => 'Swing Tags (600 micron Hi-Bulk Uncoated)', 'friendlyurl' => 'printing/swing-tags-600micron-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 212, 'pageid' => 257, 'image' => '593fcf5447c74.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '6008546735ef4.jpeg'), array('headingid' => 88, 'friendlyurl' => 'packaging', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Packaging', 'pages' => array(), 'users' => array(), 'image' => '67aa2cf645895.png'), array('headingid' => 82, 'friendlyurl' => 'scodix', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Scodix', 'pages' => array(array('pageid' => 305, 'visibility' => 1, 'pagenavname' => 'Scodix Proofing', 'friendlyurl' => 'scodix-proofing', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 295, 'pageid' => 305, 'image' => '5 copy.png', 'imageflag' => '1'), array('imageid' => 296, 'pageid' => 305, 'image' => '4.png', 'imageflag' => null), array('imageid' => 297, 'pageid' => 305, 'image' => '3 copy.png', 'imageflag' => null), array('imageid' => 298, 'pageid' => 305, 'image' => '2.png', 'imageflag' => null), array('imageid' => 299, 'pageid' => 305, 'image' => '1.png', 'imageflag' => null)))), 'users' => array(), 'image' => '6098f2172de69.jpeg'), array('headingid' => 83, 'friendlyurl' => 'oli-epp-postcards', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Oli Epp Postcards', 'pages' => array(array('pageid' => 306, 'visibility' => 1, 'pagenavname' => 'Oli Epp Free Postcards', 'friendlyurl' => 'oli-epp-free-postcards', 'linkflag' => 0, 'users' => array(), 'navblurb' => ' ', 'images' => array(array('imageid' => 300, 'pageid' => 306, 'image' => 'Oli Epp 1.jpg', 'imageflag' => '1'), array('imageid' => 301, 'pageid' => 306, 'image' => 'Oli Epp 2.jpg', 'imageflag' => null), array('imageid' => 302, 'pageid' => 306, 'image' => 'Oli Epp 3.jpg', 'imageflag' => null), array('imageid' => 306, 'pageid' => 306, 'image' => 'Oli Epp 5.jpg', 'imageflag' => null), array('imageid' => 307, 'pageid' => 306, 'image' => 'Oli Epp 4.jpg', 'imageflag' => null)))), 'users' => array(), 'image' => '60b8925ab4f0c.jpeg'), array('headingid' => 84, 'friendlyurl' => 'seasonal-products', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Seasonal Products <i class="fa fa-tree" aria-hidden="true" style="color: forestgreen"></i>', 'pages' => array(array('pageid' => 316, 'visibility' => 1, 'pagenavname' => 'Wrapping Paper', 'friendlyurl' => 'wrapping-paper', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 319, 'pageid' => 316, 'image' => 'wrapping web.jpg', 'imageflag' => null))), array('pageid' => 317, 'visibility' => 0, 'pagenavname' => 'Swing Tags (280gsm Brown Eco Kraft)', 'friendlyurl' => 'printing/swing-tags-280gsm-kraft', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 320, 'pageid' => 317, 'image' => 'swing tag kraft.jpg', 'imageflag' => null))), array('pageid' => 318, 'visibility' => 1, 'pagenavname' => 'Wall Calendars', 'friendlyurl' => 'printing/wall-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 321, 'pageid' => 318, 'image' => 'wall calendarsa.jpg', 'imageflag' => null))), array('pageid' => 319, 'visibility' => 1, 'pagenavname' => 'Wall Planners', 'friendlyurl' => 'printing/wall-planners', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 322, 'pageid' => 319, 'image' => 'wallplanner.jpg', 'imageflag' => null))), array('pageid' => 324, 'visibility' => 1, 'pagenavname' => 'A4 Advent Calendars', 'friendlyurl' => 'printing/advent-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 333, 'pageid' => 324, 'image' => 'A4 Advent Calendars.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 325, 'visibility' => 1, 'pagenavname' => 'Desktop Calendars', 'friendlyurl' => 'printing/desktop-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 334, 'pageid' => 325, 'image' => 'Desktop Calendars.jpg', 'imageflag' => '["1"]'))), array('pageid' => 326, 'visibility' => 1, 'pagenavname' => 'Pen Pot Calendars', 'friendlyurl' => 'printing/pen-pot-calendars', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 335, 'pageid' => 326, 'image' => 'Penpot Calendar.jpg', 'imageflag' => '["1"]'))), array('pageid' => 327, 'visibility' => 1, 'pagenavname' => 'Short Run Greeting Cards', 'friendlyurl' => 'printing/short-run-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 337, 'pageid' => 327, 'image' => 'Short Run Greetings Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 328, 'visibility' => 1, 'pagenavname' => 'Greeting Cards', 'friendlyurl' => 'printing/greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 338, 'pageid' => 328, 'image' => 'Lithographic Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 329, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 339, 'pageid' => 329, 'image' => 'Scodix Foil Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 330, 'visibility' => 1, 'pagenavname' => 'Scodix Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-sense-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 340, 'pageid' => 330, 'image' => 'Scodix Sense Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 331, 'visibility' => 1, 'pagenavname' => 'Scodix Foil & Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-and-sense-greeting-cards', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 341, 'pageid' => 331, 'image' => 'Scodix Foil & Sense Greeting Cards.jpg', 'imageflag' => '["1"]'))), array('pageid' => 332, 'visibility' => 1, 'pagenavname' => 'Kraft Invites', 'friendlyurl' => 'printing/kraft-invites', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 342, 'pageid' => 332, 'image' => 'Kraft Invites.jpg', 'imageflag' => '["1"]'))), array('pageid' => 333, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Gloss Laminated', 'friendlyurl' => 'printing/invitations-400gsm-gloss', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 343, 'pageid' => 333, 'image' => 'Invitations 400gsm Gloss Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 334, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-400gsm-matt', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 344, 'pageid' => 334, 'image' => 'Invitations 400gsm Matt Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 335, 'visibility' => 1, 'pagenavname' => 'Invitations 600gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-600gsm-matt', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 345, 'pageid' => 335, 'image' => 'Invitations 600gsm Matt Laminated.jpg', 'imageflag' => '["1"]'))), array('pageid' => 336, 'visibility' => 1, 'pagenavname' => '600 Micron Hi-Bulk Uncoated Invites', 'friendlyurl' => 'printing/invitations-600micron-uncoated', 'linkflag' => 1, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 346, 'pageid' => 336, 'image' => '600 Micron Hi-Bulk Uncoated Invites.jpg', 'imageflag' => '["1"]')))), 'users' => array(), 'image' => '61681ba795ee6.jpg'), array('headingid' => 87, 'friendlyurl' => 'instruction-leaflets', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Instruction Leaflets', 'pages' => array(array('pageid' => 339, 'visibility' => 1, 'pagenavname' => 'Instruction Leaflets B&W', 'friendlyurl' => 'printing/instruction-leaflets-bw', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 362, 'pageid' => 339, 'image' => 'B&W Folded Instructions.jpg', 'imageflag' => '["1","2"]'))), array('pageid' => 343, 'visibility' => 1, 'pagenavname' => 'Instruction Leaflets Full Colour', 'friendlyurl' => 'printing/instruction-leaflets-colour', 'linkflag' => 0, 'users' => array('MICH99'), 'navblurb' => null, 'images' => array(array('imageid' => 356, 'pageid' => 343, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '["1","2"]')))), 'users' => array('MICH99', 'JUNG06'), 'image' => '67aa2cbc1f661.png'), array('headingid' => 85, 'friendlyurl' => 'alexander-guy-limited-edition-prints', 'menuid' => 1, 'visibility' => 0, 'headingnavname' => 'Alexander Guy Limited Edition Prints', 'pages' => array(array('pageid' => 320, 'visibility' => 1, 'pagenavname' => 'Alexander Guy Limited Edition Print', 'friendlyurl' => 'alexander-guy-supersavers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 326, 'pageid' => 320, 'image' => 'Alexander Guy - Super Savers - Print Signing.jpeg', 'imageflag' => null), array('imageid' => 327, 'pageid' => 320, 'image' => 'Scaled down - Alexander Guy - Super Savers 01.jpg', 'imageflag' => '["1","2"]')))), 'users' => array(), 'image' => '620287f8a6755.jpg'), array('headingid' => 41, 'friendlyurl' => 'calendars', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Calendars & Wall Planners', 'pages' => array(array('pageid' => 192, 'visibility' => 1, 'pagenavname' => 'Wall Calendars', 'friendlyurl' => 'printing/wall-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 332, 'pageid' => 192, 'image' => 'Calender 2024.png', 'imageflag' => '["1","2"]'))), array('pageid' => 193, 'visibility' => 1, 'pagenavname' => 'Wall Planners', 'friendlyurl' => 'printing/wall-planners', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 169, 'pageid' => 193, 'image' => '5a182a7d70f12.jpg', 'imageflag' => '1'))), array('pageid' => 248, 'visibility' => 1, 'pagenavname' => 'Advent Calendars', 'friendlyurl' => 'printing/advent-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 204, 'pageid' => 248, 'image' => '57fe096ba25cc.jpg', 'imageflag' => '1'))), array('pageid' => 249, 'visibility' => 1, 'pagenavname' => 'Desktop Calendars', 'friendlyurl' => 'printing/desktop-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 205, 'pageid' => 249, 'image' => '57fe0a426968f.jpg', 'imageflag' => '1'))), array('pageid' => 250, 'visibility' => 1, 'pagenavname' => 'Pen Pot Calendars', 'friendlyurl' => 'printing/pen-pot-calendars', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 206, 'pageid' => 250, 'image' => '57ff5c69247f5.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7ce4b9f6e.jpg'), array('headingid' => 38, 'friendlyurl' => 'tickets-and-vouchers', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Tickets & Gift Vouchers', 'pages' => array(array('pageid' => 71, 'visibility' => 1, 'pagenavname' => 'Two Part Security', 'friendlyurl' => 'printing/two-part-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 150, 'pageid' => 71, 'image' => '570f7bfd71bf3.jpg', 'imageflag' => '1'))), array('pageid' => 206, 'visibility' => 1, 'pagenavname' => 'Three Part Security', 'friendlyurl' => 'printing/three-part-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 173, 'pageid' => 206, 'image' => '570f7c0a2b12f.jpg', 'imageflag' => '1'))), array('pageid' => 207, 'visibility' => 1, 'pagenavname' => 'Colour Tickets', 'friendlyurl' => 'printing/colour-tickets', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 174, 'pageid' => 207, 'image' => '570f7c1656ca0.jpg', 'imageflag' => '1'))), array('pageid' => 218, 'visibility' => 1, 'pagenavname' => 'Secure Paper Gift Vouchers', 'friendlyurl' => 'printing/gift-vouchers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 185, 'pageid' => 218, 'image' => '570f7c24c25f5.jpg', 'imageflag' => '1'))), array('pageid' => 284, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Gift Vouchers', 'friendlyurl' => 'printing/scodix-gift-vouchers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 239, 'pageid' => 284, 'image' => '5e15e6f97034f.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7be8aab6e.jpg'), array('headingid' => 32, 'friendlyurl' => 'cards-and-invitations', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Greeting Cards & Invitations', 'pages' => array(array('pageid' => 55, 'visibility' => 1, 'pagenavname' => 'Short Run Greeting Cards', 'friendlyurl' => 'printing/short-run-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 138, 'pageid' => 55, 'image' => 'JamJar_ChristmasCard2.jpg', 'imageflag' => '1'))), array('pageid' => 57, 'visibility' => 0, 'pagenavname' => 'Premium Marketing Cards', 'friendlyurl' => 'printing/premium-marketing-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 140, 'pageid' => 57, 'image' => 'jamjarprint_premium_marketing_card_1_dummy.jpg', 'imageflag' => '1'))), array('pageid' => 85, 'visibility' => 0, 'pagenavname' => 'Greeting Card Envelopes', 'friendlyurl' => 'printing/greeting-card-envelopes', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 154, 'pageid' => 85, 'image' => 'jamjarprint_greeting_card_envelopes_1_dummy copy.jpg', 'imageflag' => '1'))), array('pageid' => 56, 'visibility' => 1, 'pagenavname' => 'Greeting Cards', 'friendlyurl' => 'printing/greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 139, 'pageid' => 56, 'image' => 'JamJar_ChristmasCard.jpg', 'imageflag' => '1'))), array('pageid' => 269, 'visibility' => 1, 'pagenavname' => 'Scodix Foil Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 224, 'pageid' => 269, 'image' => '5a1d5a3c4265c.jpg', 'imageflag' => '1'))), array('pageid' => 270, 'visibility' => 1, 'pagenavname' => 'Scodix Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-sense-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 225, 'pageid' => 270, 'image' => '5a1d5a4aeb9e3.jpg', 'imageflag' => '1'))), array('pageid' => 271, 'visibility' => 1, 'pagenavname' => 'Scodix Foil & Sense Greeting Cards', 'friendlyurl' => 'printing/scodix-foil-and-sense-greeting-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 226, 'pageid' => 271, 'image' => '5a1d5a5f0987d.jpg', 'imageflag' => '1'))), array('pageid' => 283, 'visibility' => 1, 'pagenavname' => 'Kraft Invites', 'friendlyurl' => 'printing/kraft-invites', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 238, 'pageid' => 283, 'image' => '5e281fa4b707a.jpg', 'imageflag' => '1'))), array('pageid' => 63, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Gloss Laminated', 'friendlyurl' => 'printing/invitations-400gsm-gloss', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 144, 'pageid' => 63, 'image' => '56fbc336ae76d.jpg', 'imageflag' => '1'))), array('pageid' => 65, 'visibility' => 1, 'pagenavname' => 'Invitations 400gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-400gsm-matt', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 146, 'pageid' => 65, 'image' => '56fbc3443e69b.jpg', 'imageflag' => '1'))), array('pageid' => 151, 'visibility' => 1, 'pagenavname' => 'Invitations 600gsm Matt Laminated', 'friendlyurl' => 'printing/invitations-600gsm-matt', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 164, 'pageid' => 151, 'image' => '56fbc3502deba.jpg', 'imageflag' => '1'))), array('pageid' => 243, 'visibility' => 1, 'pagenavname' => 'Invitations 600 Micron Hi-Bulk Uncoated', 'friendlyurl' => 'printing/invitations-600micron-uncoated', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 199, 'pageid' => 243, 'image' => '57a066d8aa2ce.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '56fba74032424.jpg'), array('headingid' => 86, 'friendlyurl' => 'scratch-cards', 'menuid' => 1, 'visibility' => 2, 'headingnavname' => 'Scratch Cards', 'pages' => array(array('pageid' => 348, 'visibility' => 1, 'pagenavname' => 'Scratch Cards', 'friendlyurl' => 'printing/scratch-cards', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 360, 'pageid' => 348, 'image' => '570f7a6fd140b.jpg', 'imageflag' => '["1","2"]')))), 'users' => array('MICH99'), 'image' => '67aa2c2f92d1d.png'), array('headingid' => 44, 'friendlyurl' => 'digital-printed-products', 'menuid' => 1, 'visibility' => 1, 'headingnavname' => 'Digital Printed Products', 'pages' => array(array('pageid' => 39, 'visibility' => 1, 'pagenavname' => 'Short Run Colour Flyers', 'friendlyurl' => 'printing/short-run-colour-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 124, 'pageid' => 39, 'image' => '570f7d5aeb7c9.jpg', 'imageflag' => '1'))), array('pageid' => 40, 'visibility' => 1, 'pagenavname' => 'Short Run B&W Flyers', 'friendlyurl' => 'printing/short-run-mono-flyers', 'linkflag' => 0, 'users' => array(), 'navblurb' => null, 'images' => array(array('imageid' => 125, 'pageid' => 40, 'image' => '570f7d68d1572.jpg', 'imageflag' => '1')))), 'users' => array(), 'image' => '570f7d4d59ca4.jpg'))), 'no' => array()), 'upsellProducts' => array(array('upsellid' => 1, 'pageid' => 48, 'onpage' => null, 'page' => array('pageid' => 48, 'pagename' => '400gsm Shaped Matt Laminated Business Cards', 'pagenavname' => '400gsm Shaped Matt Laminated', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 1, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Get your business cards cut to exciting shapes with our existing templates, you can go with one or four rounded corners, or an undersized card with rounded corners.</p><p></p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 400gsm silk, matt lamination both sides, die cut to shape. Prices subject to VAT.</strong></p>', 'htmltitle' => '400gsm Shaped Deluxe Business Cards - JamJar Print', 'metakeywords' => 'shaped business cards, shaped business card printing, business card printing, 400gsm paper stock, business cards, cheap business cards, matt lamination, printing, litho, cheap, uk, bristol, london, deluxe busniess cards', 'metadesc' => 'JamJar Print - Shaped Deluxe Matt Laminated Business Cards - best for prices, quality and service', 'friendlyurl' => 'printing/shaped-business-cards', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => '<p>*Shape E is done using a hand cornering machine (with 6mm radius rounded corners), rather than die-cutting, so results may not be quite as consistent as die-cutting.</p><p><a href="/artwork-guidelines#templates" target="_blank"><img src="https://ops.jamjarprint.co.uk/assets/images/image_2016-05-10-10-12-32_5731a60016961.png" class="img-responsive"></a></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 132, 'pageid' => 48, 'image' => '5a37f53b12013.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 2, 'pageid' => 29, 'onpage' => null, 'page' => array('pageid' => 29, 'pagename' => 'Recycled Matt Flyers', 'pagenavname' => 'Recycled Matt Flyers', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to do your&nbsp;bit for the environment whilst maintaining a high quality flyer then this is the one for you.&nbsp;This board is one of the whitest recycled stocks available, so you can expect a clean finish.</p><p></p><p><strong>Full colour to both sides (lithographically printed), 100% recycled 350 micron board. No VAT to pay on flyers.</strong></p>', 'htmltitle' => 'Recycled Matt Flyer Printing - JamJar Print', 'metakeywords' => 'recycled matt flyers, recycled matt flyer printing, environmentally friendly flyers, eco paper, green printers, matt paper stock, eco specialists, green', 'metadesc' => 'JamJar Print - Recycled matt flyer printing - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-matt-flyers', 'sortorder' => 1, 'pageblurb' => null, 'pageblurb2' => '<p>All artwork received before end of day on Tuesdays will be guaranteed for Friday delivery that week.<br /> All artwork received before end of day on Fridays will be guaranteed for delivery on Wednesday the following week.<br /> Timings may vary around bank holidays, so please check with us in this case.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 117, 'pageid' => 29, 'image' => '570f78fa34586.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 3, 'pageid' => 33, 'onpage' => null, 'page' => array('pageid' => 33, 'pagename' => 'Recycled Leaflets', 'pagenavname' => 'Recycled Leaflets', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 1, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 1, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>The 100% Recycled 150gsm Revive Offset has a great punch for a recycled stock and is virtually impossible to distinguish from standard uncoated paper. That\'s why we can confidently offer our recycled leaflets with no compromise on quality.</p><p></p><p><strong>Full colour (lithographically printed) onto 100% recycled 150gsm Revive Offset. Prices may be subject to VAT.</strong></p>', 'htmltitle' => 'Recycled Leaflets - JamJar Print', 'metakeywords' => 'recycled leaflets, recycled marketing materials, eco-friendly marketing, eco-friendly printing, environmentally friendly, eco paper stock, green printers, matt paper stock, eco specialists, green printing', 'metadesc' => 'JamJar Print - Recycled leaflet printing - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-leaflets', 'sortorder' => 2, 'pageblurb' => null, 'pageblurb2' => '<p>Dimensions (mm): DL (210 x 99), A6 (148 X 105), A5 (210 x 148), A4 (297 x 210)</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 120, 'pageid' => 33, 'image' => '570f79ca89bba.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 4, 'pageid' => 32, 'onpage' => null, 'page' => array('pageid' => 32, 'pagename' => 'Recycled Letterhead & Compliment Slip Packages', 'pagenavname' => 'Recycled Stationery', 'pagenavblurb' => null, 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Send an eco-conscious message to all your contacts by placing a recycled logo at the bottom of your letterhead and compliment slip.</p><p><strong>Full colour one side only (lithographically printed) onto 100% recycled 120gsm Revive Offset. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Recycled Business Stationery Printing - JamJar Print', 'metakeywords' => 'recycled stationery, recycled compliment slips, recycled business cards, recycled letterheads, printing, litho printing, eco printing, green, office supplies', 'metadesc' => 'JamJar Print - Recycled business stationery - letterheads & comp slips - best for prices, quality and service', 'friendlyurl' => 'printing/recycled-stationery', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p>Package consists of equal number of single sided A4 letterheads and DL compliment slips.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 119, 'pageid' => 32, 'image' => '570f78b191fcf.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 5, 'pageid' => 272, 'onpage' => null, 'page' => array('pageid' => 272, 'pagename' => 'Case Bound Books', 'pagenavname' => 'Case Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Case binding uses paper being bonded to thick boards to create hardcover books. These are great for items you want to have increased durability and a professional look.</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'Case Bound Books', 'metakeywords' => 'Hard back books, hard cover books, hard back books, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london case bound, case binding', 'metadesc' => 'JamJar Print - Full colour, high quality case-bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/case-bound-books', 'sortorder' => 2, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 227, 'pageid' => 272, 'image' => '5a72fe69ac14f.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 6, 'pageid' => 273, 'onpage' => null, 'page' => array('pageid' => 273, 'pagename' => 'Wiro Bound Books', 'pagenavname' => 'Wiro Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Wiro binding is a simple and effective binding method that is particularly useful for short runs. Sheets are stacked on top of each, holes are punched before a wire is threaded through and clamped close. This method can be used to create a whole range of products, from diaries, to manuals and directories, with a professional finish and a lot of scope for variation. Wires are usually silver, black or white, but we can also get greens, reds and blues.</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'Wiro Bound Books', 'metakeywords' => 'wirobound books, wiro-binding, wiro-bound, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london', 'metadesc' => 'JamJar Print - Full colour, high quality wiro-bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/wiro-bound-books', 'sortorder' => 3, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 228, 'pageid' => 273, 'image' => '5a72fe7585a38.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 7, 'pageid' => 274, 'onpage' => null, 'page' => array('pageid' => 274, 'pagename' => 'PERFECT BOUND (PUR BOUND) BOOKS', 'pagenavname' => 'Perfect Bound Books', 'pagenavblurb' => null, 'headingid' => 30, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>PUR binding is a great way of getting a good, solid bind on a booklet when there are just too many pages for traditional stitching. Not as costly as case binding, it uses a simliar technique, but with a printed card cover (rather than paper bonded to card).</p><p>As these items tend to be very specific to each person\'s needs we don\'t have any set costs. But if you use the link below and let us know size, page numbers, paper weight and finish, quantity and if you want any special finishes (like Scodix or foiling) then we can get prices over to you ASAP!</p>', 'htmltitle' => 'PUR Bound Books', 'metakeywords' => 'Hard back books, hard cover books, hard back booklets, booklet, booklets, booklet printing, brochure printing, litho, uk, bristol, london, PUR binding', 'metadesc' => 'JamJar Print - Full colour, high quality PUR bound books - litho printed. Professional, competitive and personal service', 'friendlyurl' => 'printing/perfect-bound-books', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 229, 'pageid' => 274, 'image' => '5a72fe825f20f.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 8, 'pageid' => 214, 'onpage' => null, 'page' => array('pageid' => 214, 'pagename' => 'Banner Stands', 'pagenavname' => 'Banner Stands', 'pagenavblurb' => null, 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>These banner stands come attached inside a stand, rolled-up, ready to be unleashed and assembled at the drop of a hat. A minimum fuss, high quality way to take your banner with you wherever your business needs demand it.</p><p>The stand and banner all fit neatly inside a carry bag with a handle to make your life even easier!</p><p></p><p><strong>2000x800mm. Full Colour Print One Side Only (Inkjet). Premium 310mic Grey Back Material. Supplied with carry case and collapsible stand. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Banner Stands - JamJar Print', 'metakeywords' => 'Banner stands, stand up banner, pull up banner, roller banner, banner, exhibition stand, Exhibition banner, cheap banner, vinyl banner, colour banner, colour roller banner, carry case, bristol, UK, ', 'metadesc' => 'JamJar Print - Full colour, high quality banner printing. Market leading prices and quality', 'friendlyurl' => 'printing/banners', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => null, 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 288, 'pageid' => 214, 'image' => 'Bannerstand resize.png', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 9, 'pageid' => 303, 'onpage' => null, 'page' => array('pageid' => 303, 'pagename' => 'Mounted Posters', 'pagenavname' => 'Mounted Posters', 'pagenavblurb' => '<br>', 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to add a bit of rigidity to your posters then these are perfect for you, mounted onto a thick and firm, but lightweight, foam board.</p><p><b>Full colour print to one side only (inkjet output) onto 190gsm satin, bonded to 5mm foamcor. Prices subject to VAT.</b></p><p><br></p>', 'htmltitle' => 'Mounted Posters - JamJar Print', 'metakeywords' => 'mounted posters, posters, inkjet, printing, litho, cheap, uk, bristol, london, environmentally friendly printing', 'metadesc' => 'JamJar Print - Full colour, high quality mounted posters. Professional, competitive and personal service', 'friendlyurl' => 'mounted-posters', 'sortorder' => 3, 'pageblurb' => '<br>', 'pageblurb2' => '<p>Foamex (a heavier weight foam board) prices available on request, click <a href="https://jamjarprint.co.uk/request-quote">here</a>.</p>', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 290, 'pageid' => 303, 'image' => 'contactless resized.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 10, 'pageid' => 43, 'onpage' => null, 'page' => array('pageid' => 43, 'pagename' => 'Large Format Inkjet Posters', 'pagenavname' => 'Large Format Inkjet', 'pagenavblurb' => null, 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>These posters cover many uses from light boxes, exhibition stands and temporary banners to A-boards. These posters are printed at up to 2400dpi to one side only using UV stable pigment inks ensuring your colours won\'t fade. Our latest rip software and 12 colour inkjet machine processes RGB and CMYK files into a massive spectrum of colours producing fantastically vibrant results.</p><p>Our website displays standard prices but as always we try our best to be as flexible as possible offering large format inkjet posters at any length with a maximum width of 1340mm (maximum width on light box graphic & outdoor posters is 1100mm).</p><p><strong>Full colour print to one side only (inkjet output) onto 190gsm satin. Prices subject to VAT.</strong><br></p>', 'htmltitle' => 'Large Format Inkjet Posters - JamJar Print', 'metakeywords' => 'large poster printing, big poster printing, inkjet poster printing, large format poster printing, large format inkjet poster printing', 'metadesc' => 'JamJar Print - Large format inkjet poster printing - best for prices, quality and service', 'friendlyurl' => 'printing/large-format-inkjet-posters', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p><br></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 128, 'pageid' => 43, 'image' => '570f7c78441aa.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 11, 'pageid' => 304, 'onpage' => null, 'page' => array('pageid' => 304, 'pagename' => 'Encapsulated Posters', 'pagenavname' => 'Encapsulated Posters', 'pagenavblurb' => ' ', 'headingid' => 40, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>If you want to add a bit of durability to your posters then these are perfect for you, encapsulated and sealed around all edges with a plastic border to give your posters a longer life.</p><p><b>Full colour print to one side only (inkjet output) onto 190gsm satin, 125 micron gloss encapsulation. Prices subject to VAT.</b><br></p>', 'htmltitle' => 'Encapsulated Posters - JamJar Print', 'metakeywords' => 'encapsulated posters, posters, inkjet, printing, litho, cheap, uk, bristol, london, environmentally friendly printing', 'metadesc' => 'JamJar Print - Full colour, high quality encapsulated posters. Professional, competitive and personal service', 'friendlyurl' => 'encapsulated-posters', 'sortorder' => 11, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => '<p> </p>', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 291, 'pageid' => 304, 'image' => 'Encapsulated Poster resize.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 12, 'pageid' => 39, 'onpage' => null, 'page' => array('pageid' => 39, 'pagename' => 'Short Run Colour Flyers', 'pagenavname' => 'Short Run Colour Flyers', 'pagenavblurb' => null, 'headingid' => 44, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 1, 'dropdowndisplay' => 1, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Need low quantities with a quick turnaround? We offer smaller runs, from as little as 250 flyers, for £11.</p><p>Small runs are digitally printed either single or double sided onto 300gsm stock with a choice of silk, gloss or uncoated matt board.</p>', 'htmltitle' => 'Short Run Colour Flyers - JamJar Print', 'metakeywords' => 'short run flyer printing, digital flyers, digital flyer printing, low quantity flyer printing', 'metadesc' => 'JamJar Print - Digital flyer printing - best for prices, quality and service', 'friendlyurl' => 'printing/short-run-colour-flyers', 'sortorder' => 4, 'pageblurb' => null, 'pageblurb2' => '<p><strong>Full colour (digital print), 300gsm gloss, silk or uncoated matt card. Prices subject to VAT where applicable.</strong></p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 124, 'pageid' => 39, 'image' => '570f7d5aeb7c9.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 13, 'pageid' => 131, 'onpage' => null, 'page' => array('pageid' => 131, 'pagename' => '600gsm (800mic) Matt Laminated Business Cards', 'pagenavname' => '600gsm Matt Laminated', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 1, 'matrixdisplay' => 1, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 1, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Need to impress? We\'re confident these business cards will do just that. The 600gsm board used is amongst some of the thickest board available (800 microns). Their value won\'t disappoint either!</p><p></p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 600gsm silk</strong><b> (800 microns)</b>.<strong> matt lamination both sides. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Deluxe 600gsm Matt Laminated Business Cards - JamJar Print', 'metakeywords' => 'Business cards, thick business cards, business card printing, cheap business cards, printing, litho, cheap, uk, bristol, london, luxury', 'metadesc' => 'JamJar Print - 600 gsm Matt Laminated Business Cards - best for prices, quality and service', 'friendlyurl' => 'printing/600gsm-business-cards', 'sortorder' => 7, 'pageblurb' => null, 'pageblurb2' => '<p><br></p>', 'pageblurb3' => null, 'pageblurb4' => 'Full Colour Both Sides (Lithographic Print), 55x85mm, 600gsm Silk, Matt Lamination Both Sides. Prices Subject to VAT.', 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(array('promoid' => 13, 'promocode' => 'TASTY30', 'offertype' => 0, 'discount' => '0.3', 'start' => '2023-12-13T00:00:00+00:00', 'end' => '2024-01-31T00:00:00+00:00', 'limitsingleuse' => 0, 'customerid' => null, 'friendlyname' => '600gsm 800 mic', 'promoproducts' => null, 'priceid' => null, 'clientid' => 0, 'pageid' => 131, 'pageoffertext' => null, 'pageofferimage' => null, 'pageofferextra' => null, 'emailtemplate' => null, 'emailsubject' => null, 'emailsender' => null)), 'images' => array(array('imageid' => 328, 'pageid' => 131, 'image' => '5b179be9f20a0.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 14, 'pageid' => 305, 'onpage' => null, 'page' => array('pageid' => 305, 'pagename' => 'Scodix Proofing', 'pagenavname' => 'Scodix Proofing', 'pagenavblurb' => ' ', 'headingid' => 82, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p style="text-align: left;">The Scodix technology is a fantastic tool to have at your fingertips, offering raised foil and UV as well as a textured UV effect. One of the problems designers can encounter is not knowing how a certain design element is going to look on the final product.</p><p style="text-align: left;">In response to these concerns we\'ve decided to help overcome this problem by offering free<span style="color:#ff0000;">*</span> Scodix tests on&nbsp;pre-printed sheets, so you can see if your design is going to work or needs a little tweaking.</p><p style="text-align: left;">Clicking the link below you can choose the appropriate Scodix finish (Gold/Silver Foil or Sense UV), the stock colour and your preferred delivery option. We are offering a next-day DPD delivery for when you need those samples a bit quicker, as well as cheaper Royal Mail options.</p><p style="text-align: left;">All prints will be on a matt laminated stock and supplied at A4 size.</p> ', 'htmltitle' => 'Scodix Proofing - JamJar Print', 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'scodix-proofing', 'sortorder' => 0, 'pageblurb' => ' ', 'pageblurb2' => '<p><i>Please note that Scodix cannot bleed off the edge of sheets.</i></p><p><i>For full details on how to setup Scodix artwork please see&nbsp;<a data-emb-href-display="jamjarprint.co.uk" data-cke-saved-href="https://jamjarprint.co.uk/artwork-guidelines" href="https://jamjarprint.co.uk/artwork-guidelines">here</a>.</i></p><p><i>*x1 or x2 Scodix test sheets are free, you only have to pay for the postage/courier, after that quantity costs are as below.</i></p><p><i>Turnaround is 2 working days for the DPD option, note that for Royal Mail 1st and 2nd class this will most likely add 1 and 2 working days (respectively) to the order.</i></p><p><i>If you want to collect your prints from our Bristol office you just need to remove the delivery option (click the x) from the basket and change the job to "collection".</i><br></p> ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 295, 'pageid' => 305, 'image' => '5 copy.png', 'imageflag' => '1'), array('imageid' => 296, 'pageid' => 305, 'image' => '4.png', 'imageflag' => null), array('imageid' => 297, 'pageid' => 305, 'image' => '3 copy.png', 'imageflag' => null), array('imageid' => 298, 'pageid' => 305, 'image' => '2.png', 'imageflag' => null), array('imageid' => 299, 'pageid' => 305, 'image' => '1.png', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 15, 'pageid' => 306, 'onpage' => null, 'page' => array('pageid' => 306, 'pagename' => 'Wanda Koop and Oli Epp\'s Free Postcard Pack', 'pagenavname' => 'Oli Epp Free Postcards', 'pagenavblurb' => ' ', 'headingid' => 83, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>This is a Limited Edition postcard pack made by Oli Epp and Wanda Koop. This is a free souvenir for those who were unable to attend their two-person show at Division Galerie, in Montreal, Canada. Hope you enjoy this little memento!<br></p><p>Please note that the purchaser assumes all responsibility for any associated duty/import costs.<br></p><p><b>This is a limited edition free souvenir, to ensure they are fairly distributed we will only allow one order per person/address. If you try to order more than one copy we will not process your order.&nbsp;</b></p>', 'htmltitle' => 'Wanda Koop and Oli Epp\'s Free Postcard Pack - JamJar Print', 'metakeywords' => null, 'metadesc' => 'Oli Epp Free Postcards - JamJar Print', 'friendlyurl' => 'oli-epp-free-postcards', 'sortorder' => 0, 'pageblurb' => ' ', 'pageblurb2' => '<p>This is a limited edition free souvenir, to ensure they are fairly distributed we will only allow one order per person/address. If you try to order more than one copy we will not process your order nor refund your payment. </p><p>Also, please ignore the "upload artwork" option at the end of the ordering process - once you have paid that is all we need from you thanks!</p>', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 300, 'pageid' => 306, 'image' => 'Oli Epp 1.jpg', 'imageflag' => '1'), array('imageid' => 301, 'pageid' => 306, 'image' => 'Oli Epp 2.jpg', 'imageflag' => null), array('imageid' => 302, 'pageid' => 306, 'image' => 'Oli Epp 3.jpg', 'imageflag' => null), array('imageid' => 306, 'pageid' => 306, 'image' => 'Oli Epp 5.jpg', 'imageflag' => null), array('imageid' => 307, 'pageid' => 306, 'image' => 'Oli Epp 4.jpg', 'imageflag' => null)), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 16, 'pageid' => 307, 'onpage' => null, 'page' => array('pageid' => 307, 'pagename' => 'Repurposed Coffee Cup Paper', 'pagenavname' => 'Coffee Cup Paper', 'pagenavblurb' => ' ', 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => ' ', 'htmltitle' => null, 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/coffee-cup-paper', 'sortorder' => 4, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 1, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 314, 'pageid' => 307, 'image' => 'Coffee website.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 17, 'pageid' => 278, 'onpage' => null, 'page' => array('pageid' => 278, 'pagename' => 'Repurposed Coffee Cup Paper', 'pagenavname' => 'Coffee Cup Paper', 'pagenavblurb' => null, 'headingid' => 79, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>The first repurposed paper on which we\'re starting to print is GF Smith\'s "Extract". They have partnered with CupCycling™ to extract the plastic element, that stops most single-use coffee cup being recycled, from the cup and turn the leftover paper into this stock. Below are prices on just the one shade, Moon (an off-white), in two different weights. We can also order in their whole range of colours, a lot of which would work great with white ink, so get in touch if you need a bespoke quote.</p>', 'htmltitle' => 'Repurposed Coffee Cup Paper - JamJar Print Ltd', 'metakeywords' => 'coffee cup paper, repurposed paper, eco-friendly stock, recycled printing, GF Smith Extract', 'metadesc' => 'JamJar Print - Repurposed Coffee Cup Paper Printing - best for prices, quality and service', 'friendlyurl' => 'printing/coffee-cup-paper', 'sortorder' => 0, 'pageblurb' => null, 'pageblurb2' => '<p><strong>Full colour both sides (Indigo printed), 380gsm GF Smith Extract Moon. No VAT to pay on leaflets/flyers, but VAT applicable on menus/invites/cards etc (please select in basket).</strong></p><p>Other stock colours are available, but will cost more; get in touch if you want a quote.</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 233, 'pageid' => 278, 'image' => '5d02083a6608a.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 18, 'pageid' => 310, 'onpage' => null, 'page' => array('pageid' => 310, 'pagename' => 'Repurposed Business Cards', 'pagenavname' => 'Repurposed Business Cards', 'pagenavblurb' => ' ', 'headingid' => 23, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 1, 'finishstacking' => 0, 'variationbutton' => 0, 'matrixdisplay' => 0, 'displaysort' => 0, 'basedisplay' => 0, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => ' ', 'htmltitle' => null, 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/repurposed-business-cards', 'sortorder' => 27, 'pageblurb' => ' ', 'pageblurb2' => ' ', 'pageblurb3' => ' ', 'pageblurb4' => ' ', 'visibility' => 1, 'verticalmenu' => 1, 'linkflag' => 1, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 315, 'pageid' => 310, 'image' => 'algal BCs website.jpg', 'imageflag' => '["1","2"]')), 'users' => array(), 'ignoreminimumcharge' => 0)), array('upsellid' => 19, 'pageid' => 289, 'onpage' => null, 'page' => array('pageid' => 289, 'pagename' => 'Rounded Corners Business Cards', 'pagenavname' => 'Rounded Corners Business Cards', 'pagenavblurb' => null, 'headingid' => 24, 'pricedisplay' => 0, 'finishdisplay' => 0, 'variationdisplay' => 0, 'finishstacking' => 0, 'variationbutton' => 1, 'matrixdisplay' => 0, 'displaysort' => 1, 'basedisplay' => 1, 'offernooption' => 0, 'mergesizes' => 0, 'dropdowndisplay' => 0, 'parameterdisplay' => 0, 'packagedropdownsorting' => 0, 'blurb' => '<p>Shaped business cards can often be quite expensive due to new die cutting tools and setup time. However, with our new manual round cornering machine we can offer them at a much more affordable price. The machine is setup with a 6mm diameter radius, applied to all four corners, giving your business cards an extra bit of class.<br /><br />We will be offering these rounded corner business cards for online purchase on 400gsm matt laminated, 600gsm matt or soft touch laminated, 350gsm pulp and 600 micron white pulp, but if you have any other quotes requests don\'t hesitate to get in touch.</p><p><strong>Full colour both sides (lithographically printed), 55x85mm, 6mm radius rounded corners, stock as below. Prices subject to VAT.</strong></p>', 'htmltitle' => 'Rounded Corners Business Cards - JamJar Print', 'metakeywords' => null, 'metadesc' => null, 'friendlyurl' => 'printing/roundedcorners-businesscards', 'sortorder' => 18, 'pageblurb' => null, 'pageblurb2' => '<p>Turnaround times will vary depending on type ordered:</p> <p>400gsm matt lam, 600gsm matt lam and 350gsm pulp are 5-6 working days.</p> <p>600gsm soft touch is 6-7 working days</p> <p>600 micron uncoated is 7-8 working days</p>', 'pageblurb3' => null, 'pageblurb4' => null, 'visibility' => 1, 'verticalmenu' => 0, 'linkflag' => 0, 'clientid' => 0, 'pagetemplate' => null, 'promos' => array(), 'images' => array(array('imageid' => 244, 'pageid' => 289, 'image' => '5e5f71a9d4d9a.jpg', 'imageflag' => '1')), 'users' => array(), 'ignoreminimumcharge' => 0))), 'types' => false, 'processes' => array(array('process' => 'Lithographic Print', 'category' => 1, 'code' => 'LITHO', 'sizes' => null, 'typeid' => 1, 'processid' => 2), array('process' => 'Digital Print', 'category' => 1, 'code' => 'DIG', 'sizes' => null, 'typeid' => 1, 'processid' => 3), array('process' => 'Indigo Print', 'category' => 1, 'code' => 'IND', 'sizes' => null, 'typeid' => 1, 'processid' => 4), array('process' => 'Full Colour', 'category' => 5, 'code' => '4col', 'sizes' => null, 'typeid' => 1, 'processid' => 5), array('process' => 'Matt Lam 1 Side', 'category' => 3, 'code' => 'LamMTSS', 'sizes' => null, 'typeid' => 1, 'processid' => 7), array('process' => 'Matt Lam 2 Sides', 'category' => 3, 'code' => 'LamMTDS', 'sizes' => null, 'typeid' => 1, 'processid' => 8), array('process' => 'Gloss Lam 1 Side', 'category' => 3, 'code' => 'LamGLSSS', 'sizes' => null, 'typeid' => 4, 'processid' => 9), array('process' => 'Gloss Lam 2 Sides', 'category' => 3, 'code' => 'LamGLSDS', 'sizes' => null, 'typeid' => 1, 'processid' => 10), array('process' => 'Soft Touch Lam 1 Side', 'category' => 3, 'code' => 'LamSOFSS', 'sizes' => null, 'typeid' => 1, 'processid' => 11), array('process' => 'Soft Touch Lam 2 Sides', 'category' => 3, 'code' => 'LamSOFDS', 'sizes' => null, 'typeid' => 1, 'processid' => 12), array('process' => 'Large Format Print', 'category' => 1, 'code' => 'LFP', 'sizes' => null, 'typeid' => 1, 'processid' => 13), array('process' => 'Sublimation', 'category' => 1, 'code' => 'SUB', 'sizes' => null, 'typeid' => 1, 'processid' => 14), array('process' => 'A4 Cross Fold to A6', 'category' => 4, 'code' => 'A4xfA6', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 17), array('process' => 'A3 Cross Fold to A5', 'category' => 4, 'code' => 'A3xfA5', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 18), array('process' => 'A5 Double Fold to 1/3 A5', 'category' => 4, 'code' => 'A5df3rdA5', 'sizes' => '["21"]', 'typeid' => 9, 'processid' => 19), array('process' => 'A4 Double Fold to 1/3 A4', 'category' => 4, 'code' => 'A4df3rdA4', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 20), array('process' => 'A3 Double Fold to 1/3 A3', 'category' => 4, 'code' => 'A3df3rdA3', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 21), array('process' => 'A5 Single Fold to A6', 'category' => 4, 'code' => 'A5sfA6', 'sizes' => '["21","235"]', 'typeid' => 9, 'processid' => 22), array('process' => 'A4 Single Fold to A5', 'category' => 4, 'code' => 'A4sfA5', 'sizes' => '["2","234"]', 'typeid' => 9, 'processid' => 25), array('process' => 'A4 Single Fold to A5L', 'category' => 4, 'code' => 'A4sfA5L', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 26), array('process' => 'A3 Single Fold to A4', 'category' => 4, 'code' => 'A3sfA4', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 27), array('process' => 'A3 Single Fold to A3L', 'category' => 4, 'code' => 'A3sfA3L', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 28), array('process' => 'Gold Foil', 'category' => 4, 'code' => 'FOILGld', 'sizes' => null, 'typeid' => 1, 'processid' => 29), array('process' => 'Silver Foil', 'category' => 4, 'code' => 'FOILSlv', 'sizes' => null, 'typeid' => 1, 'processid' => 30), array('process' => 'Single Sided Spot UV', 'category' => 4, 'code' => 'spUVSS', 'sizes' => null, 'typeid' => 1, 'processid' => 31), array('process' => 'Scodix Hi Build', 'category' => 4, 'code' => 'ScdxHIB', 'sizes' => null, 'typeid' => 17, 'processid' => 32), array('process' => 'Scodix Sense', 'category' => 4, 'code' => 'ScdxSNS', 'sizes' => null, 'typeid' => 17, 'processid' => 33), array('process' => 'Scodix Gold Foil', 'category' => 4, 'code' => 'ScdxGLD', 'sizes' => null, 'typeid' => 17, 'processid' => 34), array('process' => 'Scodix Silver Foil', 'category' => 4, 'code' => 'ScdxSLV', 'sizes' => null, 'typeid' => 17, 'processid' => 35), array('process' => 'Scodix Foil', 'category' => 4, 'code' => 'ScdxFOIL', 'sizes' => null, 'typeid' => 17, 'processid' => 36), array('process' => 'Gloss Encapsulation', 'category' => 3, 'code' => 'EncapGLS', 'sizes' => null, 'typeid' => 1, 'processid' => 37), array('process' => 'Matt Encapsulation', 'category' => 4, 'code' => 'EncapMT', 'sizes' => null, 'typeid' => 1, 'processid' => 38), array('process' => 'Diecut', 'category' => 4, 'code' => 'Diecut', 'sizes' => null, 'typeid' => 1, 'processid' => 39), array('process' => 'Rounded Corners', 'category' => 4, 'code' => 'RndCNR', 'sizes' => null, 'typeid' => 10, 'processid' => 40), array('process' => '1 Colour', 'category' => 5, 'code' => '1col', 'sizes' => null, 'typeid' => 1, 'processid' => 44), array('process' => 'Full Colour + SS Pantone', 'category' => 5, 'code' => '5/4', 'sizes' => null, 'typeid' => 1, 'processid' => 45), array('process' => 'Full Colour + DS Pantone', 'category' => 5, 'code' => '5/5', 'sizes' => null, 'typeid' => 1, 'processid' => 46), array('process' => 'Single Fold to CC', 'category' => 4, 'code' => 'SFCC', 'sizes' => null, 'typeid' => 1, 'processid' => 47), array('process' => 'Edge Painted', 'category' => 4, 'code' => 'EgPaint', 'sizes' => null, 'typeid' => 1, 'processid' => 48), array('process' => 'Interlocking Flap', 'category' => 4, 'code' => 'LOCflaps', 'sizes' => null, 'typeid' => 1, 'processid' => 49), array('process' => 'Pocket & BC', 'category' => 4, 'code' => 'PocBC', 'sizes' => '["217"]', 'typeid' => 1, 'processid' => 50), array('process' => '4mm Pocket & BC', 'category' => 4, 'code' => '4mmPocBC', 'sizes' => '["217"]', 'typeid' => 1, 'processid' => 51), array('process' => '8 Page', 'category' => 2, 'code' => '8pp', 'sizes' => null, 'typeid' => 1, 'processid' => 53), array('process' => '16 Page', 'category' => 2, 'code' => '16pp', 'sizes' => null, 'typeid' => 1, 'processid' => 54), array('process' => 'Single Sided', 'category' => 2, 'code' => 'SS', 'sizes' => null, 'typeid' => 2, 'processid' => 55), array('process' => 'Double Sided', 'category' => 2, 'code' => 'DS', 'sizes' => null, 'typeid' => 2, 'processid' => 56), array('process' => 'Silk Lamination 1 Side', 'category' => 3, 'code' => 'LamSSslk', 'sizes' => null, 'typeid' => 15, 'processid' => 57), array('process' => 'Silk Lamination 2 Sides', 'category' => 3, 'code' => 'LamDSslk', 'sizes' => null, 'typeid' => 15, 'processid' => 58), array('process' => 'Anti Scuff Lam 1 Side', 'category' => 3, 'code' => 'LamSSscuff', 'sizes' => null, 'typeid' => 7, 'processid' => 59), array('process' => 'DS Anti Scuff Lam', 'category' => 3, 'code' => 'LamDSscuff', 'sizes' => null, 'typeid' => 7, 'processid' => 61), array('process' => 'Linen Lam 1 Side', 'category' => 3, 'code' => 'LamSSlinen', 'sizes' => null, 'typeid' => 6, 'processid' => 62), array('process' => 'DS Linen Lam', 'category' => 3, 'code' => 'LamDSlinen', 'sizes' => null, 'typeid' => 6, 'processid' => 63), array('process' => 'Vertical Business Card Slot', 'category' => 4, 'code' => 'DieVBC', 'sizes' => null, 'typeid' => 10, 'processid' => 64), array('process' => 'Horizontal Business Card Slot', 'category' => 4, 'code' => 'DieHBC', 'sizes' => null, 'typeid' => 10, 'processid' => 65), array('process' => 'A3 Cross Fold to A6', 'category' => 4, 'code' => 'A3xfA6', 'sizes' => '["3"]', 'typeid' => 9, 'processid' => 68), array('process' => 'A2 Cross Fold to A5', 'category' => 4, 'code' => 'A2xfA5', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 72), array('process' => 'Silver Stitch', 'category' => 4, 'code' => 'STITslv', 'sizes' => null, 'typeid' => 19, 'processid' => 73), array('process' => '2 Colour', 'category' => 5, 'code' => '2col', 'sizes' => null, 'typeid' => 1, 'processid' => 74), array('process' => 'Pad', 'category' => 4, 'code' => 'PAD', 'sizes' => null, 'typeid' => 19, 'processid' => 75), array('process' => 'Black Only', 'category' => 5, 'code' => 'Blk', 'sizes' => null, 'typeid' => 1, 'processid' => 76), array('process' => 'with Eyelets', 'category' => 4, 'code' => 'Eyelet', 'sizes' => null, 'typeid' => 12, 'processid' => 77), array('process' => 'No Eyelets', 'category' => 4, 'code' => 'NoEyelets', 'sizes' => null, 'typeid' => 12, 'processid' => 78), array('process' => '2 Part', 'category' => 4, 'code' => '1Perf', 'sizes' => null, 'typeid' => 20, 'processid' => 79), array('process' => '3 Part', 'category' => 4, 'code' => '2Perf', 'sizes' => null, 'typeid' => 20, 'processid' => 80), array('process' => 'Laser Cutting', 'category' => 4, 'code' => 'LASER', 'sizes' => null, 'typeid' => 21, 'processid' => 81), array('process' => 'Glue', 'category' => 4, 'code' => 'GLUE', 'sizes' => null, 'typeid' => 12, 'processid' => 82), array('process' => 'Drill', 'category' => 4, 'code' => 'DRILL', 'sizes' => null, 'typeid' => 22, 'processid' => 83), array('process' => 'SIngle Fold to 55x55mm', 'category' => 4, 'code' => 'SF55x55', 'sizes' => null, 'typeid' => 9, 'processid' => 84), array('process' => 'A6 Single Fold to A7', 'category' => 4, 'code' => 'A6sfA7', 'sizes' => '["4"]', 'typeid' => 9, 'processid' => 85), array('process' => 'Wiro Binding', 'category' => 4, 'code' => 'WIRO', 'sizes' => null, 'typeid' => 19, 'processid' => 86), array('process' => 'Bond', 'category' => 4, 'code' => 'BOND', 'sizes' => null, 'typeid' => 23, 'processid' => 87), array('process' => '14 Page', 'category' => 2, 'code' => '14pp', 'sizes' => null, 'typeid' => 2, 'processid' => 88), array('process' => '26 Page', 'category' => 2, 'code' => '26pp', 'sizes' => null, 'typeid' => 2, 'processid' => 89), array('process' => 'A2 Double Fold to A4', 'category' => 4, 'code' => 'A2dfA4', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 90), array('process' => 'A1 cross fold to A4', 'category' => 4, 'code' => 'A1xfA4', 'sizes' => '["19"]', 'typeid' => 9, 'processid' => 91), array('process' => '290mm Single Fold to 145mm', 'category' => 4, 'code' => '290sf145', 'sizes' => '["227"]', 'typeid' => 9, 'processid' => 92), array('process' => 'White Ink', 'category' => 5, 'code' => 'WhtINK', 'sizes' => null, 'typeid' => 1, 'processid' => 94), array('process' => '198mm Single Fold to 99mm', 'category' => 4, 'code' => '198sf99', 'sizes' => '["228"]', 'typeid' => 9, 'processid' => 95), array('process' => '370 Single Fold to 85mm', 'category' => 4, 'code' => '370sf85', 'sizes' => '["229"]', 'typeid' => 9, 'processid' => 96), array('process' => 'White Laminate', 'category' => 3, 'code' => 'WhtLAM', 'sizes' => null, 'typeid' => 24, 'processid' => 97), array('process' => 'A4 Single Fold to A4L', 'category' => 4, 'code' => 'A4sfA4L', 'sizes' => '["2"]', 'typeid' => 9, 'processid' => 98), array('process' => 'Anti Slip Laminate', 'category' => 3, 'code' => 'LamSSantislip', 'sizes' => null, 'typeid' => 25, 'processid' => 107), array('process' => '13 Leaves', 'category' => 2, 'code' => '13Leaf', 'sizes' => null, 'typeid' => 2, 'processid' => 108), array('process' => '7 Leaves', 'category' => 2, 'code' => '7 Leaf', 'sizes' => null, 'typeid' => 2, 'processid' => 109), array('process' => 'Stretch', 'category' => 4, 'code' => 'STRETCH', 'sizes' => null, 'typeid' => 12, 'processid' => 110), array('process' => 'A7 Folded to A9', 'category' => 4, 'code' => 'a7fa9', 'sizes' => '["243"]', 'typeid' => 23, 'processid' => 115), array('process' => 'A2 Cross Fold to A4', 'category' => 4, 'code' => 'a2xfA4', 'sizes' => '["20"]', 'typeid' => 9, 'processid' => 116), array('process' => 'Latex Finish (Scratch Card)', 'category' => 4, 'code' => 'LATEX', 'sizes' => null, 'typeid' => 26, 'processid' => 117)), 'processtypes' => array(array('type' => 'print', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 1), array('type' => 'sides', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 2), array('type' => 'mattlam', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 3), array('type' => 'glosslam', 'hasnooption' => 0, 'blocks' => '["8","17"]', 'typeid' => 4), array('type' => 'softtouchlam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 5), array('type' => 'linenlam', 'hasnooption' => 0, 'blocks' => '["17"]', 'typeid' => 6), array('type' => 'antiscufflam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 7), array('type' => 'spotuv', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 8), array('type' => 'fold', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 9), array('type' => 'diecut', 'hasnooption' => 1, 'blocks' => null, 'typeid' => 10), array('type' => 'foil', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 11), array('type' => 'handfinish', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 12), array('type' => 'silklam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 15), array('type' => 'Scodix', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 17), array('type' => 'binding', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 19), array('type' => 'Perforation', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 20), array('type' => 'Laser', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 21), array('type' => 'Drill', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 22), array('type' => 'Bond', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 23), array('type' => 'White Laminate', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 24), array('type' => 'antisliplam', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 25), array('type' => 'Latex', 'hasnooption' => 0, 'blocks' => null, 'typeid' => 26)), 'accounting' => 'qb', 'baseholidays' => '2023-12-25,2023-12-26,2023-12-27,2023-12-28,2023-12-29', 'block_printing_orders_on_credit_hold' => '0', 'campaignmonitor_apikey' => 'bd175225853df3bf3c60f0a56fa651ef', 'campaignmonitor_listid' => '4bebbb2d83cf43ed99dbe982448cafcf', 'colour_main' => '#fc424a', 'colour_other' => '#a9332f', 'colour_other2' => '#f38668', 'colour_primary_rgba' => 'rgba(252, 66, 74 , 0.95)', 'colour_secondary' => '#c2443f', 'colour_secondary_rgba' => 'rgba(244, 102, 109, 0.7)', 'company_email' => 'info@jamjarprint.co.uk', 'company_telephone' => '01173731605', 'default_addressid' => '2', 'default_order_line_notes' => 'REPRO:\\n\\n\\n\\nPRINT:\\n\\n\\n\\nFINISHING:\\n\\n\\n\\nOTHER:', 'default_turnaround_days' => '5', 'delivery_stockcode' => 'DEL/COURIER', 'detrack_key' => '8ef8b494fa093f0abaebce13671a767d17e2811df7d3e793 ', 'display_invoiceemail_customers' => '1', 'dpd_our_contact' => 'Shaun Bibby', 'dpd_parcelweight_1' => '5', 'dpd_parcelweight_multiple' => '15', 'dpd_password' => 'flatpack', 'dpd_printer' => 'Fedex Label Printer', 'dpd_username' => 'jamjar1', 'ekomi_count' => '870', 'ekomi_rating' => '4.9', 'email_on_new_customer' => '0', 'email_on_new_order' => '0', 'email_on_new_order_type' => '0', 'enable_support' => '1', 'exchequer' => 'SIN', 'fedex_account' => '301802919', 'fedex_api_key' => 'l7808616d577dc4a4498e17a44141c693a', 'fedex_secret_key' => '8c731071-7e5d-4111-96d2-cfce22e2fb07', 'fedex_url' => 'https://apis.fedex.com', 'financial_month' => '8', 'googlemaps_key' => 'AIzaSyDnsSZvmS8TzYY54AKAkFfORWQNDaQKu1k', 'hotfolder_path' => 'artworkhotfolder', 'ignore_orders_before_start' => '1', 'internal_customers' => '[]', 'invoice_email' => 'accounts@jamjarprint.co.uk', 'locations_enabled' => '0', 'newcustomer_email' => 'hello@outofhand.co.uk', 'neworder_email' => 'hello@outofhand.co.uk', 'ops_start_date' => '2021-01-01', 'order_email' => 'info@jamjarprint.co.uk', 'payment_email' => 'info@jamjarprint.co.uk', 'pca_account' => 'FUEL111111', 'pca_key' => 'PF45-YM45-GP55-RE56', 'pca_on' => '1', 'po_email' => 'info@jamjarprint.co.uk', 'prodcode_separator' => '-', 'quickbooks_authcode' => 'AB11706524510RvFBIQeeQWJsOsGpokfDnMaSAwjPEKC5CiKYq', 'quickbooks_clientid' => 'ABzZiabR3jasGcfnMCm9x9HHx8SbjmTQFq27Yq80bgXYsoynlk', 'quickbooks_companyid' => '9130357639530906', 'quickbooks_description_fields' => '[{"prefix":"","field":"jobname"},{"prefix":"","field":"productname"}]', 'quickbooks_pobill_pushing' => '0', 'quickbooks_ponumber_on_statement' => '0', 'quickbooks_secret' => 'OOcwriYnHSwG4JZLUNiyfVCFwrkvjNuBaWyKWxF9', 'quote_email' => 'info@jamjarprint.co.uk', 'require_address_on_customers' => '1', 'require_job_ref_field' => '0', 'samplepack_email' => 'info@jamjarprint.co.uk', 'send_email_on_support_ticket' => '1', 'show_product_dropdowns' => '1', 'support_notification_email' => 'it@jamjarprint.co.uk', 'tbc_addressid' => '9', 'tradeprint_key' => 'ztlfkfm3tor9uwsd0tyqryaj', 'tradeprint_user' => 'outofhand', 'worldpay_installation_id' => '1099704', 'worldpay_merchant_code' => 'JAMJARPRINTLM1', 'worldpay_merchant_password' => 'vKzw7TAZ', 'worldpay_url' => 'https://secure.worldpay.com/wcc/purchase', 'orderemail' => 'info@jamjarprint.co.uk', 'worldpay_installationid' => '1099704', 'basket_usemincharge' => '1', 'basket_mincharge' => '15', 'productpage_proof' => '0', 'basket_proofcost' => '0', 'basket_freedeliveryamount' => '1000000', 'saledisabled' => '0', 'banneractive' => '0', 'bannercolour' => '#d73333', 'bannertextcolour' => '#130b0b', 'bannermessage' => 'Test banner', 'basket_pricemarkup' => '0', 'productpage_express' => '0', 'infoemail' => 'info@jamjarprint.co.uk', 'hascampaignmonitor' => '1', 'quoteemail' => 'info@jamjarprint.co.uk', 'samplepackemail' => 'info@jamjarprint.co.uk', 'worldpay_mdstring' => 'G3v6H940r3f4*Y4.3!FdfgB32Gtg5', 'homepage_carousel' => '1', 'homepage_articles' => '1', 'homepage_vertical_menu' => '0', 'homepage_news' => '1', 'homepage_upsell_display' => '0', 'homepage_upsell_products' => '41', 'homepage_heading_widget' => '0', 'homepage_heading_id' => '24', 'homepage_blurb_shown' => '0', 'homepage_blurb' => '<div class="row">
 <div class="col-md-6">
 <img src="/assets/images/b/promo.jpg" alt="">
 </div>
 <div class="col-md-6">
 <div class="promo-text">
 <h2>Edinburgh Fringe 2023</h2>
 <p>The largest arts festival in the world - working in partnership with The City of Edinburgh Council, we offer outdoor advertising spaces to all performers and venues. We also print hundreds of thousands of flyers / leaflets and posters for Fringe shows. We offer flyer and poster distribution to indoor outlets and on the street with our promotional teams undertaking hand to hand activity in all the hot spots throughout the city centre.</p>
 <a href="/fringe" class="button">Find Out More</a>
 </div>

 </div>
 </div>', 'productpage_jobname' => '0', 'page_title_headings' => '0', 'address_display' => 'Unit 1, New Queen Street<br>Bedminster<br/>Bristol <br> UK<br/>BS3 4AG', 'basket_displaytandcs' => '0', 'termsandconditions' => '', 'bacsdetails' => 'To make payment please find our details below these can also be found at the bottom of your confirmation email<br>
 Terms and Conditions apply.<br>
 Cheques payable to JamJar Print Ltd<br>
 Bank details. Barclays Bank, Bristol Branch<br>
 Sort code 20-13-45 Account No 70260649', 'heading_lowest_price' => '1', 'phonenumber' => '+448456809090', 'phonenumber_display' => '08456 80 90 90', 'productpage_showturnaround' => '1', 'basket_payment_bacs' => '1', 'basket_payment_credit' => '1', 'basket_requiretandcs' => '0', 'basket_minicart_icon' => '1', 'site_display_breadcrumbs' => '1', 'saledisabled_fringe' => 'Select...', 'maintenance_mode' => '0', 'maintenance_date' => 'Tuesday 7th May 2024', 'site_users' => '', 'basket_payment_online' => '1', 'frontendsettings' => array('orderemail' => 'info@jamjarprint.co.uk', 'worldpay_installationid' => '1099704', 'basket_usemincharge' => '1', 'basket_mincharge' => '15', 'productpage_proof' => '0', 'basket_proofcost' => '0', 'basket_freedeliveryamount' => '1000000', 'saledisabled' => '0', 'banneractive' => '0', 'bannercolour' => '#d73333', 'bannertextcolour' => '#130b0b', 'bannermessage' => 'Test banner', 'basket_pricemarkup' => '0', 'productpage_express' => '0', 'infoemail' => 'info@jamjarprint.co.uk', 'hascampaignmonitor' => '1', 'quoteemail' => 'info@jamjarprint.co.uk', 'samplepackemail' => 'info@jamjarprint.co.uk', 'worldpay_mdstring' => 'G3v6H940r3f4*Y4.3!FdfgB32Gtg5', 'homepage_carousel' => '1', 'homepage_articles' => '1', 'homepage_vertical_menu' => '0', 'homepage_news' => '1', 'homepage_upsell_display' => '0', 'homepage_upsell_products' => '41', 'homepage_heading_widget' => '0', 'homepage_heading_id' => '24', 'homepage_blurb_shown' => '0', 'homepage_blurb' => '<div class="row">
 <div class="col-md-6">
 <img src="/assets/images/b/promo.jpg" alt="">
 </div>
 <div class="col-md-6">
 <div class="promo-text">
 <h2>Edinburgh Fringe 2023</h2>
 <p>The largest arts festival in the world - working in partnership with The City of Edinburgh Council, we offer outdoor advertising spaces to all performers and venues. We also print hundreds of thousands of flyers / leaflets and posters for Fringe shows. We offer flyer and poster distribution to indoor outlets and on the street with our promotional teams undertaking hand to hand activity in all the hot spots throughout the city centre.</p>
 <a href="/fringe" class="button">Find Out More</a>
 </div>

 </div>
 </div>', 'productpage_jobname' => '0', 'page_title_headings' => '0', 'address_display' => 'Unit 1, New Queen Street<br>Bedminster<br/>Bristol <br> UK<br/>BS3 4AG', 'basket_displaytandcs' => '0', 'termsandconditions' => '', 'bacsdetails' => 'To make payment please find our details below these can also be found at the bottom of your confirmation email<br>
 Terms and Conditions apply.<br>
 Cheques payable to JamJar Print Ltd<br>
 Bank details. Barclays Bank, Bristol Branch<br>
 Sort code 20-13-45 Account No 70260649', 'heading_lowest_price' => '1', 'phonenumber' => '+448456809090', 'phonenumber_display' => '08456 80 90 90', 'productpage_showturnaround' => '1', 'basket_payment_bacs' => '1', 'basket_payment_credit' => '1', 'basket_requiretandcs' => '0', 'basket_minicart_icon' => '1', 'site_display_breadcrumbs' => '1', 'saledisabled_fringe' => 'Select...', 'maintenance_mode' => '0', 'maintenance_date' => 'Tuesday 7th May 2024', 'site_users' => '', 'basket_payment_online' => '1')), array())
     (vendor/twig/twig/src/Template.php:367)
  at Twig\Template->display(array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null))
     (vendor/twig/twig/src/Template.php:379)
  at Twig\Template->render(array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null))
     (vendor/twig/twig/src/TemplateWrapper.php:38)
  at Twig\TemplateWrapper->render(array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null))
     (vendor/twig/twig/src/Environment.php:280)
  at Twig\Environment->render('@ops_frontend_bundle/blocks/threeform.html.twig', array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null))
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:448)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRenderView('@ops_frontend_bundle/blocks/threeform.html.twig', null, array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null), 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:453)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->doRender('@ops_frontend_bundle/blocks/threeform.html.twig', null, array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null), null, 'render')
     (vendor/symfony/framework-bundle/Controller/AbstractController.php:253)
  at Symfony\Bundle\FrameworkBundle\Controller\AbstractController->render('@ops_frontend_bundle/blocks/threeform.html.twig', array('token' => null, 'paymentDetails' => null, 'total' => null, 'merchantCode' => 'JAMJARPRINTLM1', 'password' => 'vKzw7TAZ', 'url' => 'https://secure.worldpay.com/wcc/purchase', 'installationId' => '1099704', 'signature' => 'cb2640dfacde37af14ac3021d342c0bf', 'authvalidto' => 1752480657000, 'customerid' => null))
     (opsfrontendbundle/OpsFrontendBundle/src/Controller/BasketController.php:1463)
  at Ops\OpsFrontendBundle\Controller\BasketController->threeDForm(object(APIManager), object(Request))
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/home/jamjarprint/public_html/vendor/autoload_runtime.php')
     (public/index.php:5)