M3
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Problem Envira GalleryAnd the extra Author column is only added and displayed for the Envira Gallery admin page when I use Admin Columns to add an ID column for Envira Gallery and when the Envira Albums add-on also is activated.
Forum: Plugins
In reply to: [Admin Columns] Problem Envira GalleryI have set up a local WP 4.4.1 installation with only Envira Gallery and Admin Columns plugins and everything is OK as you also can see. But when you also install the Envira Albums add-on plugin you get this extra Author column in Envira Gallery that Admin Columns doesn’t recognize. I will notify the developer of Envira with a reference to this topic and see if he has any suggestions.
Forum: Networking WordPress
In reply to: Creating Draft sites visisble to logged in usersI’m using this plugin. The only one I found which respond with the correct status code depending on the coming soon or maintaince setting.
Forum: Plugins
In reply to: [Yoast SEO] Multisite sitemap broken on subsites, main site is okYou should also be able to remove the site maps from “Non-trailing slash pages”.
sitemap(_index)?\.xml(\.gz)? ([a-z0-9_\-]+)?sitemap\.xsl [a-z0-9_\-]+-sitemap([0-9]+)?\.xml(\.gz)?
Forum: Plugins
In reply to: [Yoast SEO] Multisite sitemap broken on subsites, main site is okSame problem but on a normal website. Unfortunatly no answers from the W3TC plugin developer.
https://www.ads-software.com/support/topic/bug-yoast-sitemaps
Forum: Plugins
In reply to: [Yoast SEO] Hide SEO Columns@dfactory Many thanx for a solution that finally works!
Forum: Networking WordPress
In reply to: Display No Network Title In ToolbarMany thanx for your code suggestion. It was the “Network Admin” toolbar menu I was trying to change. So this is what I’m using right now.
//* Disable toolbar site name add_action( 'wp_before_admin_bar_render', 'disable_site_name' ); function disable_site_name() { global $wp_admin_bar; if ( is_network_admin() ) { $wp_admin_bar->remove_menu( 'site-name' ); } }
//* Enable toolbar network title add_action( 'admin_bar_menu', 'enable_network_title', 30 ); function enable_network_title() { global $wp_admin_bar; if ( is_network_admin() ) { $wp_admin_bar->add_menu( array( 'id' => 'network-title', 'title' => __('Network Admin'), 'href' => network_admin_url(), ) ); $wp_admin_bar->add_menu( array( 'parent' => 'network-title', 'id' => 'network-sites', 'title' => __( 'All Sites' ), 'href' => network_admin_url( 'sites.php' ), ) ); $wp_admin_bar->add_menu( array( 'parent' => 'network-title', 'id' => 'network-updates', 'title' => __( 'Updates' ), 'href' => network_admin_url( 'update-core.php' ), ) ); $wp_admin_bar->add_menu( array( 'parent' => 'network-title', 'id' => 'network-settings', 'title' => __( 'Settings' ), 'href' => network_admin_url( 'settings.php' ), ) ); } }
#wpadminbar #wp-admin-bar-network-title>.ab-item:before { content: '\f319'; font-size: 18px; position: relative; top: 3px; }
Forum: Plugins
In reply to: [W3 Total Cache] CDN und SRCSET@ardalanme Many thanx for the fix. From my testing it looks like it’s working.
Forum: Plugins
In reply to: [Admin Columns] Avatars in commentsMany thanx for the quick fix!
Forum: Plugins
In reply to: [English WordPress Admin] Automatically Enable EnglishNo problem. I thought it didn’t work first but I realized this must be the case. Keep up the good work!
Forum: Plugins
In reply to: [English WordPress Admin] Automatically Enable EnglishIs it a known limitation that you always get the local languange in dashboard when you first login and then the admin pages switch to english if you use the code snippet above?
Forum: Plugins
In reply to: [Admin Columns] Avatars in commentsThanx for the confirmation. Good to know that this problem is on your radar. Keep up the good work!
Forum: Plugins
In reply to: [W3 Total Cache] Bug Yoast SitemapsAs the headline says I’m using Yoast SEO plugin to the create site maps and W3TC even has an built-in extension to comply with Yoast SEO.
W3 Total Cache should not convert the XML declaration to HTML comments in the cached site maps or remove “X-Robots-Tag: noindex, follow”.
And yes I had to disable caching of the site maps via the exclusion box as a regex since the site maps are displayed in Google search results because of this.
Forum: Plugins
In reply to: [W3 Total Cache] Bug Yoast SitemapsIs there any solution to this problem? I had to disable caching of sitemaps.
Yes same problem with all sites using W3TC. Will there be a fix soon?
<img width="1024" height="768" src="https://cdn.website.com/wp-content/uploads/IMG-1024x768.jpg" class="alignleft post-image entry-image" itemprop="image" srcset="https://cdn.website.com/wp-content/uploads/IMG-1024x768.jpg 1024w, https://website.com/wp-content/uploads/IMG-600x450.jpg 600w, https://website.com/wp-content/uploads/IMG.jpg 1280w" sizes="(max-width: 1024px) 100vw, 1024px">