Search found 16 matches

by joakim
29 Jan 2016, 12:05
Forum: TYPO3 extension
Topic: Catalog filter plugin links to wrong page
Replies: 1
Views: 1597

Catalog filter plugin links to wrong page

In Catalog filter plug-in, when I search, or click a category, it links to details page instead of catalogue page, which gives error.

How can I change it?

Bonus question: How to change text in search button from "Go" to "Search"?
by joakim
29 Jan 2016, 11:49
Forum: TYPO3 extension
Topic: How to keep categories tree expanded?
Replies: 3
Views: 2729

Re: How to keep categories tree expanded?

Use CSS to show the menu initially:

Code: Select all

.catalog-filter-tree > ul {
	display: block;
}
Optionally hide the Categories header:

Code: Select all

.catalog-filter-tree > h2 {
	display: none;
}
by joakim
28 Jan 2016, 14:07
Forum: TYPO3 extension
Topic: Question about template files
Replies: 1
Views: 1822

Question about template files

I want to hide prices from anonymous users with this if test: if(!is_null($GLOBALS['TSFE']->fe_user->user)) { ... } I managed to hide price from details page by modifying layouts\catalog\detail\basket-body-default.html Still it shows prices under Pinned Products and Last Seen. What files to modify?
by joakim
28 Jan 2016, 12:37
Forum: TYPO3 extension
Topic: How to make categories always expanded?
Replies: 1
Views: 1762

How to make categories always expanded?

In "catalog filter" plugin, how to make Categories always expanded?

And how to make item description expanded by default?
by joakim
28 Jan 2016, 11:24
Forum: TYPO3 extension
Topic: How to configure email?
Replies: 5
Views: 3939

Re: How to configure email?

Using Aimeos 2.4.0 on Typo3 6.2.15.

What should I fill for "Argument: jobs"? I can't find jobs reference in docs.

How can I fill multi-line typoscript in "Argument: tsconfig" it's a single-line textfield?
by joakim
28 Jan 2016, 09:41
Forum: TYPO3 extension
Topic: How to configure email?
Replies: 5
Views: 3939

How to configure email?

Aimeos won't send confirmation to customer after an order is made.

Also, I would like it to send email to shop owner whenever an order is made.

I can't find anywhere to configure email settings for aimeos typo3.