For Remove Some Option In Front End

Dear cs cart experts

we are using cs cart multi vendor 4.3.6 with energot theme

please see Screenshot_3.jpg

this in a order page from my account > Orders > Order in front end/user panel of cs cart

here we want to hide/remove these red box for all users/buyers

how can we do it & which file need to change with code please help us

Thanks

cscart.jpg

Order details template:

design/themes/THEME/templates/views/orders/details.tpl

Customer invoice template:

design/themes/THEME/mail/templates/orders/invoice.tpl

Order details template:

design/themes/THEME/templates/views/orders/details.tpl

Customer invoice template:

design/themes/THEME/mail/templates/orders/invoice.tpl

Hello dear team thank a lot for replay we know you are the best team & always help every one

From detail.tpl to remove shipping method here as snapshot we removed these code from here

 {if $order_info.shipping}
                                
                                    {__("shipping_method")}:
                                    
                                    {hook name="orders:totals_shipping"}
                                    {if $use_shipments}
                                        
    {foreach from=$order_info.shipping item="shipping_method"}
  • {if $shipping_method.shipping} {$shipping_method.shipping} {else} – {/if}
  • {/foreach}
{else} {foreach from=$order_info.shipping item="shipping" name="f_shipp"} {if $shipments[$shipping.group_key].carrier && $shipments[$shipping.group_key].tracking_number} {include file="common/carriers.tpl" carrier=$shipments[$shipping.group_key].carrier tracking_number=$shipments[$shipping.group_key].tracking_number}
                                            {$shipping.shipping} ({__("tracking_number")}: {$shipments[$shipping.group_key].tracking_number})

                                            {$smarty.capture.carrier_info nofilter}
                                        {else}
                                            {$shipping.shipping}
                                        {/if}
                                        {if !$smarty.foreach.f_shipp.last}
{/if} {/foreach} {/if} {/hook} {/if}

but in order page still shipping method showing ??

its happened with all other options also after remove code they are still showing please help ??

Did you clear cache? Sometimes cache is not cleared. So delete the var/cache directory manually

Did you clear cache? Sometimes cache is not cleared. So delete the var/cache directory manually

Yes dear team i delete var/cache with my FTP but still not working ?

Yes dear team i delete var/cache with my FTP but still not working ?

Looks like 3rd party module uses hook in this file. It is required to examine files.