Jump to content

bsmither

Member
  • Posts

    18,177
  • Joined

  • Last visited

  • Days Won

    609

Posts posted by bsmither

  1. Not sure if this is a misunderstanding on your part, or if there is a true problem with CC, but this is how it works on my site:

    If I'm looking at products listed in a category page and I click on the "Buy" button, CC adds one to the cart and also takes you to the product page where CC offers to you an additional opportunity to add to your basket a specified quantity of this product.

    Hit the back button on your browser and click "Buy" once again, another unit is added to the cart.

    While I was showing the cart to my client, both she and I fell into that circumstance. I believe this behavior is outside the paradigm of intuitiveness.

  2. That has happened to me, too, recently. But this was when I was really experimenting with CC.

    I think the problem shows up, at least for me, when I was trying to log in using the same user/pass in two separate browsers (FF and IE6) using the same IP address at the same time.

    I also made sure IE6 had the cache deleted.

    Do you have any other browser windows that may still be open and logged in?

  3. Have you modified your skin? You said your documents are in a side bar, but the three skins that come with CC put the links to the documents centered at the bottom.

    If you are using Legend, the over-all box lengthens to accommodate all your doc links. But the separator character kind of throws off the effect.

    Killer has a definite height limit unless you modify \skins\Killer\styleSheets\layout.css to allow it (grab your CSS text books and image editing program!).

    The code at (or near) line 49 in \skins\Killer\styleTemplates\boxes\siteDocs.tpl checks for the last link and doesn't put a separator after it.

    If you do want the siteDocs box contents to wrap after x number of links per line, change out lines 49-51 for something that uses a MOD function. You may have to have a PHP guru figure that one out for you.

    As a second option, in \skins\Killer\styleTemplates\global\index.tpl, you can move the placeholders (called blocks) to wherever you need them. Like, move {SITE_DOCS} into the left column of the table code that's higher up in the template.

    So, you'll have to change your layout to accommodate a large number of site documents.

  4. OK, I've examined the XTemplate class and made a cursory look through the parse() function.

    More importantly, I looked at the assign() function and now I see that this function is not making any text substitution when called, but rather using the placeholder as an index entry in an array and giving the text supplied as the value in the array at that index.

    Then it's all parsed. Which means, it's batched. That is, the illustrative code earlier would end up with:

    vars["VAR1"] = "Make{GLOBAL2}"

    vars["GLOBAL2"] = " {GLOBAL3} Day"

    vars["GLOBAL3"] = "My"

    and when parsed (I believe), would result in:

    outString = "Make{GLOBAL2} {GLOBAL3} DayMy"

    My next experiment is to run the outString through another iteration of assign() after the parse() function.

  5. Good info about what the parse() function is working on. Where is that function?

    The question I was really asking was, is the assign() function sequential or batched? That is (forgive the bad PHP coding):

    // Global variables persist across session

    var2 = " {GLOBAL3} Day";

    var3 = "My";

    // Local variables for this page only

    var1 = "Make{GLOBAL2}";

    outString = "{VAR1}";

    $outString->assign("VAR1",$var1)

    // So now outString should contain "Make{GLOBAL2}"

    // If I were to do this:

    $outString->assign("GLOBAL2",$var2);

    // $outString should now contain "Make {GLOBAL3} Day"

    // Next:

    $outString->assign("GLOBAL3",$var3);

    // I should have "Make My Day"

    But I don't when I worked on the following experiment.

    I put {VAL_LAST_NAME} in one of my site docs, then copied the code from the profile.inc.php that replaces {VAL_LAST_NAME} with the data from the database record. The {VAL_LAST_NAME} was still visible in the site doc. Assign() did not replace it. And I'm sure I coded it correctly.

    The question is, as seen in the code above, can these placeholders be 'nested'?

  6. I have in mind to use the profile data from the currently logged in shopper to send via querystring to a third-party feedback form.

    So, in the file \skins\-myskin-\styleTemplates\content\profile.tpl where the parser replaces {VAL_LAST_NAME} with the appropriate data from the currently logged-in visitor (for this particular session), can I also use this in a link in any of the Site Docs?

    When I think about it, it seems like it would not work, because a site doc is read out of a database record and is probably NOT parsed. Is there a owner/programmer-callable function call that will parse these placeholders?

    I know there are "Contact Us" mods available, but since I already have one, and I'm willing to experiment to transfer data in this manner, maybe someone can drop a few hints on where to get started.

  7. Are you willing to delete them? Copy the content to an archive somewhere, then in the Admin Panel, Site Docs, delete whichever docs you want to be removed from the Site Docs bar.

    The site docs are loaded from the database and are listed in (apparently) doc name order - that is, not in doc ID# order.

    Are you wanting to be able to display a site doc only if the visitor knows the precise URL for the doc? Or have a site doc only appear on the bar in only select pages?

    You can also google for "Show-Hide-Order Site Documents" and see what turns up.

  8. Open skins/{your skin}/styleSheets/style.css:

    .txtCopyright, a.txtCopyright

    Colour, font and alignment can be changed here.

    Please don't forget, that changing the copyright to a size or colour that cannot be seen is a breach of the copyright terms on Cubecart. To remove the copyright, purchase a license.

    What I want is to join the two lines in the footer into one.

    Just playing idiot-mode for a second, there's bound to be member of my Board of Directors who will think that some visitors are going to assume my entire store's contents and descriptions are copyrighted by Devellion.

    So, I want:

    MyStore contents and descriptions copyright MyCompany. All rights reserved.

    Powered by CubeCart - Copyright Devellion Limited 2006. All rights reserved.

    By placing CubeCart's two lines into one, I'm hoping there will be less ambiguity as to what part of my store is copyrighted by Devellion.

×
×
  • Create New...