Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Eighteen48

Archived
  • Posts

    170
  • Joined

  • Last visited

Everything posted by Eighteen48

  1. Hi Bill, I am not sure if you can help me or not, but I am going to give it a shot anyways. I am planning on switching over my main site from a basic HTML site tied into osC w/STS to a Joomla based one, and in doing so I want to convert my tableless Joomla based CSS styled template to a STS CSS Styled template. I am currently teaching myself CSS, but still not very good at it. I have contacted the designer of the template and their plate is full. How possible is it to make this conversion? I have all the source files as well as stylesheets and anything else I would need to modify the template.
  2. Maybe it is just me, but I am confused but the second set of instructions for step 1 for the catalog/account_history_info.php file. Am I just replacing the code for ($i=0, $n=sizeof($order->products); $i<$n; $i++) { with the above code or all of the code up to the "}"?
  3. Hi Jack, I have been looking at your contrib for awhile now and finally decided to upgrade from HTC to HT SEO. I like the new look and functions, but I have one question. Maybe I installed it wrong I, but I know for sure that I did not edit the file in question as I checked previous versions of the file. Is there a way to move Configuration >> Header Tags SEO to the Header Tags SEO and just rename it configuration or something like that? So it will look something like this Header Tags SEO >> Setting (or Configuration). Also I am facing one small little problem, when updating pages while on header_tags_fill_tags.php I get a Error 500 whenever I select yes for "Fill keywords for all added pages from derived keywords on actual pages?". Could this be because the server is timing out or what could be causing this?
  4. Disregard the above post I actually wanted to ask: What is the difference between PayPal Website Payments Pro (US) Direct Payments/PayPal Express Checkout already installed in osC RC2a and this module? Should I upgrade it to this module?
  5. I was wondering could I use this with "PayPal Website Payments Standard" or just their "PayPal Website Payments Pro" service? If not is there any particular Paypal module that you would suggest?
  6. Hey Bill, I am going out on a limb here and want to move STS out of the "Modules" box. I have already created the following new file admin\includes\boxes\template.php and took what was in admin\includes\boxes\modules.php that pertain to STS in there changing the code according in my new file. I then edited the admin\includes\column_left.php to reflect the new file I created as well as edited the filenames.php file and edited all the languages files. I am now moving on to edit admin/modules.php and this is where I a question. Is there a need to edit this file? Also is there any other files I need to edit or create that I might have missed?
  7. I had the same problem and was able to get help figuring this out. try this out just replace the code with this <td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> <?php // ** GOOGLE CHECKOUT ** // Checks if the Google Checkout payment module has been enabled and if so // includes gcheckout.php to add the Checkout button to the page if (defined('MODULE_PAYMENT_GOOGLECHECKOUT_STATUS') && MODULE_PAYMENT_GOOGLECHECKOUT_STATUS == 'True') { ?> <tr> <td> <?php include_once('googlecheckout/gcheckout.php'); ?> </td> </tr> <?php } // ** END GOOGLE CHECKOUT ** $initialize_checkout_methods = $payment_modules->checkout_initialization_method(); if (!empty($initialize_checkout_methods)) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td align="right" class="main" style="padding-right: 50px;"><?php echo TEXT_ALTERNATIVE_CHECKOUT_METHODS; ?></td> </tr> <?php reset($initialize_checkout_methods); while (list(, $value) = each($initialize_checkout_methods)) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td align="right" class="main"><?php echo $value; ?></td> </tr> <?php } } } else { ?>
  8. Basically you are just coping the files to whatever directory you have your shop in.
  9. Has anybody tried to use the TinyMCE:Compressor/PHP supplied by Moxiecode? I have tried changing the required code but my text area still up as a regular text area? Here are the instructions: Here is a step by step list on how to install the GZip compressor. 1. Ensure that your server does not have zlib compression enabled in the file php.ini 2. Copy the tiny_mce_gzip.js and tiny_mce_gzip.php to the tiny_mce directory. The same directory that contains the tiny_mce.js file. 3. Remove the current script tag. <script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script> 4. Add the new new GZip script <script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce_gzip.js"></script>. 5. Add the new GZip initialization call that will tell the compressor what to include in the output. This should be the sum of all and themes, plugins contained on page. Example of initialization The example below will pack both themes and all plugins into one file/steam. Remove the things you don't need or add your custom plugins to the settings below. Remember that the tinyMCE_GZ.init call must be placed in its own script tag. <script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce_gzip.js"></script> <script type="text/javascript"> tinyMCE_GZ.init({ plugins : 'style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetim e,preview,media,'+ 'searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable, visualchars,nonbreaking,xhtmlxtras', themes : 'simple,advanced', languages : 'en', disk_cache : true, debug : false }); </script> <!-- Needs to be seperate script tags! --> <script type="text/javascript"> tinyMCE.init({ .. your normal init .. }); </script>
  10. Another problem I ran into with this install is with the instructions for "shopping_cart.php" I double checked all my contributions to see if they changed the code but none of them did so I do not know why the code is different. Once again I am using osC RC2a. The instructions saying replace <td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> <?php } else { ?> With <td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></form></td> </tr> <tr> <td> <?php // ** GOOGLE CHECKOUT ** // Checks if the Google Checkout payment module has been enabled and if so // includes gcheckout.php to add the Checkout button to the page if (defined('MODULE_PAYMENT_GOOGLECHECKOUT_STATUS') && MODULE_PAYMENT_GOOGLECHECKOUT_STATUS == 'True') { include_once('googlecheckout/gcheckout.php'); } // ** END GOOGLE CHECKOUT ** ?> </td> </tr> <?php } else { ?> but my code is this <td align="right" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image_button('button_checkout.gif', IMAGE_BUTTON_CHECKOUT) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> <?php $initialize_checkout_methods = $payment_modules->checkout_initialization_method(); if (!empty($initialize_checkout_methods)) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td align="right" class="main" style="padding-right: 50px;"><?php echo TEXT_ALTERNATIVE_CHECKOUT_METHODS; ?></td> </tr> <?php reset($initialize_checkout_methods); while (list(, $value) = each($initialize_checkout_methods)) { ?> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td align="right" class="main"><?php echo $value; ?></td> </tr> <?php } } } else { ?> Can someone please help me solve this.
  11. I am having a little problem integrating Google Checkout with my current osC store. I am using osC RC2a which I have modifed moderately. My problem comes with the instructions for catalog/login.php. The instructions states to replace <td align="right"><?php echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table></form></td> with <td align="right"><?php echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td></form> </tr> </table></td> </tr> </table></td> </tr> </table></td> </tr> </table> <?php // ** GOOGLE CHECKOUT ** // Checks if the Google Checkout payment module has been enabled and if so // includes gcheckout.php to add the Checkout button to the page if (defined('MODULE_PAYMENT_GOOGLECHECKOUT_STATUS') && MODULE_PAYMENT_GOOGLECHECKOUT_STATUS == 'True') { include_once('googlecheckout/gcheckout.php'); } // ** END GOOGLE CHECKOUT ** ?> </td> </tr> </table></td> But my code looks like this. <?php // +Login Page a la Amazon ?> <td width="50%" height="100%" valign="top"><table border="0" width="100%" height="100%" cellspacing="1" cellpadding="2"> <tr> <td><table border="0" width="100%" height="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><b><?php echo TEXT_EMAIL_QUERY; ?></b></td> </tr> <tr> <td class="main"><?php echo TEXT_EMAIL_IS . ' ' . tep_draw_input_field('email_address'); ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><b><?php echo TEXT_HAVE_PASSWORD; ?></b></td> </tr> <td class="main"><?php echo tep_draw_radio_field('new_customer','Y',false) . ' ' . TEXT_HAVE_PASSWORD_NO ?> </td> </tr> <tr> <td class="main"><?php echo tep_draw_radio_field('new_customer','N',true) . ' ' . TEXT_HAVE_PASSWORD_YES . ' ' . tep_draw_password_field('password','','maxlength="40"'); ?> </td> </tr> <tr> <td colspan="2"><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 align="left"><?php echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="smallText" colspan="2"><?php echo '<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table></td> </tr> </table></td> <td width="10%"></td> <td width="40%" height="100%" valign="top"><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxHeading"> <td class="infoBoxHeading"><?php echo TEXT_NEW_CUSTOMER; ?></td> </tr> <tr class="infoBoxContents"> <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></td> </tr> </table></td> </tr> </table></td> <?php // -Login Page a la Amazon ?> </tr> </table></td> </tr> </table></form></td> Am I right in thinking i should just add the <?php // ** GOOGLE CHECKOUT ** // Checks if the Google Checkout payment module has been enabled and if so // includes gcheckout.php to add the Checkout button to the page if (defined('MODULE_PAYMENT_GOOGLECHECKOUT_STATUS') && MODULE_PAYMENT_GOOGLECHECKOUT_STATUS == 'True') { include_once('googlecheckout/gcheckout.php'); } // ** END GOOGLE CHECKOUT ** ?> before the last set of and if so where should I move the ending form tag?
  12. Not trying to sound mean or saracastic, but it helps if you fully read the STS manual as it explains everything in there. After taking a look at your site, I can tell you have not uploaded your template files properly. Are you using Dreamweaver or Photoshop to create your template? In order to add the place tag holders get them from the manual and place them where you want them.
  13. I am trying to figure out what the latest version of Google Checkout is, because there is a ton of entries with updates and fixes but nothing really saying full package. Is the version uploaded by "mrchain" on 31 Jan 2008 the latest stable version or should i use an earlier version?
  14. Is there a way to make this work with TinyMCE instead of FCK Editor?
  15. When you see the the mention Folder Catalog, it just means the base of your store, for example my site is configured as such http://mysite.com/store, I created a folder called styles placed in my store and in that folder is the name of my template. So it looks like this My Site --> store --> styles --> theme1 all my files related to that theme is located in theme1 folder including all images and stylesheets. just make sure that your paths are correct. I hope I have not confused you. Basically all you have to do is just upload all the files to their respective folders so anything in catalog would go to where your store is located. Catalog --> Includes /yoursite.com/includes or however you have your store configureed yoursite.com/store/includes Also make sure you refresh your site, as sometimes broswers will cache your page so you wont see the changes until you force a refresh.
  16. It seems as if your permissions are not set correctly in your directory that your attempting to installed osC in check to make sure everything is CHMOD properly, as well as you have uploaded all your files.
  17. Make sure you specify STS to use that particular template by going into the Modules --> STS --> Default. Once under Default template name type in the name of the template you want to use. Note this is only if you want that template to be used throughout your whole store. If you just want that template to be used for a certain category or certain page you need to name it accordingly, for example if you just want that template to be used on the index of your store you would name it "index.php_0.html. There is more info on naming the template for certain categories, pages, etc in the STS User Manual.
  18. If you read through the manual towards the in the STS tags are listed that you can use to customize your template, for instance $content is used to populate the main body of your pages or infoboxes if you have made a template for that. With STS you do not need to worry about calling any php or anything just create a html template and put the tags of your choice in your desired locations. I suggest you take a look at the templates supplied with STS so you can get a better idea of what is going on. And if you have a WYSIWYG editor that is even better as you can see full how the tags are place and what you need to do. I hope this helps.
  19. Where you able to get their email address to carry over? and have you had any other problems? I am looking to install this on a store based on the RC2a release.
  20. There is a contribution that allows you to create as many or as little columns as you want, as most people usually opt for a 3xy grid, although you could do 4 just remember that depending on your template design especially if you have one that is centered in the middle of the screen it may push your store out. As for the Specials, that is also down by another contribution called Specials by Category. Which does exactly what the name says it creates a special item for each category, but you will hvae to specify which product you want as a special. Specials by Category (There are several ones so you can chose the one best for your needs) Link http://addons.oscommerce.com/category?sear...als+by+category Multiple Coulmns Link http://addons.oscommerce.com/info/112
  21. duh, I was using the correct path before, but I left off the training / and then i was it with the admin so thats why I was getting screwed up, and then went back to the other way that screwed me up even more. Its amazing how one little thing can screw everything up. Thanks...
  22. Okay I must be a boob, as I can not get it to work. I changed username to my actual username read all 10 pages and tried everything posted, but I am still get the following errors: What did I do wrong? I am using the lastest release of Site Monitor on osC RC2a if that helps
  23. I am adding Page Editor v1.6 and so far everything has been cut and dry except the installation on the Admin side of things. The instructions says: Where would this could be placed or should I disregard it?
  24. Thank you very much, went through both sts_display_output.php files thinking I missed it somewhere, but it looks like i was looking in the wrong file to begin with anyways. That fixed it, now I can go and get some sleep. Thank you again Bill. :thumbsup:
  25. Hey Bill, I have a question that you might be able to help with, I have installed osC-PrintOrder with Store Logo and have been able to get everything to work except the pop-up invoice on the customer side, instead of showing the invoice it shows my template. There was a fix for the earlier versions of STS, found here, but that does not work with the current versions. Would you have any idea how to work around this?
×
×
  • Create New...