Wednesday, December 5, 2012

OPS 12.3 Feature Release Webinar announced



EFI OPS invites you to join our 12.3 Feature Release Webinar!

Date: Monday, December 10th 2012
Time: 4:00 PM EST US (1:00 PM PST)

If you didn't get an invitation, please submit a support ticket in the OPS support system or email support@onlineprintsolutions.com.

Tuesday, November 27, 2012

Web-to-Print TaTs #5 - Delivery Details/Billing Details HACKED!


Here's a great little GEM that I'm asked about all the time that drives customers a bit bonkers.

You know the OPS Cart screen where it has the inputs for the delivery information and the Title of the section says "Delivery Details/Billing Details"?  You know the one...  That one where you ask yourself, "Self, where do I change that heading so it doesn't confuse my customers that we don't bill?"

The culprit!


Well, honestly, that particular heading is buried in the core code and is not accessible directly.  And yes, there is no Screen Definition for it either.

Here's a dandy little solution to make it say what you want:

You will need:
  • I believe you need OPS version 12.2 at minimum (don't quote me on this though).
  • Custom Branding with a Custom Header File
  • The following JQuery code inserted into the top of your Custom Header File:

<script src=" https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(document).ready(function(){

     var Mypath = window.location.pathname;
     var path = Mypath.indexOf("Cart");
     if (path == 1) {
        $('table#tabDelDetails td.bordertableheader').html('<b>Delivery Details</b>');
     }

});
</script>


You can now customize the text between the "<b> and </b>" to your liking.

The Result:


Happy Customizing!




Monday, October 1, 2012