Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

milerwan

Members
  • Posts

    363
  • Joined

  • Last visited

  • Days Won

    8

milerwan last won the day on August 9 2022

milerwan had the most liked content!

About milerwan

  • Birthday 12/14/1976

Profile Information

Recent Profile Visitors

17,982 profile views

milerwan's Achievements

  1. Here is the French traduction file, sorry for delay. Keys_2021Dec21_1418_fr.zip
  2. It seems not... This may complicate the task for the integration of routines commonly used by Bootstrap if it is missing. 😓
  3. For French language, I can translate from english.
  4. OK I understood my concern... Need to check the "Root" radio button and put number to add "page_description" and/or "page_keywords" (or "page_title"). Finally it works well. Sorry for the inconvenience. NB: In includes/functions/header_tags, into the "function tep_header_tag_page($file)", I have quoted this script below because, when no "page_description" or no "page_keywords" registered, the page displays the "pathinfo($_SERVER['SCRIPT_FILENAME'])" with default keywords even if the "default_keywords" radio button is not checked. But maybe it is the purpose of this script... ^^ //if nothing else is set, force the page name and default settings, if present $path_parts = pathinfo($_SERVER['SCRIPT_FILENAME']); $pageName = substr($path_parts['basename'], 0, strpos($path_parts['basename'], '.')) . ' '; $pageName = ucwords(preg_replace("/[^A-Za-z0-9]/", " ", $pageName)); if (! tep_not_null($header_tags_array['title'])) $header_tags_array['title'] = $pageName . (tep_not_null($tmpTags['def_title']) ? HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $tmpTags['def_title'] : ''); //if (! tep_not_null($header_tags_array['title_alt'])) $header_tags_array['title_alt'] = (tep_not_null($tmpTags['prod_title_alt']) ? HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $tmpTags['def_title'] : ''); if (! tep_not_null($header_tags_array['description'])) $header_tags_array['description'] = $pageName . (tep_not_null($tmpTags['def_desc']) ? HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $tmpTags['def_desc'] : ''); if (! tep_not_null($header_tags_array['keywords'])) $header_tags_array['keywords'] = $pageName . (tep_not_null($tmpTags['def_keywords']) ? HEADER_TAGS_SEPARATOR_KEYWORD . ' ' . $tmpTags['def_keywords'] : ''); if (! tep_not_null($header_tags_array['logo'])) $header_tags_array['logo'] = $pageName . (tep_not_null($tmpTags['def_logo_text']) ? HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $tmpTags['def_logo_text'] : '');
  5. I have clearing cache of URL rewriting but nothing changes. Version of oscommerce is 2.3.4BS and I'm using Ultimate SEO V 2.2d. My base version is 3.3.4 and I have changed files to update to 3.3.5. Maybe I have forgotten to changes some files during the process ?
  6. Hi Jack, Today I noticed that from admin page control, I had entered the keywords assigned to the "product_info.php" pages but these do not appear when I edit the products web page (same issue for the title and description too). On the other hand, no problem for other generic pages of type "index.php", "shipping.php", etc. Do you know where the problem is coming from? Could this be because I am using rewritable URLs? And if so, how to get around this problem? Cordially.
  7. I am having an issue with PayPal V2.01 where if the Payment method selector is not selected, I select PayPal, then Continue Checkout, the PayPal fee is not calculated for the Order Confirmation Screen.  If I go back to the Payment method screen, and then Continue Checkout, the PayPal fee is calculated correctly.  I am guessing MODULE_ORDER_TOTAL_PAYPAL_STATUS is not getting set soon enough.  Any suggestions to fix?

    1. jcarndt

      jcarndt

      I think that there may be an issue with this code in OSCOM CE Phoenix v1.0.7.14, 

      if ( ( ($GLOBALS['payment'] == 'paypal_standard') & ($PHP_SELF != 'shopping_cart.php') )  ) {

      As a workaround, I added  or (preg_match("/\bPayPal\b/i", $order->info['payment_method'], $match)) ) {  to that if statement, so it would catch all my PayPal transactions.

      I went back to a simplified process function like in version 1, so I am only concerned about normal US PayPal.

    2. milerwan

      milerwan

      Hi,

      In the ot_paypal_fee.php file, you have to replace each $GLOBALS['payment'] to $_SESSION['payment']

      Best regards

    3. jcarndt

      jcarndt

      Thanks for the update on how to resolve the issue!!

       

  8. What are the others warnings you get ? I have tried on Phoenix v1.0.5 (with fixing the constants like you) and there is no way to make it works because of BS4. I'm not able to fix it with BS4 despite reading articles that explain to use a new version of the typeadead file and add a few lines of CSS... Besides, is there a typeahead module that works under Frozen or Phoenix in BS4 currently?
  9. Guest

    Hi @milerwan, I'm wondering if you could help me with the installation of your Country State Selector module?

    I have it downloaded, but due to my lack of experience, I'm just unsure that I'm doing it correctly, and thought I'd come to the source for help first.

    Thanks in advance!
     

    1. milerwan

      milerwan

      Hi,

      What is your oscommerce version ?

      Have you got live website or are you working in localhost ?

    2. Guest

      Guest

      Thanks for the reply. We are working on osCommerce 2.2-MS2 (I know very outdated, but our system is older, and I don't have a clear enough understanding of the system as a whole to attempt an update).

      The website is live.

      Our issue...The store is linked to a procurement system that requires Tax information to be passed. However, when the user enters a ship-to location with an abbreviated US state, the database address book creates the entry under "entry_state" instead of "entry_zone_id", which from what I can tell is what is tied to the tax zone functionality. So I'm hopeful by using this module will resolve this issue.

      Any guidance you have would be appreciated.

      Thank you!

       

    3. milerwan

      milerwan

      I don't see what you mean but you need the appropriate version for your v2.2 because front end is different https://apps.oscommerce.com/xRZzM&country-state-selector

      Do you have the module installed (even not functional at the moment)?Where can I see the result ?


       

  10. Ok I haven't click on the icon, that's why nothing has been registered. Thank you very much !!!
  11. Thank you @Jack_mcs Another (maybe) issue I found today is the update javascript function in "admin/header_tags_seo_social.php" that doesn't update the field content and so don't save the data. In "Header Tags SEO Social Media" page, I was not able to update the social URL fields... I can delete them (delete content and save) but when I try to add content (url) impossible to registred them (!?!). Could you try from your side, please ? NB: I have updated with these files from v3.3.7 but same issue as before: - admin/header_tags_seo_social.php - admin/includes/functions/header_tags.php - admin/includes/functions/header_tags_general.php Is there any changes in a TABLE or in another files that could explain this issue ?
  12. @Jack_mcs hi Jack, In the Header Tags SEO V 3.3.6 module, from "includes/modules/header_tags_opengraph.php" you use this script to get the price info : /**** Get the price ****/ if (($new_price = tep_get_products_special_price($og['products_id']))) { } else { $new_price = $og['products_price']; } $og_price = $currencies->display_price($new_price, tep_get_tax_rate($og['products_tax_class_id'])); $og_price = substr($og_price, 1); this trick could work for price with US currency (eg. $39.90), but if, like me, you have price in EUR display like this "39.90 €", the result will be from header : <meta name="twitter:data1" content="9.90&nbsp;€"> <meta property="product:price:amount" content="9.90&nbsp;€" /> instead of : <meta name="twitter:data1" content="39.90"> <meta property="product:price:amount" content="39.90" /> See you.
  13. Ok I see, list of compatibility browsers is listed by Google : - For computer (Windows, Linux, Mac): Chrome, Firefox, Safari, Internet Explorer, Edge - For mobile: Chrome, Safari, Android (native browser) So all is clear now. ^^ sorry for inconvenience.
  14. Well, the tests have been done only on my localhost version but it seems no issue with live website with Chrome... But Opera not works...
×
×
  • Create New...