How To Delete Row From Repeater ACF Using PHP

In order to delete a row from repeater ACF using PHP, you have to open functions.php and use the following code. In the below example $repeater_key is the key of the element that was clicked. You have to check if the keys start from 0, if they do, you will have to increment it by… Continue reading How To Delete Row From Repeater ACF Using PHP

How To Get Posts In WordPress by Repeater Value

In this tutorial we will get all posts from a custom post type which have a certain key and value from a repeater acf field. To do this we will create a custom function where we will check what we need in order to get the rights posts.  Get Posts In WordPress by Repeater Value… Continue reading How To Get Posts In WordPress by Repeater Value

How To Create Woocommerce Tabs For Product Page

In this tutorial we will create new woocommerce tabs for product page, which will be administrated from admin. We will use ACF because is one of the best plugins for WordPress at the moment. To achive that, we will create few custom fields for our product page, and then we will create a hook to… Continue reading How To Create Woocommerce Tabs For Product Page

How to Add Custom ACF Fields to User Columns in WordPress

In this tutorial I will show you the code you need to add in your functions.php in order to add new acf fields to user columns in wordpress admin panel. The best part here is after you add the new column in users listing, you will be able to search by this field too. Add… Continue reading How to Add Custom ACF Fields to User Columns in WordPress

How To Search by SKU In WordPress – ACF Query

In this tutorial I will show you what code you have to implement in your functions.php in order to make Post Object acf field search by a SKU. In this example we will use sku for a post object type product. Anyway using the same code you can add any type of custom query you… Continue reading How To Search by SKU In WordPress – ACF Query