Plugin that creates custom fields.
0
votes
1answer
20 views
Advanced custom fields - Get the file name
I'm using ACF to return the URL of a file for download in a repeater field. At present I'm using this to return the file url, is there any way to just get the file name?
<?php ...
0
votes
1answer
16 views
WordPress ACF - Date picker
So basically I have an events page set up with 'start date' and 'end date'.. In the back end i have Advanced Custom Fields jquery Date Picker to select these dates.
The setup of these fields are as ...
0
votes
1answer
25 views
Use Advance Custom Fields to fill text widget
I have a custom WYSIWYG field setup in Advance Custom Fields Plugin and I want to show that content in a text widget on the sidebar / widgets. I've tired the shortcode and the php code but no luck. ...
0
votes
1answer
26 views
Issues with quicksand portfolio setup
So I am using the jQuery quicksand plugin in combination with prettyphoto and tooltipsy.
My php template:
<aside id="work_nav">
<ul class="work_tags_nav">
...
0
votes
1answer
21 views
Advanced custom fields - pulling data in from another page
Hello I am using advanced custom fields and I am trying to pull data from multiple pages and display it on another
I set up a relationship field called "data", and then on page X where the ...
3
votes
3answers
85 views
Compare two numeric custom fields
I use Advanced Custom Fields and have a custompost-type "matches". This post-type contains two fields "goals-made" and "goals-against".
I want to query wordpress to show only the matches that were ...
1
vote
1answer
23 views
WP_User_Query pulling ACF to loop
I'm using following code to display my users on template
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$paged -= 1;
$limit = 100;
$offset = $paged * $limit;
$args = ...
0
votes
1answer
86 views
Advanced Custom Fields: query posts filtered by multiple field values
I have the following:
custom post type: q-and-a
custom taxonomy: q_and_a_category
taxonomy terms: design, engineering, project-management
I'm creating three separate pages that filter the custom ...
0
votes
2answers
22 views
Advanced Custom Fields repeter field expiration
Hope someone can help me to get it done!
I'm developing a small online-courses website for a my friend and got stuck with ACF repeater field!
Here's my code to display the course dates table:
...
0
votes
0answers
47 views
One-time bulk MySQL copy post_date values to Advanced Custom Field (date field)
Disclaimer
First of all let me say this is probably mostly MySQL related and unfortunately I'm nearly a total newbie on database language and commands.
The problem
Situation is a site running ...
0
votes
0answers
28 views
Advanced Custom Fields: custom field import/export
When I import the ACF custom fields from my test site to live site, the flexible content field doesn't get imported. I need to manually re-enter each inner field of the flexible content.
Is there any ...
0
votes
1answer
42 views
Query based on custom fields start and end date
I have a custom post type called Events, with 2 custom fields, start date and end date. These fields are stored using a timestamp in the database. I want to create a custom query based on these 2 ...
1
vote
3answers
57 views
Advanced Custom Fields - Get custom fields from parent page
I'm using Advanced Custom Fields making it easier for my client to manage his content.
On all of my child- and parent pages i would like to have the same header image and sidebar information.
...
0
votes
1answer
22 views
Adding a ACF fields to a WooCommerce Attribute
I am trying to add some ACF fields to the WooCommerce Attribute Creator, but I cannot find which rule to add it to. I can find attributes I have already created (in Taxonomy Term Add/Edit), but it ...
0
votes
1answer
38 views
Advanced custom field boolean value in custom post type
I'm using the Advanced Custom Field (ACF) plugin in a Custom Post Type (CPT).
I have field group in ACF that contains a Image field and true/false field called 'home_offer'.
I'm using this ACF in a ...