eSaner
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Read-only files slowing down every requestThis is probably why I get lots of errors when using WP Migrate DB Pro Media Files. It throws errors that it can’t delete the captcha images. It would be great if this could be changed 0755.
Forum: Themes and Templates
In reply to: [WP-Forge] Parent stylesheet loading after childThat’s a nicer solution. Thanks!
Forum: Themes and Templates
In reply to: [WP-Forge] Problem with update to 5.5.1.7I also had loads of conflicts updating WP-Forge.
Lots of Customizer options were added to the theme, and these were overriding child theme styles. I found it was easier to just remove the customizer styles all together:
function remove_customizer() {
remove_action( ‘wp_head’, ‘wpforge_customize_css’, 100);
}
add_action( ‘after_setup_theme’, ‘remove_customizer’ );I also noticed that functions-js got renamed to wpforge_fuctions, so if you’re using WP-Starter as a child theme, be sure to update your functions.php file. And you’ll need to manually load Font Awesome if you were using that.
I’m sure it’s confusing for people who don’t understand menu_order and find no change in their site after installing the plugin and reordering their posts. And it must be frustrating for you that they leave poor reviews without understanding how the plugin works! I think a message of some sort is appropriate, as long as it can be turned off on the settings page.
I left a 5-star review! Started using your plugin after having problems with Anything Order.
Keep up the good work.
So fast!
Forum: Reviews
In reply to: [Anything Order] PerfectBeware…this plugin can cause problems when quick editing custom post types. See this plugin support thread: https://wordpress.org/support/topic/compatibility-issues-with-types-and-admin-columns-plugins?replies=1
Forum: Plugins
In reply to: [Easy Peasy MailChimp Ajax Form] Changing form messagesThanks for the reply. It would be great to have customizable messages as a feature in a future update.
Cheers.
Forum: Reviews
In reply to: [Remove Taxonomy Base Slug] Works GreatI really just prefer consistency, and nearly every plugin I’ve ever used either puts its admin page under Settings or creates a new top-level admin menu.
Forum: Plugins
In reply to: [Constant Contact Widget] Update changelog for 1.8Great. Thanks.
Forum: Reviews
In reply to: [Remove Taxonomy Base Slug] Works GreatScratch that. Moving the settings as suggested does indeed move them, but then the settings no longer work. Too, bad. Hopefully this can be changed in a future release.
Same issue here as well. Changing the directory name fixed it. Worked on WP 3.8.1.
Forum: Plugins
In reply to: [Restrict Widgets] Displaying a widget in single postsAny update on adding this feature? It’s quite important for a site I’m developing.
Thanks for the great plugin!
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] can't install on wampI also found that just copying the folder to the wordpress plugins folder worked.
Forum: Plugins
In reply to: [Simple Staff List] Change "staff-member/" to something elseWhen changing the URL slug, you may also want to change line 113, which sets the page title in the header and the browser tab title.
‘name’ => _x(‘Staff Members’, ‘post type general name’),
Forum: Plugins
In reply to: [Simple Staff List] no bio paragraphs on individual staff pageFixed this by adding apply_filters to the $bio echo in single-stff-member.php. Now it looks like this:
echo apply_filters( ‘the_content’, $bio);