Search found 40 matches

by kartikbhat
10 Feb 2023, 13:41
Forum: Laravel package
Topic: How to show translations in Blade files
Replies: 3
Views: 848

How to show translations in Blade files

I have created translation keys in shop.php for various languages

how Can I show them on laravel blade files

Code: Select all

$this->translate( 'header', 'activities' ) 

Help me to add proper syntax for this


TIA :)
by kartikbhat
31 Jan 2023, 12:27
Forum: Laravel package
Topic: [SOLVED]How to add meta tags to the HTML page for Catalog list and Catalog detail page
Replies: 3
Views: 770

Re: How to add meta tags to the HTML page for Catalog list and Catalog detail page

I have added

Code: Select all

<?= $aiheader['catalog/detail'] ?? '' ?>
in a related blade file and it works...

Thank you
by kartikbhat
31 Jan 2023, 11:27
Forum: Laravel package
Topic: [SOLVED]How to add meta tags to the HTML page for Catalog list and Catalog detail page
Replies: 3
Views: 770

Re: How to add meta tags to the HTML page for Catalog list and Catalog detail page

How can I refer this header.php in my blade file ? in which section I mean

under $aiheader it will be available ?
by kartikbhat
30 Jan 2023, 10:30
Forum: Laravel package
Topic: [SOLVED]How to add meta tags to the HTML page for Catalog list and Catalog detail page
Replies: 3
Views: 770

[SOLVED]How to add meta tags to the HTML page for Catalog list and Catalog detail page

I am adding meta keywords and meta description from admin panel under texts section

Now how can I bring these added texts as a value for meta tags..

How Can I add product description as a meta description ?

TIA :)
by kartikbhat
14 Dec 2022, 06:30
Forum: Laravel package
Topic: Show FlatPickr calender for date input
Replies: 1
Views: 398

Show FlatPickr calender for date input

how can I make flatpickr show expected datepicker for input for of type date.

at Admin panel,

Code: Select all

v-bind:config="Aimeos.flatpickr.datetime"
is not showing default datepicker itself..
Help to to show flatpickr specific date picker..
TIA :)
by kartikbhat
29 Oct 2022, 15:29
Forum: Laravel package
Topic: Embed image into email template
Replies: 2
Views: 582

Re: Embed image into email template

I have a file called logo.png present in public folder of laravel project, then how can I bring this logo as an embedded image in my email template ? by using above syntax how I make it possible? need to add it in Standard.php or html-body-standard.php ? Can you provide me an example or more detail ...
by kartikbhat
27 Oct 2022, 11:00
Forum: Laravel package
Topic: Embed image into email template
Replies: 2
Views: 582

Embed image into email template

How to use embedding images into the email template ? from this document I got that it will return Content Id of the image to the img tag, I am not getting how to use this eith in Standard.php or body-standard.php of email template $msg or $content are not accessable inside body-standard.php Help me...
by kartikbhat
30 Aug 2022, 15:48
Forum: Laravel package
Topic: Pattern matching in search/filter
Replies: 1
Views: 473

Pattern matching in search/filter

I need to change filter/search term "==" to "%LIKE%" kind of pattern matching while query; Here I have comparison with "==" operator on themes field of products table $products = \Aimeos\Controller\Frontend::create( $context, 'product' ) ->sort( $sort ) // prioritize us...
by kartikbhat
25 Aug 2022, 11:53
Forum: Laravel package
Topic: Default value for database table attribute
Replies: 1
Views: 439

Default value for database table attribute

How can I set a default value for newly added database table attributes.


TIA :)
by kartikbhat
19 Aug 2022, 12:27
Forum: Laravel package
Topic: Site Specific Languages
Replies: 1
Views: 416

Site Specific Languages

How I can fetch set specific languages that are enabled for particular site at admin panel;
so that I can show them in a dropdown at frontend to switch between languages...

TIA :)