aosmichenko
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Custom post type searchThank you very much! Issue is solved.
Forum: Plugins
In reply to: [Relevanssi Light] Order by date not workingFound the issue, The code from other thread, needs to be slightly updated
add_action('init', 'ir_search_hook'); function ir_search_hook() { remove_filter( 'posts_search_orderby', 'relevanssi_light_posts_search_orderby', 10, 2 ); add_filter( 'posts_search_orderby', 'rl_posts_search_orderby', 10, 2 ); function rl_posts_search_orderby( $orderby, $query ) { if ( isset( $query->query['s'] ) ) { $orderby = 'post_date DESC'; } return $orderby; } }
Forum: Plugins
In reply to: [Relevanssi Light] Order by date not workingHere is what I found in my query, is that correct?
ORDER BY relevance DESC, wpim_posts.post_date DESC
Thanks!
Okay, I was able to figure it out. Could you please fix that the default 1st value is shown on conditional field update right now I am seeing it as not selected
Smaller is working with one field, but we are not interested in smaller option we need this exact amount(
I have create phpinfo for you https://spenger-bettenstudio.de.w01a5c1f.kasserver.com/i.php
Let me know what you need to debug it, if you can contact me would be easier I think to debug it in real time.
Hello my product is not working with even with Legacy support checked
https://spenger-bettenstudio.de.w01a5c1f.kasserver.com/product/boxspringbett-jazz-mit-bettkasten/Forum: Plugins
In reply to: [Better Click To Tweet] Error: the plugin does not have a valid headerI am also experiencing this problem, but I think it leaves a bit deeper than that answer. Here is how I solved it https://take.ms/S9gGP
Just move this 4 lines of code below the ABSPATH check, and it did the trick for me.Forum: Plugins
In reply to: [Better Click To Tweet] Error: the plugin does not have a valid headerThis was already answered https://www.ads-software.com/support/topic/the-plugin-does-not-have-a-valid-header-154/
This is not PHP errors, this is report from Code Sniffer, developer will understand what it is.
Hello,
Here is VIP hosting https://vip.wordpress.com/ it is provided by Automattic the company behind WordPress core. They are strictly following WordPress coding standards and the report I sent you are issues in your code according to this standards. if you can fix it that would be great and many people who are using your plugin would be able to use it on the WordPress VIP hosting.
Thanks,
AlexForum: Plugins
In reply to: [Yoast SEO] Missing Yoast Dashboard link‘wpseo_manage_options’ => true,
is required for SEO page to appear back again in admin panel this issue is valid for custom capabilities websitesForum: Plugins
In reply to: [Yoast SEO] Missing Yoast Dashboard linkHello,
Do you guys help only premium users? I have 7 websites using your plugin and all of them lost admin settings page! Whats wrong with latest update?!
Forum: Fixing WordPress
In reply to: WP inserting nbsp; characters for last space in post titlesHello everyone,
you have to add this into your functions.php
function after_theme_setup_23() { remove_filter( 'the_title', 'widont' ); } add_action( 'after_setup_theme', 'after_theme_setup_23' );
this will disable filter which is doing it.