Osclass Support Forums - Rackons.in

Osclass Plugin Support => Seller Verified Plugin => Topic started by: ogbavictor on February 22, 2018, 01:15:25 AM

Title: How to show description(Verified Seller) close to the image.
Post by: ogbavictor 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.
Title: Re: How to show description(Verified Seller) close to the image.
Post by: Osclass Developer 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.
Title: Re: How to show description(Verified Seller) close to the image.
Post by: ogbavictor 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