Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Eighteen48

Archived
  • Posts

    170
  • Joined

  • Last visited

About Eighteen48

  • Birthday 10/05/1976

Profile Information

  • Real Name
    Ano Hito

Eighteen48's Achievements

  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.
×
×
  • Create New...