ThemeForest

Accord - Responsive WordPress Blog Theme

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
when an author is shown, is it possible to show excerpts instead of entire posts? http://www.thebloghangout.com/author/nicoletteroux/
ZERGE

Just replace the_content(’’,TRUE,’‘); with the_excerpt(); in the file author.php

Default-user

:) thanks! you make it sound so easy. hehe

  • Referred between 10 and 49 users
  • Bought between 10 and 49 items
  • Europe
  • Sold between 10 000 and 50 000 dollars
  • Has been a member for 1-2 years
  • Exclusive Author

hi, Where can i change contact form options from? And there is a hover over menu, how can i make it click to open menu ?

thanks.

ZERGE

Hi,

1. E-mail address you can change the file contact.php

2. I’m not sure I understand your question, could you please clarify?

Met_Creative

thanx contact. There is a menu with menu items in in, they open on hover over with mouse, Is it possible to make it click instead of hover?

ZERGE

Try to add option useClick: true in the fle \js\custom.js

http://users.tpg.com.au/j_birch/plugins/superfish/#sample6
  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

Hi Zerge, i would be nice with a search function inside this comments section (this site).

My question Have you told somebody how to make the frontpage full width / 100%?

I would like to make a link directory with no subpages, just image grid and getting use by this function, ‘Link to entire post or external URL’

So it would be nice if i can get a full width frontpage :-)

is it possibly?

Thanks www.goerdetgodt.dk Lars Hansen

ZERGE

Hi,

Try to rename the container class in the file header.php

<div class="container main-wrapper">...</div>

, for example
<div class="container-full main-wrapper">...</div>
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 3-4 years

Hi. I was wondering if : 1. Is it possible to put advertising in the sidebar ? 2.Is it possible to put in a layer slider for example above the carousel ?

ZERGE

Hi,

1. Yes, it’s possible.

2. Yes.

element94

Built in or need to change code ?

ZERGE

1 or 2 question?

ZERGE

1. Built in. You can use standard text widget to place your ads.

2. You need to just put the slider to the widget area, for example put text widget with slider shortcode. Slider not included in theme.

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 1-2 years
ergib Purchased

Don’t you have a forum where we can open threads about our questions and problems??? I want to change the related posts plugin that comes with your theme. This plugin takes related posts from tags, I want to change it so it shows related posts from the same category…. Thnx

ZERGE

Hi ergib,

No, will be soon.

May be this code helps you:

$related_category = get_the_category($post->ID);
$related_category_id = get_cat_ID( $related_category[0]->cat_name );            
$related_posts = new WP_Query(array(
   'orderby' => $orderby,
   'showposts' => $num_posts,
   'post_type' => 'post',
   'cat' => $related_category_id,
   'post__not_in' => array( $post->ID )
));
Default-user
ergib Purchased

Where should I add this??? I want to change the original related.php file that is located at: functions/accord-related-posts-widget.php I think that this is the code that I should change… Take a look

<?php global $post; $tags = get_the_tags(); if( $tags): ?> <?php $related_posts = get_related_posts( $post->ID, $tags, $num_posts); ?>

ZERGE

Try to make the following changes http://d.pr/i/eHjH

Default-user
ergib Purchased

Yup, It worked… Thank You very much Have a nice day, and much more sales too :)

ZERGE

Thanks :)

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
Assia75 Purchased

Hi

I would like to change the color of the title and the menu. How do I do this?

ZERGE

Hi,

In the style.css

1.

#blog-entry .post-entry h2, .homepage-top-sidebar h2 { color:#333; margin-bottom: 8px; font-size: 14px; line-height:18px; }

2.

.sf-menu a, .sf-menu a:visited  { 
    color: #888888;
}

Default-user
Assia75 Purchased

Thanks. It was actually the header I meant, not the title. Could you give me a hint to changing that? :)

ZERGE

What do you mean by “header”, can you please clarify.

Default-user
Assia75 Purchased

Yes. It’s the “Living in a shoebox” part on my blog: www.livinginashoebox.com. Thanks :)

ZERGE

Aha, it’s “logo”.

#logo h1 a { color:#4D4D4D; }
Default-user
Assia75 Purchased

Thank you for your always fast reply!

Default-user
Assia75 Purchased

Just one more question :) There’s box in the sidebar next to the post, that says: “category, comments, likes.” How do you remove it?

