Plugin to create an interface for Custom Fields with flexible data content.
0
votes
2answers
63 views
How to share specific data contained in repeated fields across multiple pages
I have been using the advanced custom fields plugin and very much appreciate its abilities.
I have a page on the website i'm working on called About Us and within that page, there is contained, a ...
2
votes
1answer
218 views
Generate Advanced Custom Fields box in custom admin menu page
I have created an custom admin menu page called FCC Youtube with add_menu_page function
which has some custom fields I manually generated via HTML and PHP:
code ( just the part how I created this ...
2
votes
1answer
598 views
Loop with array of posts using 'Advanced Custom Fields' plugin
i'm getting in trouble using Advanced Custom Fields (acf) plugin. I'm using the 'Post Object' using more less this code:
<?php
/*
* View array data (for debugging)
*/
var_dump( ...
1
vote
1answer
84 views
Displaying custom field according to date
I am not sure whether this is an Advanced Custom Fields-related question, or a general PHP question, so I have also posted this to the ACF support forum, for those of you who are also looking for ...
1
vote
1answer
108 views
Sort by page information by Ascending Numbers
Basically I have a problem that I have details being pulled from advanced custom fields and I currently have them ordered by page title in ascending order.
However, instead of ordering them Ascending ...
0
votes
1answer
25 views
Get custom field from other post in carousel
Im using a plugin called wp carousel to display custom post types in a carousel in the footer in the singular view of posts. By default the plugin gets the featured image and the title of the post, ...
0
votes
1answer
24 views
ACF Plugin How to make the customer add more fields in the post?
Example: I created a field with the name, "my-field", there can add it on the post, with a button "add another item" is that I want to create a list with several items, we only need to create multiple ...
0
votes
1answer
48 views
How to autopopulate the Advanced Custom Fields from the submitted form data?
I use this code in the functions.php to autocreate a post after a form has been submitted:
<?php
add_action('iphorm_post_process_1', 'mytheme_create_wp_post', 10, 1);
function ...
0
votes
1answer
18 views
I want to add a custom field in the rss title of each post, but don't want it to be shown on the site
I've seen that other sites have done this but didn't manage to do it myself.
I have certain custom fields for each post and I want one of these custom fields to be shown in the RSS feed in the title ...
0
votes
1answer
81 views
Using a fallback image with Advanced Custom Fields?
I'm currently using the advanced custom fields plugin on a wordpress site that I'm developing and it is proving very useful.
I bought the repeater addon which had helped me generate a list of staff ...
0
votes
1answer
178 views
Get the label from ACF checkbox
I feel like this should be easy but for some reason I can't get this to work?
I have several similar but distinct colors in list of products. I need to be able to grap the label to show to the end ...
0
votes
1answer
115 views
Custom size for image uploaded to custom field in user profile?
I'm using advanced custom fields and set an image upload field in user profiles. I'm using this image a few places on the website and need to set a custom size for it on some pages.
If I set ...
0
votes
1answer
46 views
Custom Fields help
After read a lot in a lot of sites, finally I was able to do something similar what I was trying (read a lot because I don't know code at all), is the follow:
I want to use a background image for my ...
0
votes
1answer
461 views
Use ACF to display a customizable WooCommerce product add to cart button
WooCommerce is notorious for not being all that customizable (except for templating that is a seriously convoluted process).
So, I am attempting to use Advanced Custom Fields (plugin) to create an ...
0
votes
1answer
91 views
Custom Post Type Loop breaking php
My While loop is breaking the rest of my PHP on the site. Below I put my code that is working but again breaking the rest of the site. Any Suggestions
$query = array( 'post_type' => 'slides', ...
0
votes
1answer
116 views
Styling first post using Advanced Custom Fields
I'm working with a company's About page. I created a custom post type for "Employees", and am using the Advanced Custom Fields plugin to create simple meta boxes for name, title, image, and bio.
The ...
0
votes
1answer
75 views
Hide/Show panel not showing - ACF
I came across strange thing. I have been using ACF for a quite a long time now and I love this plugin, but I tried to use it for new project and when I create group of fields for my pages show/hide ...
0
votes
1answer
615 views
Custom field with Types: get custom field's value label (of type select)
We use the Types plugin to setup different custom products for a client. A certain custom post (product) contains some custom fields which is a drop-down select. When creating a new product of this ...
0
votes
1answer
319 views
Advanced Custom Fields Array Population
I'm trying to populate a ACF select field with an array from a custom $wpdb->get_results call, which is essentially a list of categories from my db.
I have the following:
global $wpdb;
...
0
votes
1answer
119 views
Adding class to last list item? Not WP generated
this one has been getting me for a while. At the moment I have a repeater field with Advanced Custom Fields:
<ul id="servicelist" class="clearfix">
<?php if(get_field('homepage_service')): ...
0
votes
1answer
85 views
Migrated from localhost to server and cannot get custom_fields content anymore
So i migrated from localhost to my server, everything is working but my plugin cannot get the custom fields data anymore.
I get my custom fields this way:
$customs = get_post_custom($nodeid);
...
-1
votes
1answer
80 views
How can i get custom field to apear on my wordpress admin area (post_type)
I had an issue with WordPress posts_type , the custom fields which are normally at the bottom of each post page were missing.
At the top of your WordPress post page you will see a small grey box that ...
2
votes
0answers
1k views
Qtranslate + Advanced Custom Fields: how to have a multilanguage wysiwyg editor?
This is my setup:
Wordpress: 3.4.2
qTranslate: 2.5.32
Advanced Custom Field: 3.5.1
i've also installed qTranslate extension: 1.1.1 but I don't know how/if it works...
How can I have a ...
1
vote
0answers
33 views
Copying Custom Meta Values from existing post to a duplicate post
I'm trying to revise an existing WP plugin BU Versions to accept different custom meta field values from items I've set-up using the Advanced Custom Fields (ACF) plugin.
BU Versions will copy over ...
1
vote
0answers
72 views
Unique key for each row in a repeater field
Is it possible to have a unique key for each sub fields in a repeater field? I don't want to use the array index, because the array index can be changed, when adding new rows between existing rows.
I ...
1
vote
0answers
27 views
Find the first occurrence of a custom field
I was wondering if anyone can help. I'm using the advanced custom fields plugin and I'm trying to find the first occurrence of a custom field by date, so really the newest post which has a custom ...
0
votes
0answers
27 views
Wordpress metaboxes sorting and replication
I am not an experienced developer with Wordpress. I'm working on the development of a wordpress app for a manufacturing process. Every product has certain no.of stages and a single stage can be ...
0
votes
0answers
15 views
Adding Search Filter on Informational Website
Background: Say I am creating a website for a popular mobile brand. On this site I will have "informative" articles.
Every mobile will also have a short overview, followed by specs and images of the ...
0
votes
0answers
32 views
Advanced Custom Fields Post Object
I am looking to create a custom proposal system with WP and ACF. I created 3 custom post types.
Proposal Objectives
Proposal Items
Proposals
I created some custom fields in ACF to include in ...
0
votes
0answers
21 views
get_next_post() not working after adding a category with ACF
I work on a wp site with various categories of products. For any single product, this was the code which would yield links to next and previous product:
<?php
get_header();
global $post;
$next = ...
0
votes
0answers
34 views
Search with meta_query and tax_query
I'm working on a little database for series based on wordpress. I've implemented a custom post type called "anime", some taxonomies (Genre, a_types..) and a lof of customfields. (based on acf). Now ...
0
votes
0answers
115 views
Advanced Custom Fields and Select2 or Chosen jquery
I'm using "Advanced Custom Fields" plugin and I'm trying to use Select2 or Chosen with the post_object field to provide a nice interface for a multiselect.
The only documentation I have found is ...
0
votes
0answers
44 views
Check if meta_key exists in wp_list_pages
I have added a custom field (using Advanced Custom Fields plugin) to a page allowing you to show/hide it with a simple checkbox, i want to filter out these pages if a user is not logged in so i am ...
0
votes
0answers
69 views
ACF - get fields from group
i have been using this code to get all fields from a specific group:
<?php
$GroupOrPostSlug = 'acf_specialgroup';
//or insert the ID of your fields Group.
$groupID='';
global $wpdb;
if ...
0
votes
0answers
68 views
How to create array of images and titles
I'm trying to find the best way to create a page that has different images and titles of the image on a page within Wordpress so that a user can just add the image and the title and it will then add ...
0
votes
0answers
100 views
Combine Two Plugins to Filter by Custom Taxonomy and Custom Field
I'd like to give my users the possibility to filter the posts by Categories, Tags, and Custom Field values.
Search/filter form would be multiple fields:
Field One
City:[categories with a parent ...
