• Hello

    I have a website that I developed for my client using the Shopp plugin. He is using WordPress 3.2.1, Shopp 1.1.9 and Shopp Product Importer 0.9.2.3. I am trying to just import a very simple CSV. While he is currently re writing his csv of 15,000+ products.

    When you refresh the page the run importer button WILL appear but when its done loading is disappears

    Now I tried and ran this on a WordPress 2.9.1 site and the button was there. BUT it said it imported items but just the category not the product it self.

    Thanks
    Jacob

Viewing 2 replies - 1 through 2 (of 2 total)
  • No success?
    Same problem here. I dug into the CSS using firebug and got the button to show up. Clicked it, it told me it imported my data (categories, products, variations)… and nothing actually imported.
    I even deactivated all other plugins except Shopp and the csv importer.
    What a shame!
    I can’t wait a month for the new version to come out, had high hopes for the importer.

    it’s a error with the jquery code that is checking to make sure that all required fields have been assigned. The way jquery checks these values may have changed from previous versions, but I was able to fix the checks by replacing the following code in ‘settings.php’

    original:
    if (jQuery(this).attr(“selected”) == true) {

    updated
    if (jQuery(this).attr(“selected”) == ‘selected’) {

    You will need to change this for each field that it is checking for, and the run importer button will not be removed.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Shopp Product Importer no "Run Importer"’ is closed to new replies.