ZERGE

Just remove from the single.php http://d.pr/i/693U

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years

Is there a way to hide the page views count on the home page? I tried doing that but I ended up hiding the likes and everything else.

Thank you!

ZERGE

Hi,

Add to the style.css:
.bottom-meta .likes + div { display: none; }
Default-user

Thank you! :-)

  • Bought between 10 and 49 items
  • Has been a member for 4-5 years

The related posts widget. Is there an option to show the title of the post? Currently, it shows only the post featured image. I believe it’s not really user friendly with just an image.

Cheers

ZERGE

Hi,

For this you would need to modify the theme file: \functions\accord-related-posts-widget.php

Default-user

Is it possible for you to provide a code example or is it just me who finds this not very user friendly; and this is considered as customization rather than theme support?

ZERGE
You can do it yourself. Replace
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?></a>
with
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php echo get_the_post_thumbnail($post->ID, 'thumbnail'); ?></a>
  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hello Zerge I apply disqus comment in my website I want only show disqus comment option but theme default comment option is also show how to disable default comment option?

ZERGE

Hi,

Remove from the content-single.php:
            <div class="margin-30b" />

            <div class="single-box-bg">                        
              <div class="single-box-entry clearfix">
                <?php comments_template(); ?>
              </div>    <!-- /single-box-entry -->    
            </div>    <!-- /single-box-bg -->
Default-user

I have three more questions. 1. http://wp.color-theme.com/accord/collis-and-cyan-taeed-interview in this URL how you add the gallery in post. 2. I want to resize the H1 and also change the H1 font family 3. How I resize the post font and change the color of post font.

ZERGE

1. It’s standard WordPress feature http://codex.wordpress.org/Inserting_Images_into_Posts_and_Pages

2. Well, just resize it :) For example, add to the style.css:
h1 {
font-size: 36px;
font-family: Arial, Helvetica, sans-serif;
}
3. Just add to the style.css:
.single-box-entry {
color: #ff0000;
font-size: 14px;
}
Default-user

I know its basic wordpress future inserting image into post but my question is that your gallery picture open in slider but I inserting image into my post its don’t open in the slider?

ZERGE

(Edited)

Add this code to the functions.php http://tny.cz/c6bd75f8

Default-user

Version 1.06

ZERGE

Read my previous comment (edited).

Default-user

Last question when I put H1 tag there are lot of space show in bottom of h1 tag and paragraph top.

ZERGE

I’m not sure I understand your question, could you please clarify? With examples.

Default-user
http://s23.postimg.org/olvdt0akr/Space.jpg How can I decrease this space?
ZERGE

Drop me a link to this page on your site.

Default-user

Please check your PM

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
  • India

Hello Zerge, I need to put ‘Meta Description’ and ‘Keywords’ for my website homepage (howarchitectworks.com). I tried but could not find how to enter. Can you please let me know where should i put these values?

Best Regards, Abhishek

ZERGE

Hi,

Use third-party plugins for this, for example http://wordpress.org/extend/plugins/all-in-one-seo-pack/

  • Bought between 50 and 99 items
  • Has been a member for 1-2 years
  • United States

Best Theme, thank you.

May I trouble you to walk me through the steps of using the Audio Custom Format Feature?

There are a few option for embed codes from Sound Clound, which I have been installing in the meta field for the Sound Cloud option (hit save, hit update)... but I am not getting any expected results.

Maybe I am not using the correct SC code option? Shortcode? Iframe?

Thank you in advance, -Jen

ZERGE

Hi,

Thanks :)

May be this helps you http://d.pr/f/kkPM

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years

I am having a problem with my posts where it is just a video and no text. My feature image is showing and then my video which is expanding beyond the small box size on the home page. How do I make the main page only show my feature image in each box until clicked and then show the youtube video player on the post itself?

ZERGE

I’m not sure I understand your question, could you please clarify? Show me your site.

  • Bought between 100 and 499 items
  • Has been a member for 4-5 years

How can I get more than 3 posts to show up on one page? It seems that only 3 posts go onto a page before it goes onto another page?

ZERGE

Hi,

You can change this via Reading Settings (Blog pages show at most ) – http://codex.wordpress.org/Settings_Reading_Screen

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
nrhbiz Purchased

Hi Zerge,

My site is http://www.omgsuperfunny.com. I’m currently working on the color scheme and design, but in the meantime, I have a question about the featured pics in the carousel.

