All Questions
1,445 questions
0 votes
1 answer
18 views
Is there a way to modify the list items returned in the Appearance > Menus "Add menu items" form/box?
When searching for pages to add to the menus in the Appearance > Menus section of WordPress, users are unable to differentiate pages that have the same title. For example, searching for "news&...
0 votes
0 answers
85 views
Millions of Pending Scheduled Actions Not Processing
I’m facing a serious issue on a WordPress site hosted on Cloudways. There are millions of pending scheduled actions (Action Scheduler jobs), and they are not being processed, which is affecting ...
0 votes
0 answers
34 views
How to add publish button in menu All Posts (Wp-Admin)
I want to know if it possible, to add Publish button near Edit. For example I want to publish posts directly without clicking Edit->Publish
1 vote
1 answer
70 views
How to customize WP_Error (REST JWT authentication plugin) [closed]
🔖 Background & Environment WordPress 6.6.2 JWT Authentication plugin 1.3.4 Php 8.3 I'm using the recommended plugin JWT authentication for WP REST API, to authenticate my users. Asking /wp-json/...
1 vote
1 answer
96 views
Unable to remove action from parent theme via child theme
The Blank Slate theme (in its functions.php) adds a jQuery script to each page, which I would like to remove: <?php /* ... */ add_action( 'wp_footer', 'blankslate_footer' ); function ...
2 votes
1 answer
30 views
Modify upload directory to use post category slug in file path on multisite installation
I am using the default post type and category taxonomy to manage the content on an in-development website that is using WordPress multisite. There are categories defined like "bylaws" and &...
0 votes
1 answer
60 views
Remove 3rd party plugin notices from within own plugin
I'm trying to build a plugin (complete novice) and on the landing page of my plugin I don't get the 3rd party plugin notices / banners but with all of my sub pages I do. How can I completely remove ...
0 votes
1 answer
58 views
is there a list of actions on Wordpress
Often, I see a lot of useful functions under "add_action" for example "plugins_loaded", "admin_init", "show_user_profile", etc. Is there a website or similar ...
2 votes
1 answer
302 views
WooCommerce Webhook Action When a New Product Review was Submitted/Created
I'm looking for a WooCommerce action hook, whenever someone submits a product review via the review/comment form. Can't find anything about this in the documentation or web. I like to trigger a ...
0 votes
0 answers
110 views
Show post in elementor based on views and specific category with query id feature in elementor
I have two functions for query filter: function my_query_filter_most_views( $query ) { $query->set( 'orderby', 'meta_value_num' ); $query->set( 'meta_key', 'entry_views' ); $...
0 votes
0 answers
212 views
Submit CF7 form programmatically with WP-Cron?
We need to check daily if our CF7 form is working properly (form submission data arrives to support's email). So i need a way to programmatically submit the form on frontend. I tried with WP-Cron but ...
1 vote
2 answers
239 views
How to change content hash value, within the_block_template_skip_link action?
When my WordPress site loads up, towards the top, I have something that is generated in the DOM.... <a class="skip-link screen-reader-text" href="#content">Skip to content<...
1 vote
1 answer
39 views
Add a post when another post type is inserting
I want to add a product when service post type inserting or updating. Below is the code. It works but it keep generates products while the code executing. What is the wrong with this code? add_action( ...
0 votes
0 answers
38 views
I am trying to implement some logic on real time order sync using scheduler
I am trying to call a function using the scheduler, wp_schedule_single_event, it is successfully scheduled but the function related to the hook is not called.
0 votes
1 answer
2k views
index.php file shown when trying to load wesite
I am trying to make a website as a task for my university. I used this tutorial: https://ubuntu.com/tutorials/install-and-configure-wordpress#1-overview the first time I did it it was fine , but I ...