davidarago
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Custom Post Order] Sorting thousands of posts per categoryHi again,
I have installed the plugin and I have a story in two different categories, Local News and Top News. I have assigned a post to both categories in the first position. I when to the Local News category and move the post to the second position. I was expecting that the change would not affected the Top News order of the posts but it did.
It seems that changing the order of the post in one category affects the order in all of the categories. Is that correct? or I have something miss-configured?
Thanks, Again
Forum: Plugins
In reply to: [Simple Custom Post Order] Sorting thousands of posts per categoryMihaela,
I did not mean that user would be adding posts using the plugin. I was simply pointing out that we have several users adding posts to the same category concurrently. Using the normal WordPress process.
Forum: Plugins
In reply to: [Simple Custom Post Order] Sorting thousands of posts per categoryThanks Mihaela,
I will give the plugin a try and let you know how it goes.
Forum: Plugins
In reply to: [Post Types Order] Using Post Types Order with large databasesHi Maya,
I work with Tracy. The issue that we had when we were using the plugin is that we have processes that ingest post from other sources every 5 minutes. The plugin was attempting to sort the posts for every post that was created. That created an incredible amount of traffic on our database and we were getting “Unable to connect to the database” error messages. I think that if there is a way for the plugin to only update the post order of a category when all of the posts are inserted the plugin may work. Do you have a hook that we can call at the end of our process to trigger the category resorting?
Thanks.Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesHi,
I think that I may be misunderstanding what you asking. Are you asking us to change the default order of WP from LiFo to LiLo? If so, that may not be possible because the website is live and if we make that change, we may display old stories in our website.Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesI do not know enough of your plugin to understand your statement “I would use the plugin to handle the query mod”. If you point me to the file and the code that you want me to change I can do that.
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesHey it seems that I found another user reporting the same issue that we are seeing a while a go. Check this link: https://wordpress.org/support/topic/new-posts-dont-show-in-reorder-page/. Did you ever figured out what the issue was?
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Expanded capabilities of pluginOK.
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesYeah. I was just in a meeting with her and she told me that she is talking to you too. So I think that we can drop this threat and keep the conversation on the other.
Thanks.
Forum: Fixing WordPress
In reply to: Auto Save Deleting PostHi,
The issue is that there is nothing in the log that indicates that the post was deleted. It is like it was deleted using a DELETE FROM .vs. wp_delete_post. We also checked for corruption on the database. I may have to set some BEFORE DELETE triggers. Thanks for your responses.
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesI will talk to the web manager to try your suggestion to reverse the order on our test environment. We are live, so it may not be possible to do in production.
The challenge is that it is not happening all the time, but we can try to replicate.
Is this what your mean?
function order_posts_asc( $query ) {
if ( is_admin() ) return;
$query->set( ‘orderby’, ‘post_date’ );
$query->set( ‘order’, ‘ASC’ );
return;
}
add_action( ‘pre_get_posts’, ‘order_posts_asc’, 1 );`Forum: Plugins
In reply to: [ReOrder Posts within Categories] Issue using ReOrder Post within CategoriesThis is the plugin that we have installed, it seems to be coming from you. `ReOrder Posts within Categories
This is a short description of what the plugin does. It’s displayed in the WordPress admin area.
Version 2.12.5 | By Aurorata V. | View details`Thanks for the debug info.
Yes, we are trying to add the new post to the beginning of the list.
Forum: Fixing WordPress
In reply to: fake users registration on wordpressCheck this link and see if you have one of the plugins in question. WordFence a great security plugin found a vulnerability.
https://www.wordfence.com/blog/2021/12/massive-wordpress-attack-campaign/
Forum: Fixing WordPress
In reply to: Auto Save Deleting PostI have verified that the posts are not scheduled posts. We have experienced to instances of the post being deleted, and both instances was the same user. And in both instances was in the middle of the night.
@bcworkz, thanks for your response.