Plugin to create an interface for Custom Fields with flexible data content.
1
vote
1answer
137 views
Faking the “onSave” event
While a specific use-case, I believe this may benefit others.
I am using TurboCSV to mass-import a number of posts into WordPress (which it is doing wonderfully so far). Within that import, I am ...
0
votes
1answer
217 views
Display the latest content from subpages of another page
I know how to display content from one page on another page. Here is the code I use to display the last three video-titles, submitted to my video-page, on another page (using Advanced Custom Fields ...
0
votes
1answer
196 views
Vimeo thumbnails
I use Advanced Custom Fields to show Vimeo videoes on a site I am creating for a client - The client pastes the vimeo ID (the last letters in the url) in a field, and the video is shown. But I would ...
0
votes
1answer
280 views
Vimeo thumbnails [closed]
I use Advanced Custom Fields to show Vimeo videoes on a site I am creating for a client - The client pastes the vimeo ID (the last letters in the url) in a field, and the video is shown. But I would ...
0
votes
1answer
373 views
How do I retrieve an image's width and height using Advanced Custom Fields?
Using a get_field('sampleImage'), how would I go about in order to get the image's width and height using the ACF plug-in? I need to be able to print out the img tag with width and height attributes ...
0
votes
1answer
349 views
Pulling Advanced Custom Fields from other pages
Basically I am using Advanced Custom Fields and have an ajax tabbing system that works with the ACF.
The current set up is below:
<ul class="css-tabs">
<li><a class="current" ...
1
vote
3answers
149 views
Saving custom fields to a custom taxonomy
I am trying to create a custom field for a custom taxonomy. update_post_meta works great with posts. Taxonomies are not posts so this won't work.
<?php update_post_meta($post_id, $meta_key, ...
0
votes
1answer
763 views
How to get both image attachment ID and url
I am using advanced custom fields repeater-field to get the image url like this:
<?php the_sub_field('billede'); ?>
But I also want to get the attachment ID for the image, to be used for ...
-5
votes
1answer
971 views
Advanced Custom Fields: how do I check to see if a value is set in an field?
How do I check and see if a value is set in an Advanced Custom Field?
0
votes
1answer
80 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);
...
0
votes
2answers
473 views
Show ACF fields only on certain page in the backend
I have created some custom fields with Advanced Custom Fields and set them to appear in my custom post type named X (post type is equal to X).
But I only need them to display on a particular single ...
