Jump to content

LadyLionheart

Members
  • Posts

    22
  • Joined

  • Last visited

Profile Information

  • First Name
    Leonie
  • Last Name
    Ouwerkerk

LadyLionheart's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

0

Reputation

  1. Thanks! I found this in custom.css and edited it, however the logo is now all the way to the right, and it should be in the center. Sorry to be such a bother
  2. Thanks, I will edit the CSS to remove the scroll bar. Yes in Firefox it seems to be in the middle, but if I look at the site in Chrome or Edge it is on the left side, underneath the search bar.
  3. Hi, I have a problem in prestashop 1.7 with my free installed theme Apparel that I downloaded from hiddentechies. My logo seems to be on top of the search bar. Also there is a scroll bar underneath the search bar. Could someone help me move the logo in the center (to the right) and remove the scroll bar from the search bar? I'd really appreciate it. website is www.thepinlady.co.uk
  4. I have now done a fresh install at the new site, and imported the existing database. All looks well, but if I click on one of the categories, I get 404- not found. Even though I can see the categories in the store. How can this be?
  5. Hi, I've been having problems moving my webshop from one server to another. Steps I've taken: backed up database imported database on new server downloaded website uploaded website updated the config file to current database updated the .htaccess file deleted the .htaccess file I keep getting a 500 internal server error on my website. With the htacces file active, I get this error: [Tue Feb 5 18:28:27 2019] [error] [client 220.243.136.134] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace. [Tue Feb 5 18:28:27 2019] [error] [client 220.243.136.134] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace. And now for some reason after editing the htacces file I get this error: [Tue Feb 5 18:50:31 2019] [error] [client 220.243.135.250] File does not exist: /var/www/vhosts/72/200087/webspace/httpdocs/toys.com/product_info.php [Tue Feb 5 18:50:33 2019] [error] [client 220.243.135.194] File does not exist: /var/www/vhosts/72/200087/webspace/httpdocs/toys.com/product_info.php [Tue Feb 5 18:50:34 2019] [error] [client 220.243.135.227] File does not exist: /var/www/vhosts/72/200087/webspace/httpdocs/toys.com/conditions.php I have also changed the database ps_shop_url to the new domain. I am thinking the link should be /webspace/httpdocs/toys.com/conditions.php instead of /var/www/vhosts/72/20087. How do I correct this? Can anyone please help me out because I am kind of lost...
  6. Hi, I'm getting an error on a freshly installed webshop: Page isn't working, www.unijk.nl redirected you too many times. Try clearing your cookies. ERR_TOO_MANY_REDIRECTS I'm getting an error on a freshly installed webshop: However it is a fresh install, how is this possible? It only seems to do this on Chrome, I can view it in other browsers (firefox) fine. I have deleted the htaccess and generated a new one, no improvement. Deleting cookies and cache also doesn't help. There are no redirects at all, it is just a simple webshop install. Any help?
  7. I figured it out, thanks for the tip! It seems there was a space in the field name Module in the ps_orders table (which is not allowed). I removed the spaces and was able to change the order status. It just does not show an invoice. How do I see the invoice?
  8. The status is Awaiting COD validation, I'm not sure if it is a core order status. I'm not really sure which status this transferred from in my oscommerce database. It does not seem newly placed orders use this status at all. However I would like to be able to change this status to shipped.
  9. I have imported data from my oscommerce webshop and everything works fine. Except for 1 order status. If I try to change this status I get this error message: [PrestaShopException] Property Order->module is not valid at line 909 in file classes/ObjectModel.php 904. } 905. 906. $message = $this->validateField($field, $this->$field); 907. if ($message !== true) { 908. if ($die) { 909. throw new PrestaShopException($message); 910. } 911. return $error_return ? $message : false; 912. } 913. } 914. ObjectModelCore->validateFields - [line 246 - classes/ObjectModel.php] ObjectModelCore->getFields - [line 304 - classes/order/Order.php] OrderCore->getFields - [line 652 - classes/ObjectModel.php] ObjectModelCore->update - [line 306 - classes/order/OrderHistory.php] OrderHistoryCore->changeIdOrderState - [line 531 - controllers/admin/AdminOrdersController.php] - [3 Arguments] AdminOrdersControllerCore->postProcess - [line 178 - classes/controller/Controller.php] ControllerCore->run - [line 367 - classes/Dispatcher.php] DispatcherCore->dispatch - [line 58 - admin/index.php] Can anyone help with this? This is the only status that has this problem.
  10. Yet ANOTHER addon I need to buy since a lot of standard options are simply not included in prestashop itself..... I've already spent like 200 euro on those addons.... I would be fine with just removing that button on the product list page. Any simple solution to that?
  11. I'm trying to edit this code to get it to show as in stock if any of the sizes are available, any help on this? {if (!$PS_CATALOG_MODE && $PS_STOCK_MANAGEMENT && ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))} {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)} <span class="availability"> {if ($product.allow_oosp || $product.quantity > 0)} <span class="{if $product.quantity <= 0 && isset($product.allow_oosp) && !$product.allow_oosp} label-danger{elseif $product.quantity <= 0} label-warning{else} label-success{/if}"> {if $product.quantity <= 0}{if $product.allow_oosp}{if isset($product.available_later) && $product.available_later}{$product.available_later}{else}{l s='In Stock'}{/if}{else}{l s='Out of stock'}{/if}{else}{if isset($product.available_now) && $product.available_now}{$product.available_now}{else}{l s='In Stock'}{/if}{/if} </span> {elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)} <span class="label-warning"> {l s='Product available with different options'} </span> {else} <span class="label-danger"> {l s='Out of stock'} </span> {/if} </span> {/if}
  12. Such a helpful community, maybe I should have stuck to oscommerce....
×
×
  • Create New...