mrjarbenne
Forum Replies Created
-
You are my hero @otacke
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Remove Single Post Meta DataAdding a small snippet of CSS is going to be easier to maintain than creating a child theme for such a small change.
In Appearance/Customize you can add additional CSS. Here’s the snippet you would need:
.entry-footer .posted-on { display: none; }
Just in case anyone stumbles upon this thread, I found this on the Jetpack Developers site. It did the trick:
if ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'publicize' ) ) { add_filter( 'publicize_checkbox_default', '__return_false' ); }
Forum: Plugins
In reply to: [BuddyPress Docs] Moving Existing Docs into Folders@dcavins Drag and drop? Amazing!!!!! So cool. Thanks for the quick reply and the amazing plugin.
@langva you might want to check this plugin out. https://distributorplugin.com/
I haven’t been able to test this yet. I had to regress back to 6.7 because 6.8 is creating a 500 error in the editor on a Custom Post Type on my Multisite install (not WooCommerce, but not one of the packaged Jetpack CPTs either). I’m watching this ticket with interest: https://github.com/Automattic/jetpack/issues/10727
- This reply was modified 6 years, 3 months ago by mrjarbenne.
Forum: Themes and Templates
In reply to: [Apostrophe] Issue with Secondary Sidebar and Twitter WidgetI’m only seeing this in Safari. On both an iPad Air 1 on iOS 12, and on a 5th Gen iPad running iOS 11.4
Hey @swissmountainleader. Any chance you are running a multisite? The error you are seeing is similar to the one I’m seeing, which is different than the square bracket parsing thing this thread seems to be addressing.
Check out this thread, where it looks like they are working on a fix for the error you and I are seeing:
https://www.ads-software.com/support/topic/fatal-error-on-multisites/#post-10475452
Forum: Plugins
In reply to: [WP Dashboard Notes] Multisite IssuesI can confirm that something has changed and the new note button is no longer appearing in multisite. It was working previously. If I activate the plugin on a single site within the multisite it’s fine, but when activated Network wide, the menu doesn’t appear, and notes that were previously created, when the plugin was activated on a site by site basis, no longer appear.
Reverting to version 1.8.1 of the plugin fixes the issue, so I would assume given that there are different versions of WP reporting the issue, that it was a change made in 1.0.9 that has gone a bit to far in ensuring the plugin doesn’t run outside of the dashboard, hiding it completely when active Networkwide.
Is the plugin on github where we could look at the changes made between the two versions?
Events in that plugin are a custom post type. You should be able to add them as an option in the settings.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Disable Site Stats ModuleWe use this plugin to control what our end users see on Multisite. It’s overkill for what you are trying to do, but you can delete any items from lines 27-50 that you want to keep, and leave the rest (or just comment them out with // )
This will help you on this query as well: https://www.ads-software.com/support/topic/disable-feedbackcontact-form-module/
https://github.com/hwdsbcommons/block-jetpack/blob/master/class-umw-multisite-jetpack-control.php
When you changed your password using PHPMyAdmin, you probably borked your permissions. There’s an additional check on your password that checks the number of characters in the password. If your new password length doesn’t match your old password length, you will lose your admin priv. Your dashboard looks like a Subscriber role dashboard. I would look into that to fix your dashboard concerns.
Forum: Plugins
In reply to: [Menu Icons by ThemeIsle] Not showing in 4.7The update is working for me, and is playing nice with other plugins that are working within the menu modal. Thanks for the quick update.
Forum: Plugins
In reply to: [Menu Icons by ThemeIsle] Not showing in 4.7Would you consider using the method described here to fix this: https://www.ads-software.com/plugins/nav-menu-roles/faq/
I’m sure there are others who are struggling with a couple different plugins all vying for that walker hook.
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Removing the Header Featured Image and VideosIf you navigate into the Customize menu (either on the Adminbar or within the Appearances menu in the Dashboard) you’ll notice a tab for Header Media, where you can remove the header image, or video if you’ve previously added a video.