Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

vadertech

Archived
  • Posts

    40
  • Joined

  • Last visited

Profile Information

  • Real Name
    Join the PHP Side

vadertech's Achievements

  1. Im using Recommendations v0.60 and everything was working fine until a few weeks back. We just moved the store to a different server and about 2 days later the recommendations disappeared. I have replaced the product_info.php and all the recommendation v0.60 files but they still do not show. Im using Oscommerce 2.2MS2 on redhat 9 box.
  2. To edit the left/right images, try /includes/modules/wishlist/wishlist.php or /includes/boxes/wishlist.php. Don't remember which one had that for I have changed mine.
  3. Are you using 2.0 or 2.01? I haven't installed 2.01 yet. If it is adding to your shopping cart then you are either missing a </form> tag or your wishlist button is before or above your add to cart button. I wanted my wishlist button between REVIEWS and ADD TO CART but it did as you described with adding to cart so I placed the code after the ADD TO CART button and that solved it. If that doesnt work check page 10-13 for where to place </form> tag.
  4. For the "Tell a friend" in wishlist.php, try this: <?php if ((($row / 2) == floor($row / 2))) { ?> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_black.gif', '100%', '1'); ?></td> </tr> <tr> <?php } ?> <?php } ?> </tr> </table> </td> <!-- tell_a_friend //--> <?php $info_box_contents = array(); $info_box_contents[] = array('form' => tep_draw_form('tell_a_friend', tep_href_link(FILENAME_WISHLIST_SEND, '', 'NONSSL', false), 'get'), 'align' => 'center', 'text' => tep_draw_input_field('send_to', '', 'size="20"') . ' ' . tep_image_submit('button_tell_a_friend.gif', BOX_TEXT) . tep_draw_hidden_field('products_ids', $HTTP_GET_VARS['products_ids']) . tep_hide_session_id() . '<br>' . BOX_TEXT); new infoBox($info_box_contents); ?> </form> <!-- tell_a_friend_eof //--> <?php if ($wishlist_numrows > 0 && (PREV_NEXT_BAR_LOCATION == '2' || PREV_NEXT_BAR_LOCATION == '3')) { ?> <table border="0" width="100%" cellspacing="0" cellpadding="2"> 1. Please be more specific to which left and right corner images you are talking about. If you are talking about on the index page for "New Products", I don't recall which file to edit for I don't use them anymore. 2. Make sure you don't have <TR> and </TR> in there. Here is what my product_info.php looks like. <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 width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></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></form> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td align="center" 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>
  5. Are you saying that the "Send this wishlist to a friend" is not displaying in your wishlist?
  6. The wishlist product should be added to the cart by the guest but not removed from the wishlist until the checkout success page. This way if a guest/customer backs out, the wishlist item will not be removed. And if this is not doable then not having the item removed at all would be better than removing it and then the wishlist purchaser backout. The wishlist owner can always remove the product from his/her wishlist. Marq, the add to printable catalog feature is nice. Is there an option to put all products in printable format without having to add each one manually?
  7. But for now only the user can view his/her wishlist so this shouldn't be an issue for guests. But it sounds like you have the guest/lookup wishlist by email working??? If so will you be posting the changes or an update? Marq, were can i find the printable catalog you have installed? I've found some but they didn't put items in printable format. Thx.
  8. Are the guests/customers online in any order? I couldn't tell. Is there an easy way to sort users online by time online or last click?
  9. I checked out your site and it looks like your on the right path. ugottasalsa Thanks for the fixes. Everything is working how they were intended.
  10. Who said anything about guest creating wishlist. I'm saying having the wishlist available for guest to view and add products to cart and when they go to checkout, it makes them login or create account. Please go back and read my previous posts. http://www.oscommerce.com/forums/index.php?showtopic=67290&st=70 http://www.oscommerce.com/forums/index.php?sho...ndpost&p=267023 Thanks.
  11. I also want to add that it is a great mod for what it does. I am only offering suggestions.
  12. I disagree. Amazon isn't making any money from me registering or viewing the wishlist. It makes money from me purchasing items from the wishlist. The wishlist should be a teaser to get the customer to spend money. If the wishlist is only for a "registered person", why not make all the products only viewable to registered customers. I wouldn't want my customers to have to register just to view products nor should they have to register to view a wishlist. A wishlist is a marketing tool just like New Products, Featured Products and Specials. These are all added to not just attract "registered" customers, but make money.
  13. Actually if you look at first step of readme.txt, wishlist_send is defined as wishlist_email.php. define('FILENAME_WISHLIST_SEND', 'wishlist_email.php');
×
×
  • Create New...