

tjoppru
Members-
Content count
18 -
Joined
-
Last visited
Profile Information
-
Real Name
Traci
-
Delete
-
My cart is not adding sales tax. Is this related to adding Attribute Manager? Anyone have any ideas or know what file to check for where the sales tax is calculated?
-
osCommerce for WordPress : WP-osCommerce
tjoppru replied to roya.k's topic in General Add-Ons Support
When I try to checkout with Paypal Website Payments Standard I get a blank page when it gets to checkout_confirmation.php. If I upload the OScommerce file it works but does not carry through the wposc theme and is missing the button to process. Is there something wrong with this file or is it the module? I have not modified either file. Sorry I fixed the problem. It was an error caused by trying to install a Gift Voucher Module earlier. -
I ran this query on my database ALTER TABLE `products_attributes` ADD `options_values_model_no` INT( 11 ) NOT NULL DEFAULT '0' AFTER `options_values_price` ; Then it worked
-
osCommerce for WordPress : WP-osCommerce
tjoppru replied to roya.k's topic in General Add-Ons Support
Is there any way to add your sidebar from Wordpress into the Wp.Osc sidebar. Or if you can't where can you modify what appears in the sidebar? I do not want Languages and Currency to appear in the menu and want to link to pages in the Wordpress Blog. Thanks Traci -
I am not able to get the popup image box to open in a smaller size than the entire window. Here is my code. I am using Multiple Images addon located here http://addons.oscommerce.com/info/5930 Any help would be appreciated. <table border="0" cellspacing="0" cellpadding="2" align="right"> <tr> <?php $PicCount = 0; echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['products_image']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['products_image'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; $PicCount = $PicCount + 1; if ($product_info['product_image_2'] != "") { echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['product_image_2']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['product_image_2'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; echo "</td>"; $PicCount = $PicCount + 1; } if ($PicCount == 2) { echo "</tr><tr>"; $PicCount = 0; } if ($product_info['product_image_3'] != "") { echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['product_image_3']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['product_image_3'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; echo "</td>"; $PicCount = $PicCount + 1; } if ($PicCount == 2) { echo "</tr><tr>"; $PicCount = 0; } if ($product_info['product_image_4'] != "") { echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['product_image_4']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['product_image_4'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; echo "</td>"; $PicCount = $PicCount + 1; } if ($PicCount == 2) { echo "</tr><tr>"; $PicCount = 0; } if ($product_info['product_image_5'] != "") { echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['product_image_5']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['product_image_5'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; echo "</td>"; $PicCount = $PicCount + 1; } if ($PicCount == 2) { echo "</tr><tr>"; $PicCount = 0; } if ($product_info['product_image_6'] != "") { echo "<td>"; echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $product_info['product_image_6']) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $product_info['product_image_6'], $product_info['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . TEXT_CLICK_TO_ENLARGE . '</a>'; echo "</td>"; } ?> <tr> </table> </td> </tr> </table>
-
How can I limit the row of featured products to 2 items and then start a new row. I have 4 featured items and it shows 3 in the first row and one on the second. I would like two rows of two products. Thanks
-
I am receiving the same error. Did this ever get resolved? I have osCommerce Online Merchant v2.2 RC2a and I installed Extra pages-info box w-admin 4.6.1. In admin I just get a blank page when I choose Extra Info Pages Manager. Thanks
-
I have added featured products on the index page using this addon http://addons.oscommerce.com/info/651. I have installed Products Short Description http://addons.oscommerce.com/info/3123 How can I get the short description to appear on the index page for the featured products? Nemrod34's addon does not seem to work for me. Thanks for any help. Traci
-
Never mind I had missed uploading one of the files.
-
I cannot get any images to display. Do you need to install another contribution to get the pics to appear? If I turn off the Options as images then a dropdown box appears but when it is enabled nothing appears. Thanks for your help
-
Does anyone have any ideas on a solution for this?
-
Really need dimensional support. Has anyone done anything with this feature? I have seen it asked for for a couple years and I can't believe no one has come up with a solution. Thanks
-
Did this ever get resolved? I would like to add a TEXT_MAIN area to my home page also.
-
So I figured out that the closing tags were not in the correct place in the product_info.php file. I just did this by trial and error moving closing t6ages around until the page appeared correctly. I guess I'll just have to do that for the rest of the problems with the layout too.