Author in meta and custom logo in header

Posted in: Newspaper
Post count: 35

Hello,

I’m an spanish web-magazine editor. The Newspaper theme is very beautiful and full customizable, but I have two problems:

1. I can’t put the Author name and a link to the articles of each author in the meta of the articles in the homepage and in the articles.

2. My logo is bigger than 300×100 px, how could I change this restriction although it suppose the loss of advertising space in the header?

3. Also I lost my favicon (my url is: http://papeldeperiodico.com).

I’ll be very happy if you give a quickly answer, I’m showing a bad image d my magazine. Thanks!

Post count: 35

I have fixed the problem with my favicon but the first and the second problems persists. Thanks for the help!

Post count: 35

I add another problem. It consists in a bug in the search form. When I do a search, appears future results. In the results I can see articles that are scheduled, but aren’t published yet. How can I fix it?

Post count: 3343

Hello,

1. You can use this plugin Author META. Also we will fix this in the next update.
2. You can use a big logo if you want, depend which size you want to be, please give me the size of your logo you want to have it and i will give you the solution.

Thanks for the message

Post count: 35

My logo size is: 500×94 px

What can you say me about the bug of the search tool?

Post count: 35

The author meta plugin doesn’t work in this wordpress version. Can you give me another solution? I always work with the codes, and I can write code by FTP, Could you tell me where is the meta options?

Post count: 35

I use the code you have post this morning in other topic and the author name appears in all the web. Thank you very much.

I have now the other two cuestions: the logo size and the problem with the search form, where appear results of articles that are scheduled yet.

Post count: 3343

Hello,

For search to return scheduled post add this into fuctions.php file


function wpshock_search_filter( $query ) {
    if ( $query->is_search ) {
        $query->set( 'post_status', array('publish','future') );
    }
    return $query;
}
add_filter('pre_get_posts','wpshock_search_filter');

For logo I will give you a solution soon

Post count: 3343

Back 🙂

Edit logo_ad.php file located in \parts\header folder and change like here to span 6: http://screencast.com/t/nTbLkHqcf0LK

Now you will lose some space for banner ads but you can put there a 468 x 60px banner instead of 728×90

Post count: 35

I write into fuctions.php file and doesn’t work. Where I have to add it? I don’t want scheduled results in the search form. Thanks for all!

Post count: 35

Perfect. I change what you say to me in logo_ad.php and works. I think it will be better if I could add a white space below the logo, but now my web looks better. I only need to solve the problem with search form. Thanks, thanks and thanks! The theme is perfect and the support team too 🙂

Post count: 3343

Hello,

Please can you tell me what word you search and tell me exactly what is the issue with your search. From your message I understood that you want to have in search scheduled article to. Sorry, my mistake.

Post count: 35

For example. If you search ‘salud’ (without ‘) it will appear the article which have to be published next monday (14th october). The problem is that in the search form appear like results articles that aren’t published yet. (sorry for my English)

Post count: 3343

Hello,
Copy this code in functions.php

function wpshock_search_filter( $query ) {
if ( $query->is_search ) {
$query->set( ‘post_status’, array(‘publish’) );
}
return $query;
}
add_filter(‘pre_get_posts’,’wpshock_search_filter’);

Post count: 35

It works. Thank you very much for all your support 🙂 You’re great!

Post count: 780
Post count: 161

How did you fix the favicon problem?

Post count: 3343

Hi,
What problem? The favicon works, I’ve tested on Chrome, Firefox

Viewing 18 posts - 1 through 18 (of 18 total)
You must be logged in to reply to this topic.