@Vaishali-Agarwal

ket-c
@ket-c
Posts made by ket-c
-
Product image shows side ways
some product images show side ways (flipped horizontally) on he website. any causes?
-
how to modify header
I am using velocity theme
i edited blade.php file in packages\Webkul\Velocity\src\Resources\views\shop\UI\header.blade.phpbut changes do no reflect after page refresh.
please help
-
RE: Add new category throw error
change all collation of table and its fields of categories , category_filterable_attributes and category_translations to utf8_general_ci
because all the collation of the three tables are not the same that is why you get that error
-
RE: 500 | Server Error while running public/index.php
enable error display in server or turn on debug mode in .env file. you will see the actual error message...
if you do not enable error display you will get 500 server error
you can also check the server error logs -
changes in blade file not relecting
after making changes in this path
\packages\Webkul\Velocity\src\Resources\views\shop\UI\header.blade.php
changes still not taking effect after page refresh -
RE: While adding cart to an item getting message "Error! A non-numeric value encountered."
Thanks @Hein
The Weight also fixed my issuesso i just put minimum of 0
If anyone is facing same issues
You can put default value as 0 for Width, Height, Depth, Weight in the HTML input element under Shipping when add/editing product catalog -
How to modify page tiles in bagisto (using velocity theme)
i think it has do with the SEO variables... but i am lost.
where exactly is this SEO values so that i change?
if it is not in the SEO side, please show mei have seen this code
@php $channel = core()->getCurrentChannel(); $homeSEO = $channel->home_seo; if (isset($homeSEO)) { $homeSEO = json_decode($channel->home_seo); $metaTitle = $homeSEO->meta_title; $metaDescription = $homeSEO->meta_description; $metaKeywords = $homeSEO->meta_keywords; } @endphp
in packages > Webkul >Shop > src > Resources > views > home > index.blade.php
i think is this value $homeSEO->meta_title; but ican not find exactly where it isi was able to trace
$channel = core()->getCurrentChannel();
in packages > Webkul > Core > src > Core.php
but i did not see where i could modify the page title valuesI need help. Thanks.