Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

aalishan

Archived
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Real Name
    Aali

aalishan's Achievements

  1. No worries Joey, Thanks Aalishan :thumbsup:
  2. Hi Joey, Thanks for replying to my post. My apologies, it confused you. Basically, this is what I am doing. The features: a) A member on my site can rent movies for a week or two B) The cost of renting a movie for a week is 5 ? c) With every movie rented a member can rent an additional movie (in the same transaction) at a discounted price of 3 ? ( which normally will cost 5) d) Maximum of 4 movies can be rented as ?additional movie? per transaction Requirement: a) Each record under movie rental category should have 4 options (one for each additional movie) B) Each option should have list of all the movies under the movie rental category and the value should be +3 (constant) My problem: Because the list of options and records are increasing everyday, I am hoping a SQL statement be the best option for me. For now, I guess an Insert statement should be sufficient. Hopefully, I should be able to carry forward from there. Please let me know if something is not clear Thanks in advance Aali
  3. Joey, Can I expect something on this please. Thanks
  4. Dear Joey, Firstly, Thanks for updating your contribution. My present situation is I have version 3 (I know you are not supporting this version) installed .. With lot of troubles I managed to stay with this for sometime, but now that version 4 is realised.. I am eager to install this ASAP. I need little help from you to make my life easy. ? Its just a sql statement I need .. but please let me explain .. I am using this mod on my shop for movie rental section .. you can have a look at http://www.irishasians.com/asianshop/index.php?cPath=1 . The idea is each record (movie) will have 5 options And each option will have list of all the records (movies) in that category . What I plan to do . a) Create one attribute set through admin area B) Assign all the records and their respective values ( like cost etc) c) Assign this attribute to a Record (just one) And now I wish to use phpmyadmin to execute SQL statement which take the attribute value from the above record and update all other records in that category - INSERT STATEMENT And also if there are any news movies added at later stage - AN UPDATE or I don?t mind deleting all and repeating the process ? DELETE and/or UPDATE STATEMENT I hope the above is not confusing .. if so please let me know Please help Many thanks Aali
  5. Obviously, Joey is not interested in replying to my query. Is there anybody else in the forum to suggest how to solve this problem? This is my 3rd post on the same issue. Nobody replied earlier ..hence :'( I created Attribute set and assigned it to product. After assigning I edited Attribute set to add more rows. it worked fine .. But its not showing the changes in drop down on product page. If I edit the product , the changes are appearing .. Is this a Bug or something wrong with my assumption that any changes in Attribute set should reflect the assigned product? Please advice Many Thanks
  6. #2 :) Hi Joey , Thanks for the great mod .. I just found a small problem . I created Attribute set and assigned it to product . After assigning I edited Attribute set to add more rows . it worked fine .. But its not showing the changes in drop down on product page . If I edit the product itself . the changes are appearing .. Is this a Bug or something wrong with my assumption that any changes in Attribute set should reflect the assigned product . Please advice Many Thanks Aali
  7. also, can anyone please suggest how to increase the drop-down menu on product page. Thanks in advance
  8. Hi Joey , Thanks for the great mod .. I just found a small problem . I created Attribute set and assigned it to product . After assigning I edited Attribute set to add more rows . it worked fine .. But its not showing the changes in drop down on product page . If I edit the product itself . the changes are appearing .. Is this a Bug or something wrong with my assumption that any changes in Attribute set should reflect the assigned product . Please advice Many Thanks Aali
  9. I am also using worlpay mod ... my problem is that I am not receiving order emails when the mode of payment is wordpay .. Any suggestions will be of great help . Thanks in advance
  10. I am unable to open the zip . Winzip bounce back with a message to re-download the file .tried several time ..no use .. Is anyone else getting the similar problem .. if yes .. Author: Chaveiro could you please look into this. I am downloading the contribution from http://www.oscommerce.com/community/contri...ll/search,phpBB Thanks
  11. This is what I did and its working fine for me and shows wishlist button on the same line PART ONE in product_info.php <tr class="infoBoxContents"> <td ><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td> <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td></form> <td align="right" class="main"> <?php echo tep_draw_form('wishlist_quantity', tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist')); ?> <?php if (tep_session_is_registered('customer_id')) echo tep_draw_hidden_field('products_id', $product_info_values['products_id']) . tep_image_submit('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST); ?> </td></form> </tr> </table></td> </tr> PART TWO in product_info.php <!-- body_eof //--> </td></tr> <!-- footer //--> Let me know if I am wrong.
  12. This is what I did and its working fine for me and shows wishlist button on the same line PART ONE in product_info.php <tr class="infoBoxContents"> <td ><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_REVIEWS, tep_get_all_get_params()) . '">' . tep_image_button('button_reviews.gif', IMAGE_BUTTON_REVIEWS) . '</a>'; ?></td> <td class="main" align="right"><?php echo tep_draw_hidden_field('products_id', $product_info['products_id']) . tep_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td></form> <td align="right" class="main"> <?php echo tep_draw_form('wishlist_quantity', tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist')); ?> <?php if (tep_session_is_registered('customer_id')) echo tep_draw_hidden_field('products_id', $product_info_values['products_id']) . tep_image_submit('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST); ?> </td></form>[/size] </tr> </table></td> </tr>[/color] PART TWO in product_info.php <!-- body_eof //--> </td></tr> <!-- footer //--> Let me know if I am wrong.
  13. after installation of wishlist mod ..some pages are not expanding to 100% width any ideas
  14. Hi, Just wondering if its possible to have wish-list on category basis .. I don?t want all items of my store to go in wish-list .... Just a particular category items are permitted for wish-list .. Is this possible. Thanks
  15. Hi, Just wondering if its possible to have wish-list on category basis .. I don?t want all items of my store to go in wish-list .... Just a particular category items are permitted for wish-list .. Is this possible. Thanks
×
×
  • Create New...