Custom image for shipping options

Hey I was wondering if its possible to display a custom image for each shipping option. So for example if you select regular postage, an image of regular postage would be displayed. If you select express postage, same thing. Is this possible with Business Catalyst?
One other thing. Is it possible to have free shipping option for 2 or more of a product, but also have express option if they want it?
Cheers,
Garuda

Hi Garuda,
The image thing would have to be implemented with some JS. You'd listen to the dropdown change and then render the image according to the shipping selection. I unfortunately don't have the code for you that will do this.
As for the free shipping option, you'd need to use a user defined option of $0 rather than the Free Shipping option and then set your weights so that both options are displayed at the same time when 2 or more items are added.
Cheers,
-mario

Similar Messages

  • Custom image for bullets

    For Keynote 2.02 I only seem to be able to choose one custom image for bullets. Is this the way it is, or is my application being glitchy?

    Hi Garuda,
    The image thing would have to be implemented with some JS. You'd listen to the dropdown change and then render the image according to the shipping selection. I unfortunately don't have the code for you that will do this.
    As for the free shipping option, you'd need to use a user defined option of $0 rather than the Free Shipping option and then set your weights so that both options are displayed at the same time when 2 or more items are added.
    Cheers,
    -mario

  • How to Created custom report for Ship not Billed (SD/FI)?

    Hi all,
    I am anticipating  to write some abap reports..Here is one of them..
    Anyone can help  me with writing a Report , how to do 'Custom Report for shipped not Billed(SD/FI)' ..But since I am new to Abap , if you wish to reply, please use a little more detail and simple explanation, step by step so I can understand what is the idea, how it can be acheived...what kind of report should be used , techniques, tables etc...:)
    Appreciate your help!
    Regards,
    Boby

    Hi Boby,
    You need to create custom transaction to achive these results.
    you will have selection-screen ,it would be :
    Date : Here date would be mandatory  - Ranges Option
    Customer  - Optional field - Ranges
    Order #  Sales Order (Optional) Ranges
    Invoice #  - Invoice # (Optional) Ranges
    You will get the data based on ur selection-screen criteria ...
    First you will have customer order details from diffrent table
    VBAK,
    VBAP,
    LIKP
    LIPS
    VBRK,
    VBRP
    KNA1,
    VBFA Tables ( See the my sample program )
    Output would be :
    Customer #   Custome Name    Order #   Delivery #   Invoice #   Netpr, Netquantity ,
    Check the condition  whether invoice table has VBRK-RFBSK  = ''.
    See the my sample program : This is sales report by monthly..
    REPORT ZFDSALES_REPORT no standard page heading
                           message-id zwave.
    Data Declaration Part
    TYPE-POOLS
    type-pools : slis.
    Tables
    tables : VBAK,
             VBAP.
    Internal table for VBAK Table
    data : begin of i_vbak occurs 0,
           vbeln like vbak-vbeln,
           bstnk like vbak-bstnk,
           vdatu like vbak-vdatu,
           end of i_vbak.
    Internal table for VBAP and MATNR
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           maktx like makt-maktx,
           end of i_vbap.
    Internal tables
    data : begin of i_sales occurs 0,
           vdatu like vbak-vdatu,
           bstnk like vbak-bstnk,
           matnr like vbap-matnr,
           maktx like makt-maktx,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr  like vbap-netpr,
           end of i_sales.
    Variable for ALV
    data : v_repid like sy-repid,
           gt_fieldcat    type slis_t_fieldcat_alv.
    Selection-screen
    selection-screen : begin of block blk with frame title text-001.
    select-options : s_vbeln for vbak-vbeln,
                     s_erdat for vbak-erdat,
                     s_ernam for vbak-ernam,
                     s_vdatu for vbak-vdatu obligatory,
                     s_BSTNK for vbak-BSTNK,
                     s_KUNNR for vbak-kunnr,
                     s_matnr for vbap-matnr,
                     s_KDMAT for vbap-KDMAT.
    selection-screen : end of block blk.
    Initilization
    initialization.
      v_repid = sy-repid.
    S T A R T  -  O F  -  S E L E C T I O N ****************
    start-of-selection.
    Get the data from VBAK and VBAP Tables
      perform get_vbak_vbap.
    E N D  -  O F  -  S E L E C T I O N *****************
    end-of-selection.
    Display the data
      perform dispolay_data.
    *&      Form  get_vbak_vbap
          Get the data from VBAK and VBAP Table
    FORM get_vbak_vbap.
    Get the data from VBAK Table
      select vbeln bstnk vdatu from vbak into table i_vbak
                         where vbeln in s_vbeln
                         and   bstnk in s_bstnk
                         and   vdatu in s_vdatu
                         and   kunnr in s_kunnr
                         and   erdat in s_erdat
                         and   ernam in s_ernam.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
    Get the data from VBAP Table
      select avbeln amatnr akdmat akwmeng a~netpr
             b~maktx into table i_vbap
             from vbap as a inner join makt as b on bmatnr = amatnr
             for all entries in i_vbak
             where a~vbeln in s_vbeln
             and   a~kdmat in s_kdmat
             and   a~abgru = space
             and   a~matnr in s_matnr
             and   a~matnr ne '000000000000009999'
             and   a~matnr ne '000000000000004444'
             and   a~matnr ne '000000000000008888'
             and   a~matnr ne '000000000000001111'
             and   a~werks = '1000'
             and   b~spras = 'E'
             and   a~vbeln = i_vbak-vbeln.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
      sort i_vbak by vbeln.
      sort i_vbap by vbeln matnr.
      loop at i_vbap.
        read table i_vbak with key vbeln = i_vbap-vbeln
                                binary search.
        if sy-subrc eq 0.
          i_sales-bstnk = i_vbak-bstnk.
          i_sales-vdatu = i_vbak-vdatu.
          i_sales-matnr = i_vbap-matnr.
          i_sales-kdmat = i_vbap-kdmat.
          i_sales-maktx = i_vbap-maktx.
          i_sales-netpr = i_vbap-netpr.
          i_sales-kwmeng = i_vbap-kwmeng.
          append i_sales.
        else.
          continue.
        endif.
        clear : i_sales,
                i_vbap,
                i_vbak.
      endloop.
      sort i_sales by vdatu bstnk matnr.
      refresh : i_vbap,
                i_vbak.
    ENDFORM.                    " get_vbak_vbap
    *&      Form  dispolay_data
          Display the data
    FORM dispolay_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          IT_FIELDCAT                       = gt_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_sales
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    ENDFORM.                    " dispolay_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Delivery Date
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'VDATU'.
      LS_FIELDCAT-OUTPUTLEN    = 12.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Delivery Date'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Purchase Order #Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'BSTNK'.
      LS_FIELDCAT-OUTPUTLEN    = 25.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Purchase Order #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-REF_FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-REF_TABNAME    = 'MARA'.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material #'.
      ls_fieldcat-seltext_M = 'Material #'.
      ls_fieldcat-seltext_S = 'Material #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MAKTX'.
      LS_FIELDCAT-OUTPUTLEN    = 40.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material Description'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Customer Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KDMAT'.
      LS_FIELDCAT-OUTPUTLEN    = 35.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Customer material no.'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Quantity
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KWMENG'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Quantity'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Net Price
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'NETPR'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Net Price'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init
    Reward Points if it is helpful
    Thanks
    Seshu

  • Best method for Shipping Options in Ecommerce - HELP?

    Hello, we are running a eshop that has numerous catalogues (product groups) and due to the nature of the products, some include shipping and others are charged at certain rates.  For example:
    CATALOG 1
    Product 1 - £10.00 - No shipping/delivery costs
    Product 2 - £15.00 - No shipping/delivery costs
    CATALOG 2
    Product 4 - £5.00 - £19 per item
    Product 5 - £10.00 - £19 per item
    CATALOG 3
    Product 6 - £20.00 - £19 per item
    Product 7 - £25.00 - No shipping/delivery costs
    Product 8 - £20.00 - £13.60 per item
    If I order product 1 (no shipping), 2 x product 5 (£19 twice for shipping) and Product 8 (£13.60 shipping).
    Is there a way of achieving the correct shipping amount??
    I have spoken to chat support, who are as useful as a chocolate tea pot.   Adobe really, really (please) need to sort a better shipping options method - really letting the product down.
    Any 'work around' solutions or reccomendations would be greatly appreciated.
    Thanks.

    Sorry I don't have an answer, but I love the 'chocolate teapot' analogy.

  • How to add Custom Image for the Workset Map Pictogram property

    Hello Everybody,
                     Can anyone suggest where should i put a custom image so that i can select it in the Workset Map Pictogram Property of an Iview. I have already uploaded a gif image in root->etc->public->mimes->images->pictograms in KM but still i am not able to see the uploaded image in Iview property. Looking forward for a quick solution.
    Thanks in advance,
    Regards,
    Sarabjeet Singh.

    Hello Nicolas,
    just stumbled accross the topic. Well, if the portal service is
    ".../j2ee/cluster/server0/apps/sap. com/irj/servlet_jsp/irj/root/portalapps/com.sap.portal.navigation.mimeservice" as discussed above.
    I have found the .gifs inside this par file of my NW7.0 Portal:
    \j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd\com.sap.portal.navigation.mimeservice.par.bak
    Hope this is still interesting for someone.
    Regs
    Ulf

  • Using custom images for radiobuttons

    Hi
    I'm looking for help with creating a radio buttons with external images (fetched from XML/Javascript file) cause, I don't want to use standard looking radio buttons from components. I wish to use different images for each state of the button.
    Any one can help me with some ideas how to change look of then radio buttons?

    To manage homegrown radiobuttons as a group, you would incorporate an event listener function that manages the group.  That function would know which radio button was selected via the event target and would act to reset all of the other radios while setting the one selected.  I don't have a specific AS3 example, but below is a rough draft of the function/scenario.  In this, I am using 3 radio buttons that have numerically differentiated instance names (rb1, rb2, rb3)...
    var selectedRadio:MovieClip;
    function manageRadios(evt:MouseEvent){
         // first reset all radios
         for(var i:uint = 1; i<4; i++){
              this["rb"+String(i)].gotoAndStop(1);  // frame displaying deselected state
         selectedRadio = MovieClip(evt.currentTarget);
         selectedRadio.gotoAndStop(2);           // frame displaying selected state
         trace(selectedRadio.name);
    rb1.addEventListener(MouseEvent.CLICK, manageRadios);
    rb2.addEventListener(MouseEvent.CLICK, manageRadios);
    rb3.addEventListener(MouseEvent.CLICK, manageRadios);
    In this case, each radio button is simply a two framed movieclip, with stops for each frame... frame 1 displays the unselected state, and frame 2 displays the selected state.
    For the code shown, I include an external variable (selectedRadio) that can be used to target information related to the selected Radio button.  So if you assigned each radio with a variable (let's say you name it varName) that would hold data to be used in the processing elsewhere, you can get it using: selectedRadio.varName

  • Custom Workflow for Shipping Execution

    Hi All,
    We have a requirement to cater approval on issuance i.e. at the time of shipping execution. For this purpose we have used Oracle Workflow Builder to cater the requirement. The workflow is working fine for approval but not for rejection. If we approve the shipping execution, the transaction is working fine but if we rejects it, the shipping transaction got stuck with exception and if we resolve the exception manually, we are unable to re send it for approval or even shipping.
    I will be grateful if anyone can help me out and advise me on how to setup of workflow for rejection.
    Thanks in advance.
    Regards,
    Zulfiqar Ali Mughal

    It is possible that the workflow has already been registered in db before you modified workflowActivities.xml.Did you try cleaning up workflow tables and restart the server??
    epub_workflow_info, epub_coll_workflow, epub_ind_wf,epub_wf_server_id tables
    Make sure there is only one entry for each workflow in epub_workflow_info. If there are multiple entries, then it may be coming from 2 different places and you need to disable one of them. Whenever you create custom work flow, copy the existing workflow and modify it and give it a different name. If you are importing programmatically, you really dont need to configure it in taskConfiguraiton.xml ( as it corresponds to settings related to which item-descriptors, tabs, security in BCC gui).
    -karthik

  • Using custom images for website?

    Hi, I'm totally new to this Dreamweaver stuff so I'm sorry if this is very easy, but I have created an image in Illustrator that I would now like to use as a website. The image is this:
    I have a background, and a menu bar and I'm trying to figure out how to use it as a background image. I'm looking to create a one column website that is liquid and has a little content on each page.
    Thanks in advance!

    Of course, this CSS will only work if the background image is named "background.png", and it is in the same location as the page you are making.  Perhaps it would be more helpful to do it this way -
    body {
        margin: 0;
        padding: 0;
        background-image: url(the_path_to_your_image);
        background-repeat:no-repeat;
    This will place the background image on the page aligned with the upper, left-hand corner of the browser viewport.  Now you will have to build the page's infrastructure so that the content is properly aligned with the background image.  You may have problems doing this, as this approach is not normally one that is successful (i.e., designing a single background image containing all of your layout elements and then just trying to align content to it).  Think about what will happen with that approach if someone makes their browser display text larger or smaller than you have used while you are aligning things!
    A better approach is to make the background an image (if you use an image at all) that can tile to fill the screen no matter how large the screen is.  Then build the page as a series of stacked rectangular containers, where each container is parent to a single part of the page's layout (like masthead, menu, content, footer, credit for example) and style each container with its own background image/color as needed.  That way, if one container expands because text is resized, the whole arrangement can flex vertically to accommodate it.  This approach will require that you understand enough about CSS to know that using absolute positioning is NOT the right way to go about making such a page.
    If you are not so friendly with CSS, then I suggest you delay your beginning on this site until you have acquired some additional familiarity with it.  A great way to get that is to read the "Missing Manual" volume for your version of DW.  The book is published by O'Reilly press and is authored by David McFarland.

  • Custom Icon Images for Folders in KM

    Hello Everyody,
                   I have to display folders such as Pesonal Documents, Public documents, Recently used, Favourites etc which are there in the entry point repository in KM. Right now all these folders are being displayed with the default icon image specified. I want to replace these default images with custom images but couldnt see any property where i can change the image path for these folders. I checked the details of all these folders and even went through the properties but there it shows only the default image name speciefied for that folder and no active settings where i can change the image path for custom icon. Kindly suggest how to implement custom image for KM folder icons.
    Thanking you all in advance,
    Regards,
    Sarabjeet.

    Hi,
    If I understood, you have a KM navigation iview, where some folders apperar. You want to change the icon for each of them differently.
    For this do the following:
    First have a look into the KM.navigation iview and get the layout set property. Go to System config->KM->Content management->User interface->Settings->LayoutSet and find the layout set you are using. Go to appropriate resource renderer and check the "<b>Icon setting</b>". Change it to: <b>iconreplace</b>.
    Now get the KM details for your folders and change the <b>IconSource</b> property to your image Example:
    /etc/public/mimes/images/add.gif
    Voila...the icons for these folders are changed!
    Hope this is your case.
    Romano

  • Deploying Custom Image with Answer File

    Hi everyone!
    I'm in the process of making a custom image for ~25 computers, using WAIK (no network so no MDT, WDS...). I followed Technet's "Step-by-Step: Basic Windows 7 Deployment for IT Professionals", and installed from original Win7 Ultimate Retail
    Media, with an answer file. Finally I customized that install and now have a properly set-up install, in audit mode and waiting to be generalized.
    I'd like to deploy this custom install with an answer file/configuration set, in order to auto-install some drivers and hardware-specific apps, answer typical questions, etc...
    But I must admit, I'm a bit unclear as to how to proceed from there. So I'm going to state how I understand it, and would love you to correct me where I'm wrong!
    On reference computer, run syprep /generalize /oobe /shutdown
    Boot to WinPE, capture image with ImageX
    Open the resulting custom.wim in WSIM, generate a catalog file
    Make Answer File + Configuration Set, copy them to the root of an empty UFD
    Replace the Original Win7 Media's install.wim with my custom.wim, make bootable UFD
    Deploy to other computers with the 2 UFD's
    Does that sound right to you? Am I missing something? Also, should I be running sysprep with a /unattend:xxx.xml switch (not sure how that works)?
    Bonus Question:
    I'd like to use the Answer File + Configuration Set to perform some silent installs via script. Could you point me to a relevant Technet (or 3rd party) resource for that?
    Thank you very much for reading ^^

    If you are doing the "replace install.wim" option, then you are installing using Setup. In this scenario, Setup will ignore the answer file specified in the image with the /unattend switch with Sysprep. So it would be unnecessary to prepare the
    image with that switch.
    Awesome! Thanks very much for clarifying the use of the /unattend switch with sysprep =)
    Anyways, I'd rather use an autounattend.xml in another UFD, which I can replace for any different hardware type, partition layout, etc...
    Also, the "replace install.wim" method is the only one I know. Are there others I should be aware of?
    Thanks!
    Hi,
    yes, the basic process is like what you said.
    Here is a guide which contains the video and text to tech you how to do the deployment.
    Deploy Windows 7 The Easy Way: Using WDS, MDT and AIK - Step-By-Step Video - See more at:
    http://blogs.technet.com/b/danstolts/archive/2010/03/11/deploy-windows-7-the-easy-way-using-wds-mdt-and-aik-step-by-step-video.aspx
    You could refer to this article. If you have any question about it, feel free to contact us
    Thank you very much for confirming, and for this useful resource =)
    I'll definitely give it a read once I get a proper domain up and running at the office.

  • Reduce size of custom images in Address Book

    I love Address Book's wonderful integration with Mail.app, my iPod and even my phone. So, one day I decided to set custom images for almost all of my contacts - copying and pasting images into the fields.
    However, afterwards, I realised that my 275 contact address book has ballooned from 2MB to 49.9MB thanks to the pictures. If I export the contacts into a Group vCards, it is an astounding 121.8 MB.
    I feel that Apple should've limited the size of the pictures (automatically resize it just as iPhoto does for email and iWeb does for the web). However, this isn't the case.
    Thus, my question is:
    Is there a script or anything to reduce the size of those custom images? I am not looking forward to deleting the pictures and resizing them before importing them into Address Book. If there is an automated way of resizing the pictures, please let me know!
    Thank you very much!

    Hi mintchocicecream,
    Have a look at this:
    http://discussions.apple.com/message.jspa?messageID=2271577#2271577
    May be of no help, but sounds like you have larger that necessary files.
    I do mot know of any script, short of a photoshop group resize that would work. Certainly nothing in Address Book.
    Good Luck
    John

  • Patch Cisco Custom Image

    Hi,
    I've installed a Cisco Custom ESXi 5.5 Image in a UCS C220 M3 and i would like to know if i can install the patches using Update Manager as i do with a default image. I'm not sure if i'll have any problems because some patches update the ESXi drivers and could for example overwrite the Cisco enic and fnic.
    I know HP and Dell have their repositories that i can use with Update Manager, but cannot find anything like that for cisco.
    Thanks

    Hi Netadmin,
    The support of the OS for UCS blades, or rack mount servers will depend on the model of your server and the firmware that it is running. 
    If you are looking for the Cisco 5.1 U3 download iso you can find it below.  Also include the compatibility matrix, you can verify if you server does support this version based on the firmware installed.
    Download Cisco Custom Image for ESXi 5.1.0 U3 GA Install CD
    https://my.vmware.com/web/vmware/details?downloadGroup=CISCO-ESXI-5.1.0U3&productId=285
    UCS HW and SW Interoperability
    http://www.cisco.com/web/techdoc/ucs/interoperability/matrix/matrix.html
    Let me know if this helps or if you have any other questions.

  • Custom shipping options?

    Alright - I got a question I can't seem to find an answer to.
    I've got an item. this item measures
    W - 3.5
    H - 5.75
    D - 1.5
    Then I've defined some custom shipping options.
    These are the USPS boxes - where an items weight doesn't matter. Only the size of the items.
    8.625 x 5.375 x 1.625 SMALL BOX
    1 x 8.5 x 5.5 MEDIUM BOX
    12 x 12 x 5.5 LARGE BOX
    The idea here is to fit the items into the box - the whole " if it fits it ships " idea.
    If you add two of these items into the shopping cart, it basically just doubles the dimensions of ALL the measurements of the items... Which will exceed at least one of W H D - so it returns no shipping options. It should just go up to the next size box, or at least return it as an option. It seems that this is seriously broken in a very big way. You could fit two of these items into a medium sized box - easy. but the system seems to kick it back since the height is larger than the height of the boxes... but only when you add them in together. the volume works.
    The client does not care for how the shipping API's work - so this was my solution - if it fits it ships. Am I missing something seriously major here or is shipping in general just a HUGE flaw in the business catalyst system?

    Hi Garuda,
    The image thing would have to be implemented with some JS. You'd listen to the dropdown change and then render the image according to the shipping selection. I unfortunately don't have the code for you that will do this.
    As for the free shipping option, you'd need to use a user defined option of $0 rather than the Free Shipping option and then set your weights so that both options are displayed at the same time when 2 or more items are added.
    Cheers,
    -mario

  • Shipping options for different countries

    Hi, this is the first time using BC's full E-commerce tools, some things are clear, others not so.
    I've studied the BC info quite a bit and watched the tutorials videos that I can find but I'm still not clear on this - How do I tie the appropriate shipping option into the country that somebody wants the item delivered to? ie, What is stopping the buyer from selecting the cheapest drop-down shipping option? For example, the site is in NZ, somebody from UK purchases a product, in the Shopping Cart United Kingdom is selected from the Destination Country drop-down, and if I have more than one custom Shipping Option what's to stop the buyer from selecting the cheapest in the Choose Shipping Option drop-down? I can't find how to prevent this from happening.

    Hi Grant,
    I'm not so sure that it works so simply like that... there no way to test it outside of flying to another country and using the internet to see if it automatically works like that...
    I just assumed that it worked based on users IP, but perhaps not?
    Here's the answer i got from support....
    "Unfortunately, it would not be possible to automatically set the country and shipping options for the customer based on the location.
    You can limit the countries where you deliver, and based on the country selection you can display the shipping options to the customers.
    You may go ahead and use the module {module_visitorcountrycode} to identify the country of the visitor, and then use some JavaScript to automatically set the country, and based on that country you can display the shipping options."

  • Why can I no longer use an image for my signature on forms?  The only option I have now is "use a certificate".  It was never like this until today.

    Why can I no longer use an image for my signature on forms?  The only option I have now is "use a certificate".  It was never like this until today.

    Hi,
    I had never heard of someone using the iPhone Number as the ID in the iMessages account in the Mac version.
    i.e without adding an Apple ID
    iMessages does allow iPhone numbers and mine lists mine.
    I would try this.
    Sign Out of the iMessages account and Quit Messages
    On the iPhone in Settings > Messages remove the Apple ID
    Set the iPhone to Airplane mode for a few minutes (to break with the  Server)
    On starting the phone up again check the iPhone Number  is ticked for iMessages.
    If it is add the Apple ID
    On the Mac restart Messages
    Add the Apple ID
    At this point you should get a pop up or two saying the iPhone is using the Number and Apple ID.
    Accept these and they get added to the Receive At list and Send From drop down.
    9:41 pm      Monday; October 28, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • ITunes imports songs but they wont appear in iTunes

    When I go to import music, iTunes will go through the whole import process but when I go to search in my library, the songs dont appear. I can search for the album and it appears in the search box but when I click on it, nothing happens. I can go thr

  • Standard SAPScript

    Hi, Is there any standard SAPScript available for tcode f-02. Regards, Vijaya B.

  • Photoshop CC 2014 taches automatique bmp vers jpeg

    Bonjour, Ma question est précise: Je souhaites passer mes BMP assez anciens pour les convertir en Jpg Je voudrais le faire sur 2000 photos donc en tache automatique, mais je n'arrives pas à bien faire ma description de tache 1) Je charge un bmp avant

  • LR purchase through Apple App Store, No available Upgrade to 4.2.

    Yeah, after downloading the update from the adobe site 3 to 4 times. I realized that I puchased LR through the APP store which doesn't allow for updates from the adobe website only the apple app store. I will never purchase a third party app from the

  • Sound works, screen doesn't!!!

    Of course, one day after the year warranty is up, so is my screen. Not cracked, hardly scratched, just blank white screen. I can hear the clicks when I move the wheel and by luck can start a song playing, BUT I CAN'T SEE ANYTHING! I got this for Chri