SOLD ribbon for WordPress?
-
I would like the SOLD properties to show SOLD rather than Updated on the blue ribbons. URL: https://theebda.com
I have updated the following code in the _compact_property and the single_property files in the Views folder – but the sold properties still have an updated ribbon. Any suggestions?
Note: code update was suggested in this threadL https://www.ads-software.com/support/topic/change-title-on-banner?replies=2<?php if ( $property->get_sale_type_name() == 'Sold' ) : ?> <div class="iproperty-ribbon-wrapper"><div class="iproperty-ribbon iproperty-ribbon-blue"><?php _e( 'Sold', 'iproperty' ); ?></div></div> <?php elseif ( $property->is_newly_published() && iproperty_use_css_banner() ) : ?> <div class="iproperty-ribbon-wrapper"><div class="iproperty-ribbon iproperty-ribbon-green"><?php _e( 'New', 'iproperty' ); ?></div></div> <?php elseif ( $property->is_recently_updated() && iproperty_use_css_banner() ) : ?> <div class="iproperty-ribbon-wrapper"><div class="iproperty-ribbon iproperty-ribbon-blue"><?php _e( 'Updated', 'iproperty' ); ?></div></div> <?php endif; ?>
https://www.ads-software.com/plugins/intellectual-property-basic/
- The topic ‘SOLD ribbon for WordPress?’ is closed to new replies.