Integration with Vulcan Word press theme

Easy Property Listings WordPress Real Estate Plugin Forums Theme Support Integration with Vulcan Word press theme

Tagged: ,

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

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

  • Author
    Posts
  • #11819
    Mindys11
    Spectator

    I am using the Vulcan WordPress theme and was trying to follow your instructions in the Getting Started steps on how to get Easy Property Listings to work correctly with my theme and display the listings/sidebars correctly. I downloaded the archive.php and single.php files and renamed them as directed, then uploaded them and went to edit them. However, no where in these files to I see any reference to <? get_template_part(

    I’ve attached the two files for you to review. Could you tell me the correct location in each of these files where I need to replace the information? Thank you!

    Also, I’m just wondering if there is anyway to alter the list that appears under Additional Features when adding a new listing. Thanks!

    Mindy

    • This topic was modified 8 years, 11 months ago by Mindys11.
    • This topic was modified 8 years, 10 months ago by Merv Barrett.
    Attachments:
    You must be logged in to view attached files.
    #11966
    Merv Barrett
    Keymaster

    In the archive-listing.php replace:

    <div id="post-<?php the_ID(); ?>" class="blog-posted <?php post_class(); ?>">
                          <?php if (function_exists('has_post_thumbnail') && has_post_thumbnail()) {?>
                          <div class="blog-box">
                            <img src="<?php echo $image;?>" alt="" />
                          </div>
                          <?php } ?>
                          
                        <?php  if($post->post_excerpt) { 
                          the_excerpt(); 
                        } else { ?>
                        <p><?php echo excerpt($blogtext);?></p>
                        <?php } ?>
                        <div class="more-button"><a href="<?php the_permalink();?>"><?php echo $readmoretext;?></a></div>                                        
                        </div>

    with

    <?php do_action( 'epl_property_blog' ); ?>

    in the single-listing.php replace:

     <!-- begin of blog post  -->
                        <div class="left-head">
                            <div class="date"><?php the_time('d');?></div>
                            <div class="month"><?php the_time('M');?></div>
                        </div>
                        
                        <div class="right-head">
                           <h3><?php the_title();?></h3>                                        
                           <div class="post-info"><?php echo __('posted by ','vulcan');?>: <?php the_author_posts_link();?> &nbsp; | &nbsp; category : <?php the_category(',');?> &nbsp; | &nbsp; <?php echo __('comments ','vulcan');?>: <?php comments_popup_link(__('0 Comment','vulcan'),__('1 Comment','vulcan'),__('% Comments','vulcan'));?></div>
                        </div>
                        
                        <div class="blog-posted">
                            
                          <?php the_content();?>
                          
                          <div class="clr"></div>
                          <div class="divider"></div>
                          
                          <?php 
                          $disable_authorbox = get_option('vulcan_disable_authorbox');
                          if ($disable_authorbox == "false") : 
                          ?>                                          
                            <div class="author">
                              <div class="author-avatar">
                              <?php if (function_exists('get_avatar')) { 
                                echo get_avatar(get_the_author_meta('user_email'), '70'); 
                              } ?>
                              </div>
                            <h5>About <?php the_author();?></h5>
                            <?php the_author_meta('description'); ?>
                            </div>
                          <?php endif; ?>
                          <div class="clr"></div><br />
                          <?php comments_template('', true);?>                                         
                        </div>

    with

    <?php do_action( 'epl_property_single' ); ?>

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

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