Hello Dear Users!
I use osclasswizard theme with osclass pro payment model.I tried what they offered to change in the theme but not show the highlighted items.
Anybody would be can help me please?
Setting up your theme
In order to use the highlighted listing feature, you need to make a minimal modification to your theme.:
In the search page template, you need to add the following in the class attribute of the div of the listing
class="<?php osc_run_hook("highlight_class"); ?>"
(Note: you probably already have a class attribute, in that case, just add the osc_run_hook part)
Examples
In bender theme, you need to modify the file loop-single.php. Look for line 24, change it from .
<li class="listing-card <?php echo $class; if(osc_item_is_premium()){ echo ' premium'; } ?>">
to.
<li class="<?php osc_run_hook("highlight_class"); ?> listing-card <?php echo $class; if(osc_item_is_premium()){ echo ' premium'; } ?>">
i tried these but not working.
Thanku