Mixed content warning on doctype in admin
It turned out to be Wordfence causing the issue.
It turned out to be Wordfence causing the issue.
This error is generated in wp-login.php , it happens if server is unable to set cookies, this can happen due to several reasons, one of the common issue is: output being sent before setting up of cookies. Try out following options: Update WordPress core, if it is not up to date change theme, if you … Read more
I had this happen once, and the solution was actually quite odd. This may or may not help. After going through all of what I thought was obvious, it ended up being a plugin conflict with a slider revolution add-on. I racked my brain for a couple of hours, then started deactivating plugins on a … Read more
Barn2media carries a plugin for protecting specific product categories. More about that plugin can be seen on their website here When you start looking at pricing products by customer pricing levels there are several plugins out there. WPMayor.com has an article of such plugins that you can visit here I do not endorse any of … Read more
In order to override the default of per page, you can set the number to ” to instruct the query to return all categories. Add the following code to your functions.php file. add_filter( ‘get_terms_args’, ‘show_all_categories_admin_nav_menu’, 10, 2); function show_all_categories_admin_nav_menu( $args, $taxonomies ) { if( reset($taxonomies) === ‘category’ ) { $args[‘number’] = ”; } return $args; … Read more
After research I ‘ve found a plugin at this adress: https://github.com/bekarice/woocommerce-filter-orders
Hence, ajax calls that must be triggered from within the wp admin panel should be registered via the wp_ajax_{$action} hook, and ajax calls that are triggered from the frontend and have totally nothing to do with wp-admin, but are like simple REST interactions of your platform users with your platform server, should be registered via … Read more
Codex recommends adding HTTP authentication as additional layer of protection. Strictly speaking it doesn’t rely on WP and keeping things independent is not a bad idea in context of security.
I just tested this by adding the customfield ‘thumbnail’ to my post and it showed up in the dropdown. I’m using WordPress 3.2 (Multisite). What version are you using? Have you tried it without any plugins with the default theme? Does it work? As for your second question: WordPress has no global interface for editting … Read more
Sound like some configuration in your browser that keeps cookies only for a session specifically for you site. To make sure the problem is not on Wordress side, deactivate all your plugins and try again.