Support Forum
I installed the Blog Post Linking plugin and it does exactly what I want it to do, but it also does something I don't want it to do.
The link from the Post to the Forums appears twice on the Post's screen - once where it should, but also above the top of the page, in the left-hand corner.
When I change the settings so that the Forum link is no longer attached to the Post - either by de-activating the plugin or by disabling the plugin's Post-to-Forum link - the problem goes away.
It looks like there is some kind of php miscommunication between my theme (WP Look's "Daily Post") and the Blog Post Linking plugin, but I do not know nearly enough about php to try to figure it out myself.
Can you help?
In the Forum admin - Components - Blog Linking do you have the 'Display blog post link above post content' turned on? Might try turning off if so and see if that takes care of it.
It rather sounds like your WP theme is making two calls to the WP content function (the_content) which would cause the filter on that function to be run twice. Do you know if this is the case?
It makes it a bit difficult as the blog linking routine checks the post ID so it is clearly receiving that twice.
I am going to need to think about this one as I don't see any obvious solution. Going to have to try and think of a devious one.
YELLOW
SWORDFISH
|
it might be worth a try also to go to forum - integration - page and permalink and play with the options for displaying multiple and within the loop and see if some combination gets you going...
Visit Cruise Talk Central and Mr Papa's World
okay, just let us know... here to help...
Visit Cruise Talk Central and Mr Papa's World
OK, my son messed with our php files for about an hour and couldn't come up with a fix.
So I tried every possible combination in the Integration settings. No luck there either.
Then I temporarily installed a different WP theme (Twenty Eleven) and the problem did not show up in that theme.
So it must be, like Swordfish said, that our theme is making two calls and we just can't find where that's happening.
I really don't want to go to a different theme, because I spent a lot of time tweaking the css on this one to make it like I want it.
I'm probably not asking this right, but do you know the name of the WP command for "remove filter"? Or do you have a guess what php file(s) we need to mess with and what messing we need to do?
first see if you can find the theme using 'the_filter' without quotes in an apply_filters function call...
if you want to remove a filter, just call remove_filter('filter_name', 'callback', $priority) where priority if the priority of the filter being removed... if its default priority, ie 10, you can just omit the third argument...
Visit Cruise Talk Central and Mr Papa's World
1 Guest(s)