Nikita_Sp
Forum Replies Created
-
This error (additional GET parameter) appears in rel canonical only on the Archive pagination page.
How should I remove it?- This reply was modified 6 years, 1 month ago by Nikita_Sp.
The thing is I’ve already disabled that option in settings to prevent SE index this urls.
So you wont see it. Maybe I could provide more info about website?Thanks.
Hi!
Thanks, really appreciate that.
Waiting for an update.Thanks
Hello, anybody here?
Forum: Plugins
In reply to: [Contact Form 7] Recaptcha javascript errorSeems I’ve fond a solution.
On my client’s website the link for recaptcha (https://www.google.com/recaptcha/api.js?render=SECRET-KEY&ver=3.0) responds 400 Bad request.
Seems he didn’t add the domain to the allowed one.But, if you’re telling that your solution is working, maybe you have some issues and conflicts in your custom code?
Thanks.
Добрый день, Андрей!
Оба плагина генерируют искусственный файл sitemap.xml, т.е. по факту добавляют переадресацию с адреса your-domain.com/sitemap.xml на свой скрипт, который “на лету” генерирует карту сайта или выдает ее закешированную (ранее созданную) версию.
При отключении плагинов – пропадает переадресация как и сама карта.
Скорей всего, я полагаю, у вас в инструментах для вебмастеров добавлены sitemap.xml и если они отсутствуют их необходимо удалить прямо в кабинете вебмастера.Спасибо
UPD: I’ve checked via another browser through VPN and seems it works, but when you’re logged from some IP it won’t block it from another browser.
Seems it’s ok.
Thanks.Forum: Plugins
In reply to: [Optimus - WordPress Image Optimizer] Fatal error after an updateIt works.
Thanks.Forum: Plugins
In reply to: [Optimus - WordPress Image Optimizer] Fatal error after an updateWordPress 4.9.5
PHP 5.4.45Forum: Plugins
In reply to: [Polylang] Polylang with Custom Post type UI pluginHi, @drymartini!
Solution:
1) Export CPTUI custom post types and insert them into your theme functions.php.
2) Remove CPTUI custom post types, and the plugin
3) Using pomo editor add translations to your theme functions.phpThat’s all.
I hope it helps ??Forum: Plugins
In reply to: [ReOrder Posts within Categories] Some limit of posts in categoryHi @aurovrata,
As I already wrote – it’s line 209.
Do you mean @aurelien is a real author? Does he read this forum or I need to contact him other way?My second question is:
The plugin works this way: add callback after post save/delete and add post_id and taxonomy_id’s to external table.
Than when you sort them on ReOrder page it takes all posts from selected category, but we working only with posts that was added to external table. So if you add posts BEFORE plugin install it won’t work.
What I recommend to do and want to rewrite the plugin:
Remove all callbacks and just get all posts on ReOrder page and simply INSERT them ALL to this table. Of course before INSERT you need to DELETE rows from the table WHERE tax_id = current one.Does this explanation make it cleaner?
Thanks.Forum: Plugins
In reply to: [ReOrder Posts within Categories] Some limit of posts in categoryI’ve found why it’s not adding to the table (line ~209).
I’ve got non-hierarchical taxonomy. And that’s why it’s not working, even with the line:add_filter('reorder_post_within_categories_and_tags', '__return__true');
You use it only for outputting on settings page and didn’t use in if statement:
if ($taxonomie->hierarchical == 1 && is_array($orderedSettingOptions) && in_array($taxonomie->name, $orderedSettingOptions)) {
I’ve just comment “$taxonomie->hierarchical == 1” and seems works fine.
Please, reply a few questions:1) Why you don’t like non-hierarchical, what is the issue with them, maybe just remove this option at all?
2) What do you think about straight scanning of posts on ReOrder page instead of callbacks?Thanks!
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Some limit of posts in categoryAs I see (line ~364), you UPDATE this table and posts that was added AFTER you have sorted once are NOT in this list.
So if I had 4 posts in the category – it just update 4 rows even if you already add a few new posts.
____________________________
Also I saw “savePost_callBack” function, but why you create it?
Seems it should prevent such things… continue for searching.What would I do:
– remove savepost callback
– admin reorder page: load all posts from selected taxonomy
– on saving: remove all rows for this tax, upload new rows with all postsMaybe I’m wrong?
Please, reply.THanks.
Forum: Plugins
In reply to: [ReOrder Posts within Categories] Some limit of posts in categoryHi!
Seems I’ve found a bug.
When I save the post order it inserts only 4 rows and doesn’t save the osers to table ‘nr_reorder_post_rel’Continue searching…
Update soon.Forum: Plugins
In reply to: [ReOrder Posts within Categories] Russian translate