I’ve already set the featured image to “hide” under blog options, but the posts are still showing double images on the main page. Is there anything else I can do or is deactivating the carousel the only option?

Please take a look at the site if you have time. You’ll see exactly what I’m talking about. Again, I’m still working on the design, but I’ll leave that part alone for a few days so you can check it out.

Thanks 8-)

ZERGE

Hi,

This options only single post page (as described in the Theme Options). Try to change option “Use Excerpt or Content Function?” to Excerpt.

nrhbiz
nrhbiz Purchased

Because of the featured image, the image still shows up as doubled. Since the featured posts are already standing out, I’ve added a “featured” badge to them and I’m pleased with how it looks.

Thanks so much for your prompt reply. I absolutely love this theme. :)

Cheers!!

ZERGE

Try to remove from the file index-loop.php: http://tny.cz/d9faead2

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
kymora Purchased

Hi Zerge,

My header is no longer showing up in IE 8 on our WordPress website diyweddingsmag.com. Can you help? The header just contains a jpg of our banner and our drop down navigation. It works fine in all the other browsers.

Thank you,

ZERGE

Hi kymora,

Try deactivating all plugins. If that resolves the issue, reactivate each one individually until you find the cause.

  • Bought between 10 and 49 items
  • Has been a member for 1-2 years
kymora Purchased

Zerg – just noticed you put out an update – let me update and I will get back to you if that doesn’t correct this issue.

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years

Hi! Excellent Template! In this template it is possible to place the Login form on the main page?

ZERGE

Hi,

Thanks :)

Of course, it’s possible.

  • Bought between 10 and 49 items
  • Has been a member for 5-6 years

Hi Zerge,

Great theme, perfect for what I want. I am modifying it a fair bit though, and I am stuck on one part. I have basically removed most of the DIV backgrounds, including the background and padding of the individual post DIV’s when on the HP or category view.

Looks great, however each post is now touching one another, and too far over to the left.

I have checked the code and it seems that each individual post is set by an absolute position, which changes if the page is resized.

I am guessing it uses a calculation based on the screen size and also takes into account any padding around each post? I have added a margin and resized the posts but the position remains unchanged.

Could you please point me in the direction of where I can find the code to change this? I basically want each post to sit side by side individually, with a gap between each one and for them to fill the width of the page.

I hope this makes sense. Please see this screenshot to see what I mean – http://oi44.tinypic.com/4loxt5.jpg

Thanks for any help!

ZERGE

Hi,

Drop me a link to your site.

Default-user

It is local at the moment, however I can upload to a real install today. I will post the link later :) Cheers!

ZERGE

Yep :)

Default-user

I have sent you an email. Many thanks.

  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 2-3 years
nusquama Purchased

How can load more post on home page ?

thanks

Default-user
nusquama Purchased

thank you. But i have other problem. When i click on the last page on paging , the sidebar don’t stay on the right, and go down. Other page,1,2,3 etc it’s ok Do you know why ?

ZERGE

Show me your site.

Default-user
nusquama Purchased

can i send you in private

ZERGE

Of course, send me a message through my profile

Default-user
nusquama Purchased

I find this.

On page 1,2,3 etc span9 and span3 are in row-fluid

but on the last page on blog span3 is outside row-fluid

but i don’t understand it’s the same php template no ?

Default-user
nusquama Purchased

I find this.

On page 1,2,3 etc span9 and span3 are in row-fluid

</<div class="row-fluid">
    <div class="span9"> </div>
    <div class="span3"> </div>
 </div>
but on the last page on blog span3 is outside row-fluid
<div class="row-fluid">
    <div class="span9"> </div>
</div>
<div class="span3"> </div>

but i don’t understand it’s the same php template no ?

ZERGE

I need access to your site.

Default-user
nusquama Purchased

i try to find why my website is not access in your country… very strange

Default-user
nusquama Purchased

normaly it’s ok now

  • Bought between 1 and 9 items
  • Has been a member for 0-1 years
hsinyou Purchased

Hi, Why can’t I use Accord options under appearance with IE10? And the Accord logo on the front page gets blurry and magnified after Accord Option is down.

It was fine when I first started to use it tho

Thanks

ZERGE

Hi,

I’m not sure I understand your question, could you please clarify?

by
by
by
by
by