

MattM
Members-
Content count
16 -
Joined
-
Last visited
Profile Information
-
Real Name
Mathew Marulla
- Website
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
There is an error in EasyPopulate. It might be fixed in the latest versions, but it's in my copy. In the file easypopulate.php, around line 500, you will find: if ($dltype == 'froogle'){ // For froogle, we check the specials prices for any applicable specials, and use that price // by grabbing the specials id descending, we always get the most recently added special price // I'm checking status because I think you can turn off specials $sql2 = "SELECT specials_new_products_price FROM ".TABLE_SPECIALS." WHERE products_id = " . $row['v_products_id'] . " and status = 1 and expires_date < CURRENT_TIMESTAMP ORDER BY specials_id DESC" ; The problem is expires_date < CURRENT_TIMESTAMP, it should be expires_date > CURRENT_TIMESTAMP.
-
VJ - Can I ask you to take a look at my post in this thread? Basically I'm trying to add a field to EP that will handle this mod.
-
[Contribution] Adding new fields to Easy Populate
MattM replied to lessliquidation's topic in General Add-Ons Support
I'd like to add a "sort order" field to EP that is part of the attribute table. This is to support this mod: http://www.oscommerce.com/community/contributions,1690 I looked through the code, but it looks a lot more complicated than adding fields to the products table. The part that deals with this seems to be around line 2000 and it looks like the options_values_price and price_prefix are the only things pulled from this table and they are concatenated together before being added to a local array. This leaves no easy place to store the sort order value. I'm hesitant to start from scratch creating a structure to hold this, since I don't fully follow everything being done in the easypopulate.php code. Any ideas??? -
[Contribution] Adding new fields to Easy Populate
MattM replied to lessliquidation's topic in General Add-Ons Support
It shouldn't affect the Froogle output since your new fields are generally not part of the Froogle feed. -
Peter - I have the savings amount, but not the percentage on my site. You should be able to combine the code below from product_info.php with the percentage code you have to get what you want. Relevant code sections: P.S. I named the new database field "products_list_price". The original contribution was "products_retail_price."
-
Actually it's a Cobalt RAQ running Sun's version of Linux. Uncommenting extension=curl.so in php.ini took care of the curl error. Setting allow_call_time_pass_reference to true fixed the warnings. Of course, there is a long comment in the .ini file how this is a really bad idea that won't be supported in the future and you should really change the way the function is defined. Anyway, it works now that's all that's important. Thanks!
-
Hello all! I just installed the latest version (6 Dec, 2nd upload) and it all works right up until I hit the link or track button. In the popup I get: If I go to the tracking page from the information box, the same three errors show up below the textbox for the tracking number as soon as the page comes up - don't even have to hit the track button. If I comment out the error_reporting(0); line, then I also get this when I hit the track button: I'm running 2.2 MS2 under php 4.1.2-3. I confirmed that cURL is installed and it works on the shell command line. Ideas?