Announcement

Collapse
No announcement yet.

How to loose hyphen between component and attribute names in the checkout page?

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

    How to loose hyphen between component and attribute names in the checkout page?

    Actinic inserts a hyphen between my product component name and attribute name in the checkout page - I would like to remove this but can't find it in Design View/Shopping Cart page

    Any advice much appreciated -am using Actinic 8.2

    #2
    Can you give a URL and exmple product?

    Comment


      #3
      Product example at
      http://www.whitesconservatories.co.u...eds_4_x_4.html

      Comment


        #4
        This is likely done by the perl scripts.

        Perhaps someone else can confirm that and suggest a mod for it...

        Comment


          #5
          I'd agree Perl scripts for sure. Maybe looking at the AUG article for removing the quantity on components would be a good starting point. It may at least get you in the right area in need of change. Remember though you will need to redo the change after any upgrades if you go through with it.

          Comment


            #6
            Thanks for your suggestions

            Comment


              #7
              I don't know if you found this but to remove the hyphen you need to edit ActinicOrder.pm in your site folder and search for:

              Code:
              $Res{text} = $component->[$::CBIDX_NAME] . " - " . $Res{text};
              To remove the hyphen, change:

              Code:
              . " - " .
              to

              Code:
              . "  " .

              Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.
              ********************
              Tracey
              SellerDeck

              Comment


                #8
                Tracey - thanks for that - has worked fine

                Comment

                Working...
                X