Jump to content


Corporate Sponsors


Latest News: (loading..)

acabiya

Member Since 30 Aug 2007
Offline Last Active Nov 01 2011, 23:16
-----

Posts I've Made

In Topic: Customer approval Email

01 November 2011, 23:14

Thanks anyway. I continued my search and found the TEXT AT: catalog/admin/includes/languages/spanish/members_mail.php

It prints in English because the Spanish folder had the message in English with an error on the code that produced the error on the Email.

Problem fixed.

In Topic: Customer approval Email

01 November 2011, 21:18

Chris, Thanks for your responce.
As you can see the email prints correctly the FIRST time it is printed. The second time prints with the mistake so the code that generates the Email has an error.

And with respect to the contribution it DOES NOT HAS any language file, nor the cited text on ANY of the folders provided. The first thing I did was to look the contribution to see if it was there.

Do you know in which of the files I can find the Email text???

In Topic: error in checkout shipping

01 November 2011, 21:06

Based on the info you are sending, your possible problem is a product weight in 0. Check the products on that invoice to see the weight.

If that is not the problem, you need to verify the code.

In Topic: Hide prices. Discovered possible bug, or not working for me.

01 November 2011, 05:18

It seams that I'm answering my own question.

Since nobody answered, I started a trial and error solution to FIX Hide prices BUG. I hope that if someone is having the same problem, might use this alternative. I have done several tests, and it seams to work OK. My solution follows:

break;
case 'PRODUCT_LIST_BUY_NOW':
/* Change to avoid customers making orders without registering */

if (tep_session_is_registered('customer_id'))
{
$lc_align = 'center';
$lc_text = '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a> ';
}

else {
$lc_align = 'center';
$lc_text = " ..... ";}


break;

I hope that garydarling reads this and if finds pertinent add it to the Hide Prices Plugin.

In Topic: Hide prices. Discovered possible bug, or not working for me.

01 November 2011, 02:48

View Postacabiya, on 31 October 2011, 22:27, said:

I have has Hide prices for YEARS. Suddenly an UNREGISTERED BUYER, sent me an order.

While investigating I noticed that on includes/modules/product_listing.php the IMAGE BUY NOW appears at the end of the products list.

This UNREGISTERED BUYER, clicked on the image BUY NOW and without being registered the order was processed.

The rest of the program works perfectly. Can someone tell me how to correct this BUG.

SINCE NOBODY ANSWERS, I THINK THAT THE ALTERNATIVE IS TO PRINT THE BUY NOW IMAGE ONLY IF THE USER IS SIGN ON.
I DO NOT KNOW ENOUGH PHP TO ADD THE CODE.

The code is: on catalog/include/modules/product_listing.php about line 130
break;
case 'PRODUCT_LIST_BUY_NOW':
$lc_align = 'center';
$lc_text = '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $listing['products_id']) . '">' . tep_image_button('button_buy_now2.gif', IMAGE_BUTTON_BUY_NOW) . '</a> ';
break;
}