Pedro Gomes
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Popular Posts] (Suggestion) Open Links in a New TabHi Héctor,
Nope it wasn’t me, I just started using your plugin about a week ago.
I did it manually, here’s the lines just to save you a bit of time. I don’t know php otherwise I might help out.
1225
"<a href=\"". $permalink ."\" target=\"blank\">";1246
<a href="'.$permalink.'" title="'.$title.'" target="blank">Forum: Plugins
In reply to: [WP Popular Posts] Thumbnail Alt Text MissingAnother issue I picked up is that the title tag is being placed in the
<a>tag instead of<img>. That’s being caused by the code in line 1225.$thumb = "<a href=\"". $permalink ."\" title=\"{$title}\">";Forum: Plugins
In reply to: [WP Popular Posts] Thumbnail Alt Text MissingHi Héctor,
In my case the key seems to be on line 1496.
As a temporary fix I’m using
alt=\"{$id}\"to not have an empty alt tag.Thank you very much for looking into it 🙂
Forum: Requests and Feedback
In reply to: Tag: rel canonical bugI worked around this problem which appeared after I upgraded to 2.9.1:
1- I Removed
add_action( 'wp_head', 'rel_canonical' );from wp-includes/default-filters.php in line 185.2- Reactivated Yoast’s Canonical URL’s Plugin that I had previously installed.
Note: It seems that this problem happens in blogs that have a static page set as homepage.
I do hope a fix comes soon.
Forum: Requests and Feedback
In reply to: Tag: rel canonical bugSame problem here.
http://www.example.com/ has it’s canonical page as http://www.example.com
Which will probably cause a loop to a crawler when it visits the homepage. (http://www.example.com redirects to http://www.example.com/)
I tried solving this by adding a trailing slash on the General Settings Page to the URL fields but after saving it always removes the trailing slash.