Jump to content

janthemanson

Members
  • Posts

    57
  • Joined

  • Last visited

Profile Information

  • Location
    Germany
  • Activity
    User/Merchant

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

janthemanson's Achievements

Newbie

Newbie (1/14)

4

Reputation

1

Community Answers

  1. Hey, I found this topic cause I searched for a problem, where meta-titles didn't appeared on homepage and 404 page. Clearing the IP from the "maintenance mode" tab in BO helped to solve the problem (Shop was enabled). Thank you nac78 . Scary that this issue still exists in Prestashop 1.6.0.9. But maybe this is related to update issues.
  2. Danke für die Tips, auch bei 1.6.0.9. trat dieses Problem auf nach dem ein Crontask Modulupdate eingespielt wurde. Gleichzeitig waren noch andere Module in dem Hook "displayBackOfficeHeader" eingehangen, wo sich mir der Sinn nicht erschliessen ließ. Nachdem wir im Hook aufgeräumt hatten und Crontask komplett rausgeschmissen, läuft die Seite wieder optimal. Ladezeiten um die 0.2 bis 1 Sekunden bei "normalen" Seitenaufrufen. Vielen Dank nochmal, saved my day!
  3. Oh sorry, this was my fault. I've tested it with $page_name == "cms" and it worked. The same is available with categories I found out.
  4. Hey there, I'm looking for a variable to ask for page type like cms pages. I'm currently reviewing or meta tags. Here is what I've done so far: {if isset($page_name) && $page_name == "index"} <meta property="og:type" content="business.business" /> {/if} {if isset($page_name) && $page_name == "product"} <meta property="og:type" content="product" /> {/if} What I'm looking for is to make the meta property og:type "website" available on cms pages. Ideas anybody?
  5. @PrestaShop Fanatic Thank you! Seems like this is the thing I'm looking for. But would be great in the future if Prestashop can handle this as well!
  6. When I use different attributes on a product, prestashops default behaviour is that it generates combinations from the different attributes which can have a stock per combination. This is legit when you have products which have a size and a color. But sometimes we want to create customizeable products. They are limited so orders should be denied when out of stock. In our case (simplified) for example a custom build bicycle wheel with: HUB A HUB B RIM A RIM B For simplifying this, all Spokes are the same. Thats resulting the following combinations: HUB A/RIM A; HUB A/RIM B; HUB B/RIM A; HUB B/RIM B; Say we have a real stock of 5 per rim and hub - thats a pretty good example. We can't stock every combination to five, cause when I sell 5 of HUB A with RIM A, I can't sell RIM B in combination with HUB A cause HUB A is already sold out. So you must be able to sell the resting stock of RIM B with HUB B. Theoretically we have a "possible" stock of 5 per combination. This would be resulting in theoretical 20 Products, but we have only actual 10 Products, cause we have only 10 hubs. If I try to split the stocks, this will be problematic with different stocks ore more combinations. Cause then the stock for every combination must be divided by the number of attributes. But so you can't sell all possible combinations. Might be a bit confusing ... I hope I could point in the right direction. It might be a cool feature if we have a second option to define stocks of combinations on a per attribute basis.
  7. I've struggled today into a similar problem. Our employee was editing a order, where 2 products should be deleted and two new should be added. Our workflow is to first add the products, then delete the old. The first product was deleted successfully, but the second isn't deleteable. The link exists but nothing happens after confirming the browser message. Any Ideas?
  8. I found a commented out function at ebay.php around line 356. There is something noted about imagesizes. I'll test what happens if it's enabled. Maybe this function is deprecated or disabled cause of a bug.
  9. I got the same problem with ebay module Version 1.8.1. Cause I'm using a other Template than default, I thought there is a problem with the call of the images. Imagesizes are named otherwise than default. Instead of 'medium' it is called 'atmn_medium' in my case. I changed the lines in ebay.php (at around line 2746), but this didn't worked. it seem there is a problem with the template on ebay itself. If you look in the html code in editing mode on the product at ebay, the templatetags for images are missing/are not processed. I'll investigate further on this bug.
  10. I think i fixed the saving error with a fix from git. The disapearing categories within the module resulted from the inactive Home category. Didn't noticed that, so sorry, but it was my fault. Seemed to be a saving error or maybe a mistake. I think now all problems fixed. @David Henry I read about problems with multishop. We don't use that feature by now.
  11. @David Henry Maybe Prestashop Forge has a solution for this. http://forge.prestashop.com/browse/PSCSX-1309?jql=project%20%3D%20PSCSX%20AND%20text%20~%20%22category%22 Some of the issues are related to database problems and corrupted data. I checked already my "ps_category" database table but can't find something unexpected.
  12. Sorry, don't get me wrong, I didn't moved the category. After saving, the category moved automatically to root. This was a error of prestashop and I think its related to the update from 1.5.X.X to 1.6.X.X There is something weird with categorys in our shop. After that happend, all the subcategorys of home aren't accessible in a megamenumodule. In Front and Backend all works fine. I talked to the developer, but he means he uses the same lines of code that perstashop uses to call the categorys. I don't know whats happening, but at least I stopped editing categorys till I find a solution. Thanks @musicmaster
  13. @uddhava Hey thank you very much. I've tried to implement "?content_only=1" several times before, but with no luck! I pasted it within the brackets, so this didn't worked out. The working solution for me is only the link code like this: <a href="{$link->getCMSLink('8','rewrite',true)}?content_only=1" class="iframe" rel="nofollow">{l s='Shipping Terms'}</a> As I said it before I used this in the conditions section of the OPC (OnePageCheckout) so the file is order_carrier.tpl. Cause we use a well packaged theme (not the default), the javascript code is obsolete. The lightbox is already defined and of course responsive, so I need no extra width and height properties, it already loads without it. This maybe helpful for people who try to implement this on other pages or in other themes.
  14. Ok, I forgot to make that clear. Thank you for your hint! We use friendly urls since the bug with php cgi is fixed and don't want to step back. We need the better SEO performance.
  15. Hey David, I've got a similar Problem. I've edited a sub category and saved it. After that it moved to root category and the categories are missing. This happened twice, but not on all categories I've edited. Anybody seen a similar behaviour?
×
×
  • Create New...