-
Content count
253 -
Joined
-
Last visited
-
Days Won
3
Reputation Activity
-
newburns got a reaction from TITO4 in Mail Manager for OSC v2.3
Seems the mail manager is using outdated variables. I'm assuming this is a 2.3.4 thing, so if you experience issues with the variables not parsing in the Forgotten Password email, you mush change:
./catalog/password_forgotten.php
/* **Altered for Mail Manager** tep_mail($check_customer['customers_firstname'] . ' ' . $check_customer['customers_lastname'], $email_address, EMAIL_PASSWORD_RESET_SUBJECT, sprintf(EMAIL_PASSWORD_RESET_BODY, $reset_key_url), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); */ if (file_exists(DIR_WS_MODULES.'mail_manager/password_forgotten.php')){ include(DIR_WS_MODULES.'mail_manager/password_forgotten.php'); }else{ tep_mail($check_customer['customers_firstname'] . ' ' . $check_customer['customers_lastname'], $email_address, EMAIL_PASSWORD_RESET_SUBJECT, sprintf(EMAIL_PASSWORD_RESET_BODY, $reset_key_url), STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); } /* **End of alterations for Mail Manager** */ EMAIL_PASSWORD_REMINDER_SUBJECT has been changed to EMAIL_PASSWORD_RESET_SUBJECT
EMAIL_PASSWORD_REMINDER_BODY has been changed to EMAIL_PASSWORD_RESET_BODY
$new_password has been changed to $reset_key_url
These same variables MUST be changed in ./catalog/includes/modules/mail_manager/password_forgotten.php
Once I finish testing everything with Mail manager, I'll have it installed in my GitHUB master
https://github.com/newburns/osCommerce-234-bootstrap-wADDONS
-
newburns got a reaction from altoid in Credit Class & Gift Vouchers for 2.3.4
I did not get the Gift Voucher to work. But the discount coupon works so far.
There are some other bugs in the issues, but so far, it seems fairly stable. I am no longer adding to it, just maintatining this repo. It is not the proper direction for osCommerce, but it is a band-aid for some. Just know, the band-aid is not a fix.
https://github.com/newburns/osCommerce-234-bootstrap-wADDONS
-
newburns got a reaction from Tsimi in Alternative Administration System: Categories/Products
Feature Request:
Edit the contents of the Terms and Conditions.
Banner Manager within AAS. (This is probably most important as it is a standard feature of OSC)
Expected Products Management.
-
newburns got a reaction from Tsimi in Alternative Administration System: Categories/Products
Feature Request:
Integrated Order Editor (Not as important as the banner manager)
-
newburns got a reaction from gadlol in Alternative Administration System: Categories/Products
Wow. You are pretty good. If anyone says otherwise, tell them to email me.
Thanks for the changes. I was sure that you would be too busy until the new year.
-
newburns got a reaction from Comesticage in CONTRIBUTION Product Tabs
@@Comesticage
Line 100 Calls for the stars
<?php echo tep_break_string(tep_output_string_protected($reviews['reviews_text']), 440, '-<br />') . ((strlen($reviews['reviews_text']) >= 500) ? '...' : '') . '<br /><br /><i>' . sprintf(TEXT_REVIEW_RATING, tep_image(DIR_WS_IMAGES . 'stars_' . $reviews['reviews_rating'] . '.gif', sprintf(TEXT_OF_5_STARS, $reviews['reviews_rating'])), sprintf(TEXT_OF_5_STARS, $reviews['reviews_rating'])) . '</i>'; ?>
Basically, it calls for tep_image(
Then it goes into the image directory
Looks for "stars_"
The "." in PHP is just a connector
So connected to "stars_" is $reviews['reviews_rating'] . gif
Or in other words "stars_1.gif" if it is a 1 star review
To change either change the image in the image folder, or create our own, and replace "stars_" with the replacement