Jump to content

jpcarlisle

Members
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Location
    Taylors Falls, MN
  • Activity
    Web development agency

jpcarlisle's Achievements

Newbie

Newbie (1/14)

0

Reputation

1

Community Answers

  1. I have the same issue. Going from the 'Order Summary' to the payment page all I receive is a blank page. I have tried the suggestion above and also turning AJAX off in the form. Any other thoughts would be helpful I am using 1.5.6
  2. Before I mark this as solved I want to place this out there. The problem was actually in the fedex/classes/PrestoChangeoCarrierModule.php. I replaced the PrestoChangeoCarrierModule.php with the one from the ups module to the fedex location through ftp and everything works now.
  3. Vekia, Now we have a direction, this is what it gives me for an error: Fatal error: Call to undefined method UPS::_getPrestoChangeoShippingModulesForOrder() in/var/www/vhosts/trailerpartssupplies.com/httpdocs/modules/ups/ups.php on line 2111 There is no problem with the USPS and the Fedex orders so this must be the issue. I'll investigate and see if I can solve from here and mark it as solved if this is the problem. Thank you for your help.
  4. Hello All, I have a problem in the back office when I open the Orders -> Orders ->Actions ->View the order some of the pages open up with just some of the basic html and no formatting. It actually fails to load the favicon, but the url is exactly the same as an order that loads correctly. Below you will find a picture of what I see. This only happens on a handful of oreders so I am unsure what is causing this? adminOrder.pdf Thanks in advance for any help in solving any of this. Josh
  5. I don't know if this is solved in your view or not. But the answer is a simple change to the way the img is being seen as. Meaning the url for the image is seen as: <img title="promo" src="http://url.com/img/cms/myimage.jpg" alt="Promo" width="500" height="300" /> this is in html editor mode you need to change the http to https and you won't have the security warning.
  6. I found this in the cache location: <?php /* Smarty version Smarty-3.1.14, created on 2014-07-22 16:12:19 compiled from "/var/www/vhosts/trailerpartssupplies.com/httpdocs/modules/top1e_googletranslate/top1e_googletranslate.tpl" */ ?> <?php /*%%SmartyHeaderCode:53664388553cec5a38a36d8-64615181%%*/if(!defined('SMARTY_DIR')) exit('no direct access allowed'); $_valid = $_smarty_tpl->decodeProperties(array ( 'file_dependency' => array ( 'cda7b84d97b7643ea4c4d0e0969594dabc651597' => array ( 0 => '/var/www/vhosts/trailerpartssupplies.com/httpdocs/modules/top1e_googletranslate/top1e_googletranslate.tpl', 1 => 1404933116, 2 => 'file', ), ), 'nocache_hash' => '53664388553cec5a38a36d8-64615181', 'function' => array ( ), 'variables' => array ( 'current_url' => 0, 'base_url' => 0, 'current_language_code' => 0, ), 'has_nocache_code' => false, 'version' => 'Smarty-3.1.14', 'unifunc' => 'content_53cec5a38c69d5_14172677', ),false); /*/%%SmartyHeaderCode%%*/?> <?php if ($_valid && !is_callable('content_53cec5a38c69d5_14172677')) {function content_53cec5a38c69d5_14172677($_smarty_tpl) {?><!--<?php echo $_SERVER['PHP_SELF'];?> <?php echo $_smarty_tpl->tpl_vars['current_url']->value;?> <?php echo $_smarty_tpl->tpl_vars['base_url']->value;?> --> <div class="box-content_translate" style="width:100px; margin:0 auto;"> <div id="google_translate_element"></div> <script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: '<?php echo $_smarty_tpl->tpl_vars['current_language_code']->value;?> ', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element'); } </script> <script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> </div> <?php [spam-filter] ?>
  7. There website is http://top1extensions.com/free-prestashop-modules/31-google-translate-site-prestashop.html my website is http://trailerpartssupplies.com/ Sorry maybe this will help this is the top1e_googletranslate.php the .tpl wasn't so useful <?php if (!defined('_PS_VERSION_')) exit; class Top1e_GoogleTranslate extends Module { public function __construct() { $this->name = 'top1e_googletranslate'; $this->tab = 'My Module'; $this->version = '1.0'; $this->author = 'Top1Extensions'; parent::__construct(); $this->displayName = $this->l('Google Translate - Top1Extensions'); $this->description = $this->l('Add google translate on your site'); $this->confirmUninstall = $this->l('Are you sure that you want to delete your Google Translate?'); } public function install() { if (!parent::install() || !$this->registerHook('header')) return false; return true; } public function uninstall() { if (!parent::uninstall()) return false; return true; } private function _displayHelp() { $this->_html .= ' <br/> <fieldset> <legend><img src="'.$this->_path.'help.png" alt="" title="" /> '.$this->l('Help').'</legend> For customizations or assistance, please contact: <strong>[email protected]</strong> <br> <a href="http://top1extensions.com/" alt="top1extensions" title="top1extensions">http://top1extensions.com/</a> </fieldset>'; } private function _displayAboutUs() { $this->_html .= ' <br/> <fieldset> <legend><img src="'.$this->_path.'aboutus.png" alt="" title="" /> '.$this->l('About us').'</legend> <h3 style="margin:0;">ABOUT TOP1EXTENSIONS.COM</h3> <p> We are a teams of seasoned web professionals with many years of hands-on experience and alway use new technology, so we will bring best solutions for your site. </p> </fieldset>'; } public function _displayAdvertising(){ $this->_html .= ' <br/> <fieldset> <legend><img src="'.$this->_path.'more.png" alt="" title="" /> '.$this->l('More modules').'</legend> <iframe src="http://top1extensions.com/advertising/prestashop_advertising.html" width="100%" height="335px;" border="0" style="border:none;"></iframe> </fieldset>'; } public function getContent() { $this->_html = '<h2><img src="'.$this->_path.'logo.png" alt="" /> '.$this->displayName.'</h2>'; $this->_postProcess(); $this->_displayHelp(); $this->_displayAboutUs(); $this->_displayAdvertising(); return $this->_html; } private function _postProcess() { global $currentIndex; $errors = array(); } function hookHeader($params) { global $smarty; global $cookie; $id_lang = $cookie->id_lang; // $iso_code = $this->context->language->iso_code; $this->smarty->assign('current_language_code',$id_lang); return $this->display(__FILE__, 'top1e_googletranslate.tpl'); } } ?>
  8. Hello vekia, Here you go: <!--{$smarty.server.PHP_SELF} {$current_url} {$base_url} --> <div class="box-content_translate" style="width:100px; margin:0 auto;"> <div id="google_translate_element"></div> <script> function googleTranslateElementInit() { new google.translate.TranslateElement({ pageLanguage: '{$current_language_code}', layout: google.translate.TranslateElement.InlineLayout.SIMPLE }, 'google_translate_element'); } </script> <script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script> </div>
  9. Hello, I have top1e_googletranslate and it works great, however in the error log this is what I get over and over again: [Tue Jul 22 11:38:34 2014] [warn] [client 82.103.128.63] mod_fcgid: stderr: PHP Notice: Trying to get property of non-object in /var/www/vhosts/trailerpartssupplies.com/httpdocs/cache/smarty/compile/cd/a7/b8/cda7b84d97b7643ea4c4d0e0969594dabc651597.file.top1e_googletranslate.tpl.php on line 32 [Tue Jul 22 11:39:33 2014] [warn] [client 174.34.156.130] mod_fcgid: stderr: PHP Notice: Undefined index: current_url in /var/www/vhosts/trailerpartssupplies.com/httpdocs/cache/smarty/compile/cd/a7/b8/cda7b84d97b7643ea4c4d0e0969594dabc651597.file.top1e_googletranslate.tpl.php on line 30 This just repeats over and over and was wondering how do I remove the error warning? What is this actually doing to cause the error? Note: I've cleared my cache and this still occurs. Thank you Josh
  10. Hello, If you are looking to just change the price for all categories of 1 do this: UPDATE ps_product SET price = (place amount here) WHERE id_category_default = 1; The prices are in the ps_product table. I would recommend backing up you database before starting to do mass SQL statement changes. Good luck, Josh
  11. I was wondering if anyone else has had an issue with a warning on the modules page saying: "Cenpos WebPay Module: No name provided" I am in contact with Cenpos and they are looking into the problem, but I am also wondering if after I installed the Cenpos WebPay Module I might have done something wrong and it is not a programming error on their part, but human error on mine. Thanks for any advice, Josh
×
×
  • Create New...