Help for a new guy

Viewing 3 posts - 1 through 3 (of 3 total)

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

  • Author
    Posts
  • #2409
    williamsp
    Participant

    Hi there,

    I am new to wordpress and your extension so please be nice 🙂 I am however an IT guy with a bit of PHP and SQL experience so not totally helpless 🙂

    I have a new site I have setup on Godaddy’s hosting and I am using one of their themes based I think on a cyberchimps theme.

    I need some help getting the properties listed on a page, I have tried to follow the instructions on another post but can’t seem to find the _post in the single.php file.

    I have attached the two files just in case that helps.

    Many thanks in advance.

    #2410
    williamsp
    Participant

    Renamed the files

    Attachments:
    You must be logged in to view attached files.
    #2472
    Merv Barrett
    Keymaster

    Hi William, thanks for the text version of the uploads, easier to help you make the changes. Should be easy for you to do.

    Detailed instructions on theming

    Archive File
    Create a copy of archive.php and call it archive-listing.php and place in theme folder.

    In that file is a line

    get_template_part( 'content', get_post_format() );

    Replace it with

    if ( function_exists('epl_property_blog') ) {
        echo epl_property_blog();
    }

    Single File
    Create a copy of single.php and call it single-listing.php and place in theme folder.

    In that file is a line

    <?php get_template_part( 'content', 'single' ); ?>

    replace with

    <?php if ( function_exists('epl_property_single') ) {
        echo epl_property_single();
    } ?>

    Let me know how you go

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

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Basic Support’ is closed to new topics and replies.