Support Forum
Hi everybody,
I'm not sure I'm posting in the right place, but hope so.
I'm managing a website of press news in France and using the simple press forum with WordPress.
We recently installed the "blog post linking" simple press plugin and ran into several issues / questions :
1. When using the scheduling blog post feature in WordPress, the forum topic is not created when the publishing date comes, I need to modify the blog post manually and then save again afterwards to create the topic.
2. I got something like 3k+ articles published on my website with a lots of comments (10k+) and I was wondering if there was a way (or just some tips) to re-create all the associated topics and forums replies. If you have any advice about how to achive that.
3. We're also using extensively "taxonomy" in wordpress and simple press plugin "Template Tags and Widgets" to "tag" forum topics with the taxonomies we're using in the articles of the site and we wanted to customize the automatic creation of the forum topic so it's using the taxonomies of the originating article as tags in topic. How can we modify the automatic topic creation to add new features such as the one explained above ?
If you can share any info / insights about these questions, it would greatly appreciated.
Thanks.
- I am unable to reproduce any problems with scheduled posts and must also say that we have no other reports of any failures at this time. The plugin uses WordPress filter/action hooks to fire the topic creation on scheduled blog post save. Is it possible that you have other third-party hook usage active that may be stopping the topic creation code from running?
- The only thing that comes to mind would actually be to make coded calls to the filter/action hooks that Blog Linking uses and let it respond accordingly. I have not tried this of course but the theory is probably workable. It would need a lot of support code loaded. And it would need to be donei n fairly small numbers at a time.
It must be noted also that any topics created from old blog posts will shop up in the forums with the date and ordering in which the actual forum posts are created. There is basically no way around this. - It should be a fairly straightforward task to write an action hook that will create forum tag entries based on blog post categories (or tags come to that). I am sure we could advise on that if you decide to try it at some point.
YELLOW
SWORDFISH
|
1. It seems that the problem comes from an incompatibility between blog linking and nextscript plugin who publish schedulded post on facebook and twitter. Did you encounter this kind of issue before ? Could you give me some leads if you have regarding this kind of problem ?
Thanks
That's a new one on me I am afraid. No other reports.
However - we blog link al of our posts on this site and we use a plugin called 'Social' that sounds like it does the same thing - and we have no noticeable problems. Although I admit I have not yet tried it with a scheduled post....
And = it might just be that the ordering of the actions hooks would help - i.e., move the forum action hooks to trigger before the other plugin hooks. Do you know how to check the ordering of hooks?
YELLOW
SWORDFISH
|
I would assume the tiw that might want to be examined are:
add_action('future_to_publish'....
add_action('pending_to_publish'....
which I would think you will find somewhere in the other plugin's code. If you can find those, paste here the entire function call sop we can see what sequence they are using.
Sorry - but there is no real alternative to looking at the code files unless you ask the plugin authors themselves.
YELLOW
SWORDFISH
|
Concerning the last problem, i turned off the CM tooltip GLossary plugin with which i had some other issues. Now plannification works with nexscript and simple press linking post working together.
Unfortunately i have another problem :
I created a form by hand on the "front" of my site with which users writes posts. I wish that whenever they publish those post linked topic would be created in simple press's forum.
The form uses a 'POST' method which uses the wp_insert_post and wp_update_post from wordpress.
My worrie is that when users use those forms and a post is published no linked entry is added to the forum.
Nevertheless 'save_post', 'pending_to_publish' [...] hooks from wordpress are executed when wp_update_post or wp_insert_post function is used
How can i linked blog linking functions to my form ?
I try to put the status of my article in 'future' with a scheduled date and I still have the issue.
Even when I desactivate all the plugins.
Could you shed your lights on my problem
The form is initialised using the WP 'admin_init' action hook. I am unsure why this hook - it has been a long time - and I will investigate that curiosity. So that is probably no good. You could try adding some sort of do_action() hook to your form and setting up an add_action() call. That would need to invoke the sp_linking_blog_link_form() SP function.
However - that forum is set up to display in a WP meta box. You may be better off adding raw form code to your own form. That would need the sp_populate_post_form() function in the blog linking 'forms' folder.
Remember - I am still unsure of it would work. You might still need to 'include; some code files. We have never tried this.
YELLOW
SWORDFISH
|