chrisguitarguy
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Auto Linker] Content not displayedI can’t reproduce the error.
Are you using other plugins?
If you are, start deactivating them and see if one is causing a conflict of some sort. Also make sure you updated to version 0.2 because I fixed a bug with the post type thing.
Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] HTML Code HighlightedAh, gotcha.
Try this:
-Open up the plugin folder on ftp or something similar (or on your local development environment).
-Replaceincludes/front.php
with this https://gist.github.com/1180831Alternatively, you could just change this line in
includes/front.php
add_filter( 'the_content', array( &$this, 'content' ), 99, 1 );
to this:
add_filter( 'the_content', array( &$this, 'content' ), 1, 1 );
That’s going to add the links very early, before anything else has a chance to add stuff to
the_content
. I suspect your issue is just a conflict with the two plugins hooking into the same thing.Forum: Plugins
In reply to: [SEO Auto Linker] Content not displayedCould you give me an example? What is getting cut off?
This should be fixed in version 0.2!
Thanks for the heads up! There should be a new version released by the end of the day that fixes the issue.
Are we talking about just straight image tags (
<img ... />
)? Or image tags surrounded by links (<a ...><img .../></a>
)?Forum: Plugins
In reply to: [SEO Auto Linker] [Plugin: SEO Auto Linker] HTML Code HighlightedCan you give an example? Is the Post Layout widget a plugin?
SEO Auto Linker works by hooking into
the_content
filter, so any other plugins that use the<?php the_content(); ?>
template tag are going to have their content linked.On which widget?
Should be fixed now. Just checked in the change(s). The like box doesn’t have a height setting, but the other two do.
And thanks for the heads up!
-CD
Hey Bruce, unfortunately you can’t. Facebook doesn’t give you that option on their social plugins page, so I couldn’t put it into the widgets.
Sorry!
-CD
Forum: Plugins
In reply to: [Yoast Breadcrumbs] Not Working @ AllHey Guys, check this out:
https://yoast.com/wordpress/breadcrumbs/You have to add a snippet of code to your template file(s) where you’d like the breadcrumbs to show up:
<?php if ( function_exists('yoast_breadcrumb') ) { yoast_breadcrumb('<p id="breadcrumbs">','</p>'); } ?>