Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

We would like a little help pls #117

Open
petros2119 opened this issue Apr 14, 2013 · 10 comments
Open

We would like a little help pls #117

petros2119 opened this issue Apr 14, 2013 · 10 comments

Comments

@petros2119
Copy link

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.

@amrshah
Copy link

amrshah commented Apr 14, 2013

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
Copy link

amrshah commented Apr 14, 2013

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

theme

@petros2119
Copy link
Author

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" notifications@github.com
Ýãñáøå:

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//issues/117#issuecomment-16360119
.

@amrshah
Copy link

amrshah commented Apr 15, 2013

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@mycompany.com</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 laamiatech@live.com

Thanks,

A~

@petros2119
Copy link
Author

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:notifications@github.com]
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@mycompany.com <mailto:email@mycompany.com%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 laamiatech@live.com

Thanks,

A~


Reply to this email directly or view it on GitHub #117 (comment) . https://github.com/notifications/beacon/E0z612wQPnWVVqwqzwl7a70z3hmV9lR62JEjSuyEPvPsYmVMYExpSzRLucBxiYJX.gif

@amrshah
Copy link

amrshah commented Apr 15, 2013

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~

@petros2119
Copy link
Author

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

@amrshah
Copy link

amrshah commented Apr 17, 2013

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
Copy link

amrshah commented Apr 17, 2013

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

@petros2119
Copy link
Author

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

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

-------- Αρχικό μήνυμα --------
Από: amrshah notifications@github.com
Ημερομηνία:
Προς: rachelbaker/bootstrapwp-Twitter-Bootstrap-for-WordPress bootstrapwp-Twitter-Bootstrap-for-WordPress@noreply.github.com
Κοιν.: petros2119 petros.hariatis@gmail.com
Θέμα: 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants