Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterThe solution then seems to show terms first and reorder the rest so pages/posts stay last and the problem won’t exist anymore? Is this a safe assumption?Unfortunately not, it’s way more complicated than that. There are multiple loops depending on keyword logics with separated queries, so each would have to be adjusted according to the previous limits of each source to account for the number of results etc.. I may have to try to figure out a way without causing too much trouble, and it may lead to some features being disabled as well.
Also, here is a wishlist item: is it possible to have a restore defaults button for a single tab?
Sure, I have taken this as a feature request. If you want to report any generic bugs which can be easily replicated or have any feature queries, feel free to post them here.Ernest Marcinko
KeymasterThat should work though, maybe putting it to the actual hook for a delay:
add_filter('admin_head', function(){ remove_action('admin_head', 'wpdreams_asp_add_mce_button'); remove_action('admin_head', 'wpdreams_asp_mce_generate_variable'); remove_filter( 'mce_external_plugins', 'wpdreams_asp_add_tinymce_plugin' ); remove_filter( 'mce_buttons', 'wpdreams_asp_register_mce_button' ); });Ernest Marcinko
KeymasterThank you!
I found the issue. Because there are inclusions set by categories, the taxonomy checkbox logic was way too strict, I have changed it here: https://i.imgur.com/TW9UC47.png
Ernest Marcinko
KeymasterYou are welcome 🙂 All the best Tom!
Ernest Marcinko
KeymasterWhere do you add the suggested custom code?
Ernest Marcinko
KeymasterThe code above is the only way without changing the files. Hooks can be tricky, the order of execution is important.
Maybe using the hooks to the mce as well could work:
remove_action('admin_head', 'wpdreams_asp_add_mce_button'); remove_action('admin_head', 'wpdreams_asp_mce_generate_variable'); remove_filter( 'mce_external_plugins', 'wpdreams_asp_add_tinymce_plugin' ); remove_filter( 'mce_buttons', 'wpdreams_asp_register_mce_button' );Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
March 20, 2024 at 2:38 pm in reply to: Index variables but only show one type in search results #47475Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterThanks!
I found the issue. It was indeed a bug, where a hook was fired too early causing a trimming of the HTML tags from the advanced title field. Luckily it was a very simple fix, I will include it in the upcoming release.
Ernest Marcinko
KeymasterHi Gösta,
I guess you are referring to the Classic editor (tinymce)?
There is no option, but I think it might be possible via some custom code. Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.
remove_action('admin_head', 'wpdreams_asp_add_mce_button'); remove_action('admin_head', 'wpdreams_asp_mce_generate_variable');Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterGreat 🙂
Ernest Marcinko
KeymasterMaybe going even higher to like 999999?
As far as I see it’s not limited programmatically. It was in older versions, but it should accept any number. If still no luck, then it’s more likely the text is not actually there processed.
In that case you could try maybe this option as well, but it’s no guarantee. -
AuthorPosts