We are a WordPress theme development team selling themes under the name Pixelwars on ThemeForest. We have been using WPForms in our theme demos for a long time, and we are very happy with the plugin. It’s our go-to solution for contact forms, and we also recommend WPForms to our customers.
However, we have noticed a UI issue in the WordPress admin panel when WPForms is activated.
On the “All Forms” page, the “Screen Options” and “Help” buttons in the top-right corner are not aligned properly. Instead of appearing side by side, they are overlapping, which affects the admin panel’s usability.
This issue does not occur on other WordPress admin pages, so it seems to be caused by some CSS rules applied specifically to the WPForms admin interface.
Issue Details:
Here is a screenshot of the issue: https://i.ibb.co/Cp9fCCMd/wpforms-overview.png
Since WPForms is an important part of our themes, we would really appreciate it if you could check and fix this issue in an upcoming update. Let us know if you need any additional details.
Thank you for this great plugin!
]]>Here is the code for my CPT
function cptui_register_my_cpts_faqs() {
/**
* Post Type: FAQs.
*/
$labels = [
"name" => esc_html__( "FAQs", "custom-post-type-ui" ),
"singular_name" => esc_html__( "FAQ", "custom-post-type-ui" ),
];
$args = [
"label" => esc_html__( "FAQs", "custom-post-type-ui" ),
"labels" => $labels,
"description" => "",
"public" => true,
"publicly_queryable" => true,
"show_ui" => true,
"show_in_rest" => true,
"rest_base" => "",
"rest_controller_class" => "WP_REST_Posts_Controller",
"rest_namespace" => "wp/v2",
"has_archive" => false,
"show_in_menu" => true,
"show_in_nav_menus" => true,
"delete_with_user" => false,
"exclude_from_search" => false,
"capability_type" => "post",
"map_meta_cap" => true,
"hierarchical" => false,
"can_export" => false,
"rewrite" => [ "slug" => "faqs", "with_front" => true ],
"query_var" => true,
"menu_position" => 5,
"menu_icon" => "dashicons-editor-help",
"supports" => [ "title", "editor", "thumbnail", "custom-fields", "author" ],
"taxonomies" => [ "faq-categories" ],
"show_in_graphql" => false,
];
register_post_type( "faqs", $args );
}
add_action( 'init', 'cptui_register_my_cpts_faqs' );
Here is code for Taxonomy
function cptui_register_my_taxes_faq_categories() {
/**
* Taxonomy: FAQ Categories.
*/
$labels = [
"name" => esc_html__( "FAQ Categories", "custom-post-type-ui" ),
"singular_name" => esc_html__( "FAQ Category", "custom-post-type-ui" ),
];
$args = [
"label" => esc_html__( "FAQ Categories", "custom-post-type-ui" ),
"labels" => $labels,
"public" => true,
"publicly_queryable" => true,
"hierarchical" => true,
"show_ui" => true,
"show_in_menu" => true,
"show_in_nav_menus" => true,
"query_var" => true,
"rewrite" => [ 'slug' => 'faq-categories', 'with_front' => true, ],
"show_admin_column" => false,
"show_in_rest" => true,
"show_tagcloud" => false,
"rest_base" => "faq-categories",
"rest_controller_class" => "WP_REST_Terms_Controller",
"rest_namespace" => "wp/v2",
"show_in_quick_edit" => true,
"sort" => false,
"show_in_graphql" => false,
];
register_taxonomy( "faq-categories", [ "faqs" ], $args );
}
add_action( 'init', 'cptui_register_my_taxes_faq_categories' );
]]>There is a weird behavior occurring with Event Tickets on a website we manage. We disabled all the plugins and enabled them one by one. When we enabled Event Tickets, the Screen Options tab disappeared.
WordPress is on the latest version. The only error on the front end is related to the Pro version of The Events Calendar:
To begin using Events Calendar Pro, please install (or upgrade) and activate Events Calendar Pro (7.3.0+).
There are no other warnings or critical messages related to the Event Tickets plugin. Has anyone had a similar problem? How can we fix it?
Best regards,
Yeltsin
Under “Stock location” is text – “You need to add a stock location to this product” But can’t do that, because don’t see place for it.
]]>https://share.zight.com/04unvrjD
]]>Screen options are not showing on the single post editor (they are showing elsewhere).
I’ve disabled all plugins and set Twenty twenty-four default theme. I cleared browser cache and disabled all addons (Chrome). I am using the updated version of WordPress (6.4.2). Nothing helps. Screen options are still not showing on the post editor. Does anyone have any suggestion to tackle this issue.
Thank you in advance. p
I observed that after activating the Yoast SEO plugin, I got this weird display on my blog dashboard. I tried to deactivate other plugins, but what I observed is that I only get the weird display when I activate the Yoast plugin. Please help
https://prnt.sc/B2bNKZ-4Dazr
]]>Hi there,
Unfortunately I face an issue regarding my site. on my WordPress dashboard the page where my posts are. I see my posts titles written vertically.
So I went through deactivating all my plugins and reactivate them one by one.
finally I discovered that it’s related a Yoast plugin. Yoast is one of my favorite plugins and can’t get the require support as I’m a free plan subscriber and still can’t afford the premium one.
Below an image that illustrates the issue in question.
So I hope find support here.
Have a wonderful day,
Mohamed