bootstrapwp-Twitter-Bootstrap-for-WordPress icon indicating copy to clipboard operation
bootstrapwp-Twitter-Bootstrap-for-WordPress copied to clipboard

We would like a little help pls

Open petros2119 opened this issue 11 years ago • 10 comments

Good evening.

We found your wonderfull Template and we are trying to make something!!!

A friend of mine, made with your template,this site. Untitled

The problem is that our friend isnt in condition to help us anymore and we need to make the same site from the beggining. Can you pls tell us how to make it like this?

Or provide us with the files?

Its simple text and a list from posts/pdf's that someone can download.nothing special but for us its so important.

Thank you in advance.

petros2119 avatar Apr 14 '13 19:04 petros2119

Hi Petros,

I am unable to understand what you are trying to achieve? Are you trying to create a full fledged website?

Thanks,

A~

amrshah avatar Apr 14 '13 21:04 amrshah

I am building a website based on bootstrap; Here is the screenshot:

theme

amrshah avatar Apr 14 '13 21:04 amrshah

Thank you for your answer.

We are trying to build a simple static page with a company name, company details and info in a list arranged left and a listo of downloadable files, as shown in picture.

We fixed a page till now,but we cant arrange them properly like the screenshot. Thank you. Óôéò 15 Áðñ 2013 12:38 ÐÌ, ï ÷ñÞóôçò "amrshah" [email protected] Ýãñáøå:

Hi Petros,

I am unable to understand what you are trying to achieve? Are you trying to create a full fledged website?

Thanks,

A~

Reply to this email directly or view it on GitHubhttps://github.com/rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress/issues/117#issuecomment-16360119 .

petros2119 avatar Apr 15 '13 07:04 petros2119

Hi Petros,

I have created a page layout for you here is the screen shot: screenshot

  1. Create a new page template; name the file: "company-info.php"
  2. Put the following code in this template and save:
<?php
/**
 * Template Name: Page - Company-Info
 * Description: Add description
 *
 * @package WordPress
 * @subpackage AunepBWP
 */
get_header(); ?>

<div class="container-fluid">
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

        <div class="row">
            <div class="span12">
                <div class="well">
                    <div>
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Company Name:</span>
                        <span style="font-size: 14px; font-weight: bold" >My Company</span><br>
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Address:</span>
                        <span style="font-size: 14px; font-weight: bold">
                        123, Harley Street, Eden, Essex, 54321, Germany
                        </span><br />
                        <span style="color: #08C; font-size: 14px; font-weight: bold">CEO:</span>
                        <span style="font-size: 14px; font-weight: bold" >Markoffs Isleman</span><br>
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Project Manager:</span>
                        <span style="font-size: 14px; font-weight: bold" > Gina Isleman</span><br>
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Phone:</span> 
                        <span style="font-size: 14px; font-weight: bold" >+1 123 4567 8</span></span><br>
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Web:</span>
                        <span style="font-size: 13px;" ><a href="#">www.mycompany.com</a></span><br />
                        <span style="color: #08C; font-size: 14px; font-weight: bold">Email:</span> 
                        <span style="font-size: 13px;" ><a class="email" href="#">[email protected]</a></span>
                    </div>

                    <hr />

                    <div>
                        <h4>Available Downloads</h4>
                        <table class="table table-striped">
                            <thead>
                            <tr>
                                <th width="10%">#</th>
                                <th width="45%">File</th>
                                <th width="45%" style="text-align: right">Date</th>
                            </tr>
                            </thead>
                            <tbody>
                            <tr>
                                <td>1</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>
                            </tr>
                            <tr>
                                <td>2</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>3</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>4</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>5</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>6</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>7</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            <tr>
                                <td>8</td>
                                <td><a href="#">This is a sample file link</a></td>
                                <td style="text-align: right">Fenruary 12, 2013</td>                                
                            </tr>
                            </tbody>
                        </table>
                    </div>                      
                </div>
            </div>          
        </div>
    <?php endwhile; endif; ?>   
</div><!--/.container -->

<?php get_footer(); ?>
  1. then in wordpress admin create a page and select "Page - Company-Info" as its template.
  2. Preview the page by browsing
  3. That's it

Let me know if this was helpful or if you face any issues.

Note: I am a freelance web developer and programmer; you can contact me at: http://www.freelancer.com/u/laamia.html or [email protected]

Thanks,

A~

amrshah avatar Apr 15 '13 14:04 amrshah

Good evening ,

This was fantastic.

It’s a very good try and that means a lot for us. Thank you again for your interested.

I attach you a pdf comparing the one you send me with ours.

The links you have in your template,in our are active posts. When we make a post with multimedia( pdf file ) it shows in the list and when you click on it,it just open.

