Blog page template missing

Discussion in 'HomeBuilder WordPress Theme' started by reni, Nov 12, 2013.

Thread Status:
Not open for further replies.
  1. reni

    reni New Member

    Joined:
    Aug 26, 2013
    Messages:
    4
    Likes Received:
    0
    Hi, I would like to create a blog on my site with Home Builder theme but the Blog page template is missing. See attachment.

    Blog template.jpg
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  3. joeaquilina

    joeaquilina Member

    Joined:
    Dec 29, 2012
    Messages:
    37
    Likes Received:
    0
    I do understand the the Property Page is the Blog/Post Page in the HomeBuilder Theme, but is there a way how to remove the table which contains - Area, BHK, Price, City, Location; from blog posts? What are the limitations if I use pages for blog posts?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .page-item table.table {
    display: none;
    }
    Thanks & Regards
    Pramod Patel
     
  5. joeaquilina

    joeaquilina Member

    Joined:
    Dec 29, 2012
    Messages:
    37
    Likes Received:
    0
    Thanks, but will this remove the table from property listings (where the table will be required) too?
     
  6. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    You have to edit front-page.php file
    Follow below image.Replace all highlighted code in yellow and blue with below code.
    PHP:
    <?php if(!($area==''||$bed==''||$price==''||$city==''||$location=='')){ ?>
                            <table class="table">
                                <tr class="first-row">
                                    <td class="c-1"><span class="info"><?php _e('Area:''hb'); ?>&nbsp;<span><?php echo $area 'sqft'?></span></span></td>
                                    <td class="c-2"><span class="info"><?php _e('Bed Room:''hb'); ?>&nbsp;<span><?php echo $bed?></span></span></td>
                                    <td class="c-3"><span class="info"><?php _e('Price:''hb'); ?>&nbsp;<span><?php echo $price?></span></span></td>
                                </tr>
                                <tr class="pair">
                                    <td class="c-4"><span class="info"><?php _e('City:''hb'); ?>&nbsp;<span><?php echo $city?></span></span></td>
                                    <td colspan="2" class="c-5"><span class="info"><?php _e('Location:''hb'); ?>&nbsp;<span><?php echo $location?></span></span></td>
                                </tr>
                            </table>
                            <?php ?>
    Thanks & Regards
    Pramod
     

    Attached Files:

    • 1.png
      1.png
      File size:
      236.8 KB
      Views:
      5
  7. joeaquilina

    joeaquilina Member

    Joined:
    Dec 29, 2012
    Messages:
    37
    Likes Received:
    0
    Wow, that's looks complicated but i will give it a try; I am pretty sure you know what you are saying. Will keep you posted.
     
  8. kkonen89

    kkonen89 New Member

    Joined:
    Mar 10, 2014
    Messages:
    5
    Likes Received:
    0
    Location:
    Phoenix, AZ
    Thank you so much for this post! I was having the same issue and this worked perfectly! Much appreciated!
     
Thread Status:
Not open for further replies.

Share This Page