leeloo5e
Forum Replies Created
-
Forum: Plugins
In reply to: Social Access Control: Wrong Category Countcomment out this
social_access_control.php: Line 877
add_filter('wp_list_categories', array('social_access_control','filter_category_list'), 10000);
category count is set correctly again.
Forum: Plugins
In reply to: Social Access Control: Wrong Category CountCan anybody give me a hint, in which function the category count is set. So maybe I can fix it by myself.
thanks a lot.
Forum: Plugins
In reply to: Social Access Control: Wrong Category CountNobody has a solution?
What goes wrong in this Plugin?Forum: Fixing WordPress
In reply to: wp_list_cat: optioncount = 0 ???Yes, this might be. Using the plugin “Social Access Control”. When nobody is logged in, all categories post counts are different from the real one. Have to ask the developer of this plugin, i think.
Forum: Fixing WordPress
In reply to: wp_list_cat: optioncount = 0 ???still the same using wp_list_categories():
<?php wp_list_categories('orderby=name&show_count=1'); ?>
also saving some posts of this category again, does not have any effect. the category is still shown with zero posts but have 33!
What else can be done?
Thanks,
Best Regards,
Leeloo5EForum: Fixing WordPress
In reply to: WP Export/Import UploadsI made some changes in wp-admin/export.php line 190 I inserted
<wp:post_mime_type><?php echo $post->post_mime_type; ?></wp:post_mime_type>
to get the post_mime_type. In wp-admin/import/wordpress.php I inserted at line 273 the following:
$post_mime_type = $this->get_tag( $post, 'wp:post_mime_type' );
and at line 309 just inserting'post_mime_type'
to put the post_mime_type into the new wordpress database.
But the column ‘guid’ is still set to “https://www.domain.de/?attachment_id=78” or something else. I’m going crazy. I still can’t find where I have to make the changes to set the right “guid” for “attachment”s.Any Suggestions?