Steve,
I recall that craftzombie posted something about running EP on this. If I remember right you have to remove the comments on a few lines. Check back some pages ago... If you can't find anything please post again.
Cheers,
Printable View
Hi! Actually, it was the Quick Updates mod, not Easy Populate. I recommend the Quick Updates mod to ALL Zencart users. It is an extremely valuable tool because it will save you tons of time when you need to update many products at once. I don't know much about Easy Populate and have never used it because frankly, I don't know how to create tab delimited files. I'm sure its not that hard, I just don't have the time to find out for sure! It sounds like Easy Populate might be even faster than Quick Updates since you just need to upload one file, but Quick Updates is really easy to use for us non-Excel people. And since Quick Updates is definitely compatible with Dual Pricing, it might be the right choice for you right now until you can get more info on whether Easy Populate will work. If you decide to use Quick Updates, see this link for easy instructions on how to enable it to work with Dual Pricing:
http://www.zen-cart.com/forum/showpo...&postcount=194
:smile:
Here is a screen shot of what Quick Updates looks like after you adjust it to work with Dual Pricing:
http://craftzombie.com/zencart/qu.gif
The section in red should appear and you will be able to add the four different pricing levels. Much thanks to PaulM for adding this to Quick Updates after I and a few others requested it. It saved me!
I have installed Dual Pricing 1.3.8 on my 1.3.6 zencart install. Everything seems fine except one thing - all my prices in the store are displaying as 0! Is this because of the slight version difference? Or is there another problem. I tried to read through this thread to find a solution but my eyes went buggy after so many pages!
Thanks in advance!
k23m,
I would try installing the version of the mod that was intended for your Cart Version. I don't know what functionality if any you will lose by choosing not to upgrade.
Dual Pricing for ZC Version 1.3.6
from what i can tell wholesale prices dont get affected by specials ?? has there been any work on this as im going to have a look at working some thing out...
thanks all the same for the mod...
Hayden.
btw on the topic of specials, heres an importan easy fix to make the selection box for picking your product to be on special:
line: 316
/admin/specials.php
the only change in the below is on line 316; > size="30" (instead of 5 !! :wacko:
PHP Code:
<tr><form name="new_special" <?php echo 'action="' . zen_href_link(FILENAME_SPECIALS, zen_get_all_get_params(array('action', 'info', 'sID')) . 'action=' . $form_action . '&go_back=' . $_GET['go_back'], 'NONSSL') . '"'; ?> method="post"><?php if ($form_action == 'update') echo zen_draw_hidden_field('specials_id', $_GET['sID']); ?>
<td><br><table border="0" cellspacing="0" cellpadding="2">
<tr>
<td class="main"><?php echo TEXT_SPECIALS_PRODUCT; ?> </td>
<td class="main"><?php echo (isset($sInfo->products_name)) ? $sInfo->products_name . ' <small>(' . $currencies->format($sInfo->products_price) . ')</small>' : zen_draw_products_pull_down('products_id', 'size="30" style="font-size:10px"', $specials_array, true, $_GET['add_products_id'], true); echo zen_draw_hidden_field('products_price', (isset($sInfo->products_price) ? $sInfo->products_price : '')); ?></td>
</tr>
<tr>