Author Topic: How to show description(Verified Seller) close to the image.  (Read 870 times)

ogbavictor

  • Newbie
  • *
  • Posts: 7
    • View Profile
How to show description(Verified Seller) close to the image.
« on: February 22, 2018, 01:15:25 AM »
I would like to show the details close to the icon so that everyone can see it at a glance.



Marked as best answer by ogbavictor on February 22, 2018, 02:35:01 AM

Osclass Developer

  • Jr. Member
  • **
  • Posts: 66
    • View Profile
Re: How to show description(Verified Seller) close to the image.
« Reply #1 on: February 22, 2018, 01:50:01 AM »
I would like to show the details close to the icon so that everyone can see it at a glance.

Find below code in details.php of seller verified plugin folder

Code: [Select]
<img src="<?php echo osc_base_url()?>oc-content/plugins/seller_verification/images/verified-seller.png" title="<?php echo @$detail['s_seller_description'?>">
and replace with below code
Code: [Select]
<img src="<?php echo osc_base_url()?>oc-content/plugins/seller_verification/images/verified-seller.png" title="<?php echo @$detail['s_seller_description'?>"> <?php _e('Verified Seller'); ?>

its just normal. you can put some css if you want to design or change colors, fonts etc.

Osclass Support Forums - Rackons.in

Re: How to show description(Verified Seller) close to the image.
« Reply #1 on: February 22, 2018, 01:50:01 AM »

ogbavictor

  • Newbie
  • *
  • Posts: 7
    • View Profile
Re: How to show description(Verified Seller) close to the image.
« Reply #2 on: February 22, 2018, 01:05:37 PM »
I would like to show the details close to the icon so that everyone can see it at a glance.

Find below code in details.php of seller verified plugin folder

Code: [Select]
<img src="<?php echo osc_base_url()?>oc-content/plugins/seller_verification/images/verified-seller.png" title="<?php echo @$detail['s_seller_description'?>">
and replace with below code
Code: [Select]
<img src="<?php echo osc_base_url()?>oc-content/plugins/seller_verification/images/verified-seller.png" title="<?php echo @$detail['s_seller_description'?>"> <?php _e('Verified Seller'); ?>

its just normal. you can put some css if you want to design or change colors, fonts etc.
Got it. Thanks

Osclass Support Forums - Rackons.in

Re: How to show description(Verified Seller) close to the image.
« Reply #2 on: February 22, 2018, 01:05:37 PM »