Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Add a paragraph to this theme template. WordPress

Hi!

I need this done quickly. I need to add a paragraph on a portfolio template. This paragraph applies only to the homepage and is not needed anywhere else. Hence maybe an option on the page template to indicate.

The page design in question is http://themes.tielabs.com/qamar/

I want to have the ability to add a paragraph under the navigation or to the left or right side of the page for my homepage. I am open to suggestions. Since the page design layout is responsive, we may have to think of a better way to place the paragraph.


Thank you!

Answers (7)

2013-02-27

Kyle answers:

Can you post the entire code for the template used for your home page?

2013-02-27

Jens Filipsson answers:

If you need to add it only on the homepage, then use this code and you should be fine:

<?php if (is_home() ) { ?>
// Whatever you want to put in here
<?php } ?>

2013-02-27

Dan | gteh answers:

In line with that Jens said, I would suggest

<?php if (is_front_page() ) { ?>

<p> put your paragraph of text here </p>
<?php } ?>



kelvinlefab comments:

I will admit, I am a novice and have no idea how.


Dan | gteh comments:

Can you post the entire contents of your index.php page so we can see it?


Dan | gteh comments:

Maybe header.php too since you want to place the paragraph below the nav menu.

2013-02-27

Gabriel Reguly answers:

Hi kelvinlefab,


Could you please post the contents for the file wp-content/themes/qamar/template-portfolio.php?

I suspect that is the file you will need to edit.

The correct approach is to copy that file into a child theme and then do the modification you want.

Regards,
Gabriel


Gabriel Reguly comments:

Hi kevinlefab,

Do you still need help?

Regards,
Gabriel

2013-02-27

Arnav Joy answers:

can you show a mockup , how you want it?

2013-02-27

Abdelhadi Touil answers:

Hi.
I think we must have a look at your theme code, so if you can send it to me via email, I can make changes for you and resend it to you.
Good luck.

2013-03-02

idt answers:

Yeah, this is better with a theme option where you can add the paragraph when you want. The dirty way is editing the main page template every time you want to change the "paragraph".

If you want that theme Admin option done, please PM me.