Search found 8147 matches

by aimeos
17 Nov 2015, 22:56
Forum: TYPO3 extension
Topic: Use sub-shop
Replies: 3
Views: 2228

Re: Use sub-shop

How to configure sub-shops ? Here you say that you have an extension wich enables to add sub-shops : https://aimeos.org/docs/User_Manual/Administration_Interface/Working_with_sites I know that there is something like this and I've forwarded your request so the developers can get in touch with you. ...
by aimeos
17 Nov 2015, 22:45
Forum: Help
Topic: Prompting for postal code in basket
Replies: 2
Views: 2765

Re: Prompting for postal code in basket

For example, user views the basket and there is not postal code we can use, so a line shows up that says "Please enter your postal code to estimate shipping charges." If they don't, we'll get it during checkout. If they do, we can use our API and give them a very close estimate of what th...
by aimeos
16 Nov 2015, 23:26
Forum: Help
Topic: Checkout disabled?
Replies: 4
Views: 4038

Re: Checkout disabled?

Haven't got to the point of dealing with saved/abandoned baskets yet. It would be nice to have the ProductPrice plugin work in case a product's price changed between when the customer saved the cart and when they came back to buy. I'll have to see if I can figure out a way to make it work without i...
by aimeos
16 Nov 2015, 22:07
Forum: Help
Topic: Checkout disabled?
Replies: 4
Views: 4038

Re: Checkout disabled?

I get the feeling I should be modifying the price a different way? Is there a way to do this without making the Checkout button disappear? The checkout button only disappears if another plugin returns false for the check.before or check.after events. The BasketLimits plugin does this for example. S...
by aimeos
15 Nov 2015, 22:24
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 11795

Re: Adding a Subpart

Got it! I had a typo in the manifest file. Lesson learned: use the extension generator you guys provide ;) Yep, that helps :-) Basically, if I'm in Category1 (which has subs of Subcategory1 and Subcategory2), I want to be able to see all the products in the tree from the top of the tree. If I drill...
by aimeos
15 Nov 2015, 22:15
Forum: TYPO3 extension
Topic: Import Export
Replies: 10
Views: 9753

Re: Import Export

After I added your csv file and changed the TS config, I tried to run the scheduler with the current logged into be user manually. This failed and created some pseudo products with some php code. This is the case if the directory is wrong and points to the ./typo3/ directory. Is there a way to incl...
by aimeos
15 Nov 2015, 16:52
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 11795

Re: Adding a Subpart

The template directory is configured in the manifest.php file of your extension and it should contain these lines by default: 'custom' => array( ... 'client/html' => array( 'client/html/layouts', ), ... ), Your template must then be in .../ext/client/html/layouts/catalog/list/subcategories-body-defa...
by aimeos
15 Nov 2015, 15:36
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 11795

Re: Adding a Subpart

I'm almost sure this is an autoloader issue. Maybe it helps to run

Code: Select all

composer dump-autoload
in your application directory.

If not, you may try to add the "client/html/src" directory to the "autoload"/"classmap" section of your composer.json file.
by aimeos
15 Nov 2015, 15:12
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 11795

Re: Adding a Subpart

In the shop.php file, I put this configuration: 'catalog' => array( 'list' => array( 'subparts' => [''head', 'quote', 'promo', 'subcategories', 'pagination', 'items', 'pagination' ], ), ), If it's not found, most likely this is at the wrong place ("default" is missing in your case). It mu...
by aimeos
15 Nov 2015, 14:06
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 11795

Re: Adding a Subpart

Right. In the subcategories-body-default.html file, I basically do the print_r statement like you suggested. I never see it. I have also tried just putting some static HTML in the view instead - that never gets displayed either. Fairly sure the subpart isn't getting called. Thought it might be beca...