Jump to content

vinsbg

Members
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • First Name
    stan
  • Last Name
    ivanov

vinsbg's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, thank's for the answer. I can share the url but is in maintenance mode.. I could add your IP or?
  2. Hi, I have some strange problem and don't know where to look why is this. So when customer goes to the desired product page and he click on Add to cart button he get pop-up with message that "There is no product found..." and in the same time the product is added in the cart... I switched off Ajax-cart from the blockcart module configuration page and is working. Any idea what can be the problem?
  3. Hi, I'm trying to add pure HTML directly in footer.tpl file of the theme but didn't showed in the index(home) page on the site. This is current footer.tpl file: {if !isset($content_only) || !$content_only} </div><!-- #center_column --> {if isset($left_column_size) && !empty($left_column_size)} <div id="left_column" class="column col-xs-12 col-sm-{$left_column_size|intval}">{$HOOK_LEFT_COLUMN}</div> {/if} </div><!--.large-left--> </div><!--.row--> {if isset($right_column_size) && !empty($right_column_size)} <div id="right_column" class="col-xs-12 col-sm-{$right_column_size|intval} column">{$HOOK_RIGHT_COLUMN}</div> {/if} </div><!-- .row --> </div><!-- #columns --> <div class="neshto"> dsdfdsgfdhfdgfdssadfds</div> {if isset($HOOK_HOME) && $HOOK_HOME|trim} <div class="home-column"> <div class="container"> {$HOOK_HOME} </div> </div> {/if} </div><!-- .columns-container --> {if isset($HOOK_FOOTER)} <!-- Footer --> <div class="footer-container"><div class="footer-container-inner"> <footer id="footer" class="container"> <div class="row">{$HOOK_FOOTER}</div> </footer> </div></div><!-- #footer --> {/if} </div> </div><!-- #page --> {/if} {include file="$tpl_dir./global.tpl"} </body> </html> I'm trying to insert simple div at the beginning of the file <div class="test"> Testing </div> It didn't showed on the page. So how can I insert code directly in the source code.. ?
  4. Update: I have make same procedure and tried to movie the shop to localhost. It is moved and it is working everything. So can be the new host problem? What can I check and ask the support?
  5. I have moved site from one host to another. I've made it like this: 1. Copy all the files from the host -> Paste them into new host 2. Export database from old host -> Import into database on new host 3. Then I change values in config/settings.inc.php 4. Change values with the new domain in database table ps_shop_url -> domain, domain_ssl, physical_url 5. Change values in database table ps_configuration -> PS_SHOP_DOMAIN and PS_SHOP_DOMAIN_SSL Now the shop seems to work except some images but when I try to open admin panel site.com/admin324r498 I got 404 error page. What can be the problem?
  6. Hello, I have strange problem. When I adding new products I can see them in BO. Also when I enter in some category in FO in upper right corner I see: THERE IS 3 PRODUCTsBut I don't see any products listed.. I don't see products also on home page under "New arrived", "Popular" etc. On product preview of product before to make it public I see it. I have tried to clear the cache. arrange/re-arrange/disable/enable/reactivate modules for new products. Hook and unhook them in BO. Nothing helps so far. Can anyone help me?
  7. So I really don't have status with id = 3. I have with 1 and 2. So I changed the value = 2 and now is working. Just one question: How value 3 is set there when I don't have status with ID = 3 in back office?
  8. id_configuration: 121 id_shop_group: NULL id_shop: NULL name: PS_OS_PREPARATION value: 3 date_add: 0000-00-00 00:00:00 date_upd: 0000-00-00 00:00:00 That's what I have in database table ps_configuration for PS_OS_PREPARATION
  9. It's crashing on the last step 'Validation' whit this error: PaymentModuleCore->validateOrder - [line 31 - modules/econtpayment/controllers/front/validation.php] - [9 Arguments] 26. 27. if (Tools::getValue('confirm')) 28. { 29. $customer = new Customer((int)$this->context->cart->id_customer); 30. $total = $this->context->cart->getOrderTotal(true, Cart::BOTH); 31. $this->module->validateOrder((int)$this->context->cart->id, Configuration::get('PS_OS_PREPARATION'), $total, $this->module->displayName, null, array(), null, false, $customer->secure_key); 32. Tools::redirectLink(__PS_BASE_URI__.'order-confirmation.php?key='.$customer->secure_key.'&id_cart='.(int)$this->context->cart->id.'&id_module='.(int)$this->module->id.'&id_order='.(int)$this->module->currentOrder); 33. } 34. } 35. 36. /**
  10. I have defined new status for orders. Then assign it to the payment method but the result is same. How can I do this:
  11. It is custom payment module from one of the carriers in the country with delivery option and everything. I've contacted the company which is owner and they are checking now. Will post what happen as soon as I have answer.
  12. Hi, I'm new here and new in prestashop. I've set my shop and everything is working except when I make some order and on last step where is "finish order" i got this error: 500 Server Error Oops, something went wrong. I put debug mode on to see what is the error but honestly I don't understand what is it. Here is the error: [PrestaShopException] Can't load Order status at line 178 in file classes/PaymentModule.php 173. 174. $order_status = new OrderState((int)$id_order_state, (int)$this->context->language->id); 175. if (!Validate::isLoadedObject($order_status)) 176. { 177. PrestaShopLogger::addLog('PaymentModule::validateOrder - Order Status cannot be loaded', 3, null, 'Cart', (int)$id_cart, true); 178. throw new PrestaShopException('Can\'t load Order status'); 179. } 180. 181. if (!$this->active) 182. { 183. PrestaShopLogger::addLog('PaymentModule::validateOrder - Module is not active', 3, null, 'Cart', (int)$id_cart, true); This line ( 178 ) is in red color - throw new PrestaShopException('Can\'t load Order status'); Can anyone help me with this one?
×
×
  • Create New...