Changes done in view of Velocity, but it's not reflecting in the browser.
-
I have added cross sell also removed description in the code
packages->Velocity->src->Resources->view->shop->product->view.blade.phpChanges are done but it's not reflecting.
Have done following things already:
php artisan cache:clear
php artisan config:clear
php artisan view:clearphp artisan vendor:publish
composer dump-autoload
After doing everything still no effect in the view of browser. Cache is disables in my browser as well.
-
@SourabhAkash
could you please show the lines of code where you have done the changes? -
packages->Velocity->src->Resources->view->shop->products->view->view.blade.php
<div class="related-products">
@include('shop::products.view.related-products')
@include('shop::products.view.up-sells')
@include('shop::products.view.cross-sells')
</div>also removed:
{{-- product long description --}}
@include ('shop::products.view.description')in view.blade.php
-
@SourabhAkash
you need to publish the velocity package to see the changes inside view.blade.phprun the php artisan vendor:publish --force command and press the number given in front of velocity package.
-
Thanks a lot @Vaishali-Agarwal for helping and quick reply, now it's working as expected.
-
@SourabhAkash
Nice to hear your issue has been resolved