magento labels or field descriptions

marco.marino1971
54 Posts
marco.marino1971 posted this 04 August 2016

Good Morning,
I am coming back to the design of this magento theme: http://test.kokomamas.it
I still found some difficulties to understand how to manage some fileds in themler for magento.
Please have a look to this page: http://test.kokomamas.it/donna?cat=95

This is how I am building the products template. On the old template that is at the moment online (not built with magento) there are some text descriptions next to "Products sortier" and "Products per page" field (see https://www.kokomamas.it/en/woman/handbags-women/bags-in-hand-woman)
These descriptions are "per page", "item", "sort by" , "show", as indicated in this screenshot:

magento-labels-or-text-descriptions.jpg

I do not see in the theme I am building any of these fields and I can't figure out how to make these ones visible on frontend and on themler backend.
Could you give me some hint?

Regards
Marco

Good Morning, I am coming back to the design of this magento theme: http://test.kokomamas.it I still found some difficulties to understand how to manage some fileds in themler for magento. Please have a look to this page: http://test.kokomamas.it/donna?cat=95 This is how I am building the products template. On the old template that is at the moment online (not built with magento) there are some text descriptions next to "Products sortier" and "Products per page" field (see https://www.kokomamas.it/en/woman/handbags-women/bags-in-hand-woman) These descriptions are "per page", "item", "sort by" , "show", as indicated in this screenshot: !magento-labels-or-text-descriptions.jpg! I do not see in the theme I am building any of these fields and I can't figure out how to make these ones visible on frontend and on themler backend. Could you give me some hint? Regards Marco
Vote to pay developers attention to this features or issue.
3 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 05 August 2016

Hi,

Indeed, that is not possible in the application. I can suggest you to add the following custom code under the Home >> Settings >> Additional CSS:

.bd-typeselector-1:before {
    content: 'View as:';
}
.bd-productssorter-1.products-sorter:before {
    content: 'Sort by: ';
}
.bd-productsperpage-1.products-per-page:before {
    content: 'Show ';
}
.bd-productsperpage-1.products-per-page:after {
    content: 'per page';}

Also you will need to change the width of the columns for the sorters so the first one is not so long as it will pull the other two columns in several lines.

Sincerely,
Hella

Hi, Indeed, that is not possible in the application. I can suggest you to add the following custom code under the Home >> Settings >> Additional CSS: .bd-typeselector-1:before { content: 'View as:'; } .bd-productssorter-1.products-sorter:before { content: 'Sort by: '; } .bd-productsperpage-1.products-per-page:before { content: 'Show '; } .bd-productsperpage-1.products-per-page:after { content: 'per page';} Also you will need to change the width of the columns for the sorters so the first one is not so long as it will pull the other two columns in several lines. Sincerely, Hella
marco.marino1971
54 Posts
marco.marino1971 posted this 05 August 2016

Hi Hella,
that's nice, it works.
But I am just now discovering that with this solution I would have the same text in all languages, isn't it?

Any solution about that?

Regards
Marco

Hi Hella, that's nice, it works. But I am just now discovering that with this solution I would have the same text in all languages, isn't it? Any solution about that? Regards Marco
Support Team
Support Team posted this 05 August 2016

Unfortunately I have no solution for that.

Sincerely,
Hella

Unfortunately I have no solution for that. Sincerely, Hella
You must log in or register to leave comments