Announcement

Collapse
No announcement yet.

Problem with TM symbol

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Hi Tracey,

    This is a bug because it used to work in V7.

    Work around:

    Edit ActinicDiscounts.pm
    Search for and replace...
    $Response[1]

    with...
    $$pProduct{'NAME'}

    Save and exit

    Edit ActinicOrder.pm
    Search for and replace...
    $sProdLink = !$bIncludeButtons ? $Response[1] : sprintf($sProdLinkFormat,
    ACTINIC::EncodeText2($$pProduct{'REFERENCE'}), $Response[1]);

    with...
    $sProdLink = !$bIncludeButtons ? $Response[1] : sprintf($sProdLinkFormat,
    ACTINIC::EncodeText2($$pProduct{'REFERENCE'}), $$pProduct{'NAME'});

    Save and exit

    Edit SearchScript.pl
    Search for and replace...
    $ACTINIC::B2B->SetXML('S_PNAME', $sTemp);

    with...
    $ACTINIC::B2B->SetXML('S_PNAME', $Product{NAME});

    Save and exit

    Edit ShoppingCart.pl
    Search for and replace...
    $hVariables{$::VARPREFIX."PRODUCTNAME"} = $sLine;

    with...
    $hVariables{$::VARPREFIX."PRODUCTNAME"} = $$pProduct{"NAME"};

    Save and exit

    Update the site

    Please make sure you have a backup first.
    Regards,

    Toby Blanchard

    Comment


      #17
      Toby,

      Will this resolution also work for the problem I mentioned in my previous post?
      Jules

      Comment


        #18
        Cheers, Toby
        I'll try that later and report back (have no fear )
        Tracey

        Comment


          #19
          Will this resolution also work for the problem I mentioned in my previous post?
          No i dont think so. I'll take a look at that one.

          I'll try that later and report back (have no fear )
          Backups!
          Regards,

          Toby Blanchard

          Comment


            #20
            Originally posted by Toby B
            Backups!
            yes yes!!
            I'm a multiple backup kinda gal
            Tracey

            Comment


              #21
              Reporting back....didn't work

              Tried using the alt 0153 method of getting the TM first. Looked fine on confirmation screen...then it added a T into the cart (in checkout phase) in place of the TM but it still showed as a ? on the customer receipt/invoice.

              So I tried the !!<&trade;>!! method of entering the TM into the short description.. worked ok in the cart confirmation but as soon I reached checkout phase, it reverted back to displaying &trade; again

              Just the same as it was doing before then (and I watched it upload the amended scripts when I updating the site)

              Don't think I did it wrong I'm pretty good at following instruction
              Last edited by TraceyHand; 21-Jun-2007, 07:50 PM. Reason: incorrect html entered....dur
              Tracey

              Comment


                #22
                Hi Tracey

                I could replicate it on a default site. I am checking with our developement team about this, will post an update as soon as I hear from them.
                Regards

                Dhivya Malani

                Comment


                  #23
                  Hi Tracey

                  Refinement to the change for ActinicOrder.pm

                  Edit ActinicOrder.pm
                  Search for and replace...
                  $sProdLink = !$bIncludeButtons ? $Response[1] : sprintf($sProdLinkFormat,
                  ACTINIC::EncodeText2($$pProduct{'REFERENCE'}), $Response[1]);

                  with...
                  $sProdLink = !$bIncludeButtons ? $$pProduct{'NAME'} :
                  sprintf($sProdLinkFormat,
                  ACTINIC::EncodeText2($$pProduct{'REFERENCE'}), $$pProduct{'NAME'});

                  Note: the replacement line should be all on one line.

                  I hope this helps.
                  Regards

                  Dhivya Malani

                  Comment

                  Working...
                  X