Second, we have a header with site title and we don’t have the bar with pages like home.

We tried to make it as easy as possible with screenshots and callout.

Thank you again in advance.

From: amrshah [mailto:[email protected]] Sent: Monday, April 15, 2013 5:56 PM To: rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress Cc: petros2119 Subject: Re: [bootstrapwp-Twitter-Bootstrap-for-WordPress] We would like a little help pls (#117)

Hi Petros,

I have created a page layout for you here is the screen shot: https://f.cloud.github.com/assets/1771447/380698/83c4a39a-a5cc-11e2-8236-89d188c621f4.png screenshot

  1. Create a new page template; name the file: "company-info.php"
  2. Put the following code in this template and save:
    <div class="row">
        <div class="span12">
            <div class="well">
                <div>
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Company Name:</span>
                    <span style="font-size: 14px; font-weight: bold" >My Company</span><br>
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Address:</span>
                    <span style="font-size: 14px; font-weight: bold">
                    123, Harley Street, Eden, Essex, 54321, Germany
                    </span><br />
                    <span style="color: #08C; font-size: 14px; font-weight: bold">CEO:</span>
                    <span style="font-size: 14px; font-weight: bold" >Markoffs Isleman</span><br>
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Project Manager:</span>
                    <span style="font-size: 14px; font-weight: bold" > Gina Isleman</span><br>
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Phone:</span> 
                    <span style="font-size: 14px; font-weight: bold" >+1 123 4567 8</span></span><br>
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Web:</span>
                    <span style="font-size: 13px;" ><a href="#">www.mycompany.com <http://www.mycompany.com%3c/a%3e%3c/span%3e%3cbr> </a></span><br />
                    <span style="color: #08C; font-size: 14px; font-weight: bold">Email:</span> 
                    <span style="font-size: 13px;" ><a class="email" href="#">[email protected] <mailto:[email protected]%3c/a%3e%3c/span> </a></span>
                </div>
                <hr />

                <div>
                    <h4>Available Downloads</h4>
                    <table class="table table-striped">
                        <thead>
                        <tr>
                            <th width="10%">#</th>
                            <th width="45%">File</th>
                            <th width="45%" style="text-align: right">Date</th>
                        </tr>
                        </thead>
                        <tbody>
                        <tr>
                            <td>1</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>
                        </tr>
                        <tr>
                            <td>2</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>3</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>4</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>5</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>6</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>7</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        <tr>
                            <td>8</td>
                            <td><a href="#">This is a sample file link</a></td>
                            <td style="text-align: right">Fenruary 12, 2013</td>                                
                        </tr>
                        </tbody>
                    </table>
                </div>                      
            </div>
        </div>          
    </div>
<?php endwhile; endif; ?>   
  1. then in wordpress admin create a page and select "Page - Company-Info" as its template.
  2. Preview the page by browsing
  3. That's it

Let me know if this was helpful or if you face any issues.

Note: I am a freelance web developer and programmer; you can contact me at: http://www.freelancer.com/u/laamia.html or [email protected]

Thanks,

A~

— Reply to this email directly or view it on GitHub https://github.com/rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress/issues/117#issuecomment-16389741 . https://github.com/notifications/beacon/E0z612wQPnWVVqwqzwl7a70z3hmV9lR62JEjSuyEPvPsYmVMYExpSzRLucBxiYJX.gif

petros2119 avatar Apr 15 '13 19:04 petros2119

Thank you Petros,

Yes the template I created was just to give you an idea of how could you do your page and I added "sample links" etc. Sure you can add code/customize to show the links from your posts in place of those "sample links".

Thanks again,

A~

amrshah avatar Apr 15 '13 21:04 amrshah

the Question is how can i deactivate/delete header and connect the sample links you added with the auto post from posts i make.

petros2119 avatar Apr 16 '13 21:04 petros2119

I think best way to implement this for you would be to create a custom plugin for adding a company and then creating those file links. So that you can add as many companies you want and as many downloadable files of any company.

Thanks,

A~

amrshah avatar Apr 17 '13 06:04 amrshah

Also you can/should use that page template along with this custom developed plugin.

amrshah avatar Apr 17 '13 06:04 amrshah

Thank you but we are not familiar with making plugins !!

Αποστολή από κινητό Samsung

-------- Αρχικό μήνυμα -------- Από: amrshah [email protected] Ημερομηνία:
Προς: rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress [email protected] Κοιν.: petros2119 [email protected] Θέμα: Re: [bootstrapwp-Twitter-Bootstrap-for-WordPress] We would like a little help pls (#117)

Also you can/should use that page template along with this custom developed plugin.

— Reply to this email directly or view it on GitHub.

petros2119 avatar Apr 17 '13 09:04 petros2119