Gail Delaney

Forum Replies Created

Viewing 9 posts - 16 through 24 (of 24 total)

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

  • Author
    Posts
  • in reply to: Back Office / Admin area price bar #10707
    Gail Delaney
    Spectator

    Ah great, worked a treat, thanks 🙂

    in reply to: Filters in functions.php causing white screen #10374
    Gail Delaney
    Spectator

    Ah, mine said add_filters( ‘epl_listing_meta_property_category’, ‘my_epl_listing_load_meta_property_category’ ); not add_filter( ‘epl_listing_meta_property_category’, ‘my_epl_listing_load_meta_property_category’ );

    in reply to: Filters in functions.php causing white screen #10373
    Gail Delaney
    Spectator

    Thank you 🙂

    in reply to: Filters in functions.php causing white screen #10369
    Gail Delaney
    Spectator

    Here is the code now, it still errors with this – thanks in advance:

    <?php

    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }

    function my_epl_disable_feature_links() {
    return false;
    }
    add_filter( ‘epl_features_taxonomy_link_filter’ , ‘my_epl_disable_feature_links’ );

    // Easy Property Listings Rental Options Filter
    function my_epl_opts_rent_period_filter() {
    $opts_rent_period = array(
    ‘day’ => __(‘Day’, ‘epl’),
    ‘week’ => __(‘Week’, ‘epl’),
    ‘month’ => __(‘Month’, ‘epl’),
    ‘year’ => __(‘Year’, ‘epl’),
    );
    return $opts_rent_period;
    }
    add_filter( ‘epl_opts_rent_period_filter’ , ‘my_epl_opts_rent_period_filter’ );

    /**
    * Custom Meta: House Categories
    *
    * @since 1.1
    * @return all the categories in array
    */

    function my_epl_listing_load_meta_property_category() {
    $defaults = array(
    ‘Detached’ => __(‘Detached House’, ‘epl’),
    ‘Semi-detached’ => __(‘Semi-Detached House’, ‘epl’),
    ‘Terraced’ => __(‘Terraced House’, ‘epl’),
    ‘EndTerraced’ => __(‘End Terraced House’, ‘epl’),
    ‘Weavers’ => __(‘Weavers Cottage’, ‘epl’),
    ‘Mews’ => __(‘Mews House’, ‘epl’),
    ‘TownHouse’ => __(‘Townhouse’, ‘epl’),
    ‘Bungalow’ => __(‘Bungalow’, ‘epl’),
    ‘Apartment’ => __(‘Apartment’, ‘epl’),
    ‘Flat’ => __(‘Flat’, ‘epl’),
    ‘Bedsit’ => __(‘Bedsit’, ‘epl’),
    ‘Land’ => __(‘Plot of land’, ‘epl’),
    ‘Farm’ => __(‘Farm’, ‘epl’),
    ‘CommSale’ => __(‘Commercial Property – For Sale’, ‘epl’),
    ‘CommRent’ => __(‘Commercial Property – To Rent’, ‘epl’),
    ‘Investment’ => __(‘Investment Property’, ‘epl’),
    ‘Garage’ => __(‘Garage’, ‘epl’),
    ‘Other’ => __(‘Other’, ‘epl’),
    );
    return $defaults;
    }
    add_filters( ‘epl_listing_meta_property_category’, ‘my_epl_listing_load_meta_property_category’ );

    in reply to: Sort element shortcode #9865
    Gail Delaney
    Spectator

    I didn’t see that either sorry, thanks for all your help.

    in reply to: Rental Period #9864
    Gail Delaney
    Spectator

    Thanks, sorry I didn’t see that :/

    in reply to: Description not showing #9863
    Gail Delaney
    Spectator

    Wow fantastic thank you!

    in reply to: Description not showing #9818
    Gail Delaney
    Spectator

    Do you have an email address for the theme folder via dropbox please.

    in reply to: Description not showing #9812
    Gail Delaney
    Spectator

    Yes I did have the one listing issue, that is why I have used shortcodes instead.

    Here are the files. Thanks.

    Attachments:
    You must be logged in to view attached files.

These forums are closed to new replies / tickets. Please open a support ticket from our new Support page.

Viewing 9 posts - 16 through 24 (of 24 total)