davidki
Forum Replies Created
-
There are two tools about personal data in WordPress.
1. Export personal data
2. Erase personal dataIt is about two years now when I wrote notice for Export personal data, that I found that in WordPress notification e-mails which are send upon request user personal data, there are presented renamed secure login page slug, which is created by your plugin.
You fixed it. So now the link in the e-mail which is sent after user requested personal data looks like this:
Everything works well even with using secure login page slug feature.
But link in the e-mail which is sent after user requested Erase personal data still contains secure login page slug. It looks like this:
I don’t see any reason why it shouldn’t work with link contains wp-login.php instead of secure login page slug, when it works well in the first case.
Please, try to test tools “Export personal data” and “Erase personal data”.
Thank you,
David
Thank you, Rolf.
Now it works great,
David
Hey Rolf,
I tested it and now I can confirm, that even button “Delete expired transients” in the Transients Manager plugin properly delete expired transients and everything works well.
But deleting expired transients with your plugin just do not work properly!
Please, try to fix it. Otherwise your plugin is very needed.
Thank you,
David- This reply was modified 5 years, 7 months ago by davidki.
Hey Rolf,
It’s not about “Does not expire” state, which is probably from Transients Manager plugin and it shows that transients which were expired have not been deleted properly.
I found this bug before I installed plugin “Transients Manager” which only confirmed that something is wrong with your plugin regarding deleting expired transients.
So when I, in your plugin, select “Do not delete transients” everything works great. And after expiration of transients another ones are created and data are updated.
But when I, in your plugin, select “Delete expired transients”, updating of my data stops! After expiration of transients, new ones are not created and the data stops updating.
So problem is somewhere in your plugin.
When I click on the red “Delete” in the Transients Manager plugin, transients are properly deleted and my functions create new ones transients and everything works well (until your plugin delete this transients after their expiration).
Right now I can’t tell if the button “Delete expired transients” in the Transients Manager plugin works as well, because my transients have 24 hours of expiration.
So I can test it and write you tomorrow, if you think that it is really important information for you.
I think it’s absolutely clear that problem is somewhere in your plugin and it’s “Delete expired transients” function.
David
- This reply was modified 5 years, 7 months ago by davidki.
I use this plugin https://cs.wordpress.org/plugins/transients-manager/.
It shows “Does not expire” state after deletion with your plugin for such transients.
Yes, thank you.
Forum: Plugins
In reply to: [Taxonomy admin filter] Compatibility with Gutenberg EditorHello, thank you for your comment. I wrote you an e-mail.
Forum: Plugins
In reply to: [Taxonomy admin filter] Compatibility with Gutenberg EditorHello I found another incompatibility with your plugin and Gutenberg.
But right now I see that you have closed your plugin taxonomy-admin-filter in wordpress repository.
Will you continue to maintain this plugin or not, please?
If yes, here is the problem which I found.
When is your plugin activated, for all taxonomies which are selected in your plugin setting, there are displayed meta box with filter but for all post types.
For example:
I have custom taxonomy “kategorie” which is created for “page” post type.But this taxonomy “kategorie” is displayed in page and also in posts.
So it means that javascript in your plugin doesn’t adjusts existing meta box with list of taxonomy terms, but your plugin create another new meta box with filters.
Forum: Plugins
In reply to: [Taxonomy admin filter] Compatibility with Gutenberg EditorThank you for your work. It works now.
David
Hello Sybre. Is this functionality working now?
Originally I asked you for that more than 8 months ago.
Thank you, David
Forum: Plugins
In reply to: [GDPR Personal Data Reports] Form protectionHello. Thank you for your plugin.
Please, How the situation with adding reCAPTCHA with the I am human checkbox looks like?
Can you add it this year, please?
Thank you. David
Thank you for your reply Sybre.
I’ll keep track of your plugin and wait for the functionality I need.
I have one more question bout breadcrumb navigations. I tried to install your plugin and I found some mention of breadcrumb.
But I don’t understand If there is a way how to display breadcrumb navigation in the template with some piece of code like it is possible with Yoast plugin.
Hi Jim and thank you for your reply.
I tryed Custom Post Type Permalinks plugin, but it doesn’t allowed me to do what I need. I mean to have hierarchical custom post type without hierarchical permalinks.
I have custom post type “reviews”
I created these posts in this “reviews” post type:
– home appliances
– laundry
– washing machines
– AEG Lavamat 85470SLBacause of hierarchical structure, the URL of “AEG Lavamat 85470SL” post is
I need that this URL will look like this:
But there will still be visible hierarchical structure in breadcrumb navigation.
I spent all Saturday looking for a solution.
And right now I am able to have this short URL
https://www.domain.com/reviews/aeg-lavamat-85470sl/by using this code in my functions.php file:
function reviews() {
add_rewrite_rule(
‘^reviews/([^/]+)/?$’,
‘index.php?post_type=reviews&name=$matches[1]’,
‘top’
);}
add_action( ‘init’, ‘reviews’, 0 );
function bvt_reviews_flatten_hierarchies( $post_link, $post ) {
if ( ‘reviews’ != $post->post_type ) {
return $post_link;
}
$uri = ”;
foreach ( $post->ancestors as $parent ) {
$uri = get_post( $parent )->post_name . “/” . $uri;
}return str_replace( $uri, ”, $post_link );
}
add_filter( ‘post_type_link’, ‘bvt_reviews_flatten_hierarchies’, 10, 2 );But problem with this solution is that both of URLs exists on my websites.
and also long URL:
https://www.domain.com/reviews/home-appliances/laundry/washing-machines/aeg-lavamat-85470sl/And it is not good for SEO to have 2 URLs for one page.
I need some rewriting rule that automatically redirect from long URL https://www.domain.com/reviews/home-appliances/laundry/washing-machines/aeg-lavamat-85470sl/
to short URL
I know I can use some redirect plugin and create such redirect by hand. But it need to rewrite automatically because I will have thousands posts.
I am not programmer and I can not figure it out such rewriting rule by myself.
If you could help me with such rewriting rule, I would be very gratefull.
Thank you for your time, Jim.
David
- This reply was modified 7 years, 4 months ago by davidki.
Ok, thank you
I tried it, but it doesn’t work for me. But I finally I resolved it. My custom post type “obchod” must be without checked “Hierarchical” . When I unchecked it, the
checkmark-style buttons appeared on list of post for that post type.But is there a way how to get it work even if custom post type will be “Hierarchical” ?