URL in "more info" not showing anymore
-
Hi, i hope you can help.
I’m pretty sure this worked 6 months ago when it went live. The “more info” section (and map detail) shows Phone and Email but no longer shows the URL.Website – https://solidfuel.co.uk/approved-coal-wood-merchants/
Postcode HD4 7QSThe functions.php has the following code –
‘// Your code goes below
add_filter( ‘wpsl_listing_template’, ‘custom_listing_template’ );function custom_listing_template() {
global $wpsl, $wpsl_settings;
$listing_template = ‘<li data-store-id=”<%= id %>”>’ . “\r\n”;
$listing_template .= “\t\t” . ‘<div>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<p><%= thumb %>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . wpsl_store_header_template( ‘listing’ ) . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-street”><%= address %></span>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<% if ( address2 ) { %>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-street”><%= address2 %></span>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<% } %>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<span>’ . wpsl_address_format_placeholders() . ‘</span>’ . “\r\n”;
$listing_template .= “\t\t\t\t” . ‘<span class=”wpsl-country”><%= country %></span>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘</p>’ . “\r\n”;// Show the phone, fax or email data if they exist.
$listing_template .= “\t\t\t” . ‘<p class=”wpsl-contact-details”>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% if ( phone ) { %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘phone_label’, __( ‘Phone’, ‘wpsl’ ) ) ) . ‘: <%= phone %></span>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% if ( fax ) { %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘fax_label’, __( ‘Fax’, ‘wpsl’ ) ) ) . ‘: <%= fax %></span>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% if ( email ) { %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ’email_label’, __( ‘Email’, ‘wpsl’ ) ) ) . ‘: “><%= email %></span>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% if ( url ) { %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<span>‘ . esc_html( $wpsl->i18n->get_translation( ‘url_label’, __( ‘Website’, ‘wpsl’ ) ) ) . ‘: target=”_blank”><%= url %> </span>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘<% } %>’ . “\r\n”;
$listing_template .= “\t\t\t” . ‘</p>’ . “\r\n”;$listing_template .= “\t\t” . ‘</div>’ . “\r\n”;
// Check if we need to show the distance.
if ( !$wpsl_settings[‘hide_distance’] ) {
$listing_template .= “\t\t” . ‘<%= distance %> ‘ . esc_html( $wpsl_settings[‘distance_unit’] ) . ” . “\r\n”;
}$listing_template .= “\t\t” . ‘<%= createDirectionUrl() %>’ . “\r\n”;
$listing_template .= “\t” . ” . “\r\n”;return $listing_template;
}
//’What is interesting/worrying is that I can remove the code from the functions.php file, clear the cache (store transients, wp-super-cache, browser) and it still shows the Phone and Email. Which suggests its picking it up from somewhere else ?
I’m using version 2.2.4
- The topic ‘URL in "more info" not showing anymore’ is closed to new replies.