The custom-fields tag has no wiki summary.
0
votes
0answers
3 views
Facebook create Open Graph object with custom field
I have an object type created, lets call it "foo". This one inherits from "object" but has an additional attribute "fooattribute". My Application runs under lets say "fooapplication"
When I set this ...
0
votes
1answer
16 views
JIRA - Design a screen having custom field with multiple inputs
Can we design a screen which allows to add multiple values for a custom field and it looks like form as shown in attached snap.
(table border is added just for refernece to distribuguish fields)
...
-1
votes
0answers
26 views
WordPress Advanced Custom Fields repeater field — get_field not working for me
Quasi-noob here. I just can't get any result from get_field. Here's my test page:
http://23.21.199.240/test
I can retrieve the repeater field data with a FOR loop, but the special ACF get_field ...
0
votes
1answer
23 views
Update Wordpress Custom Field with AJAX on cached page
I'm new to ajax am trying to create a simple hit counter that updates a custom field in Wordpress after the page loads. The page is cached, so any attempts to use PHP alone will not work.
I'd like ...
0
votes
3answers
27 views
PHP: <img> not showing in wordpress template
I have seen many versions of this problem and went through all of the solutions but I can't figure out how mine isn't working.
I am building a custom theme for wordpress as part of a training course.
...
0
votes
1answer
13 views
Android contacts custom field
Is it possible to add custom field to some contacts, with custom mimetype (like facebook profile) without writing sync adapter, authenticator and sync service? I do not want to add "synchronization" ...
0
votes
0answers
35 views
Android contacts custom field is empty
I want to add custom field to contact (Like facebook view profile, etc.) I am able to add new contact, add custom field and open my activity by tap on this custom field using intent-filter. But it ...
0
votes
1answer
14 views
wordpress check if custom field empty inside an echo statement
Trying to edit a wordpress theme, where in a widget code echo statement i want to check if custom field empty show tag otherwise don't show it. Can any one help
At the moment its running
if($theI ...
0
votes
1answer
22 views
FosUserBundle registration validation new image field
I am using FOSUserBundle and i have problem with validation user entity.
In my user entity i have:
/**
* @Assert\NotBlank()
* @Assert\File(
* maxSize="3M",
* mimeTypes={"image/png", ...
0
votes
0answers
15 views
Wordpress ACF post object loop excerpt reapeating
The excerpt is repeating itself over and and over again I don't know why
<?php if(get_field('links')): ?>
<?php # var_dump( get_field('my-repeater-field') ); ?>
<ul>
...
0
votes
2answers
30 views
Wordpress isn't letting me hide a custom field in a div?
This code must be used to output my images in a wordpress layout:
<?php
$temp_content = explode(" ",substr(strip_tags(get_the_content()),0,175));
$temp_content[(count($temp_content)-1)] = ...
0
votes
0answers
30 views
Creating and populating Redmine custom fields by ruby code
We are developing a mogration from a small issue tracker software to Redmine. We use the Ruby classes directly to migrate the data. The class for an issue is defined like this:
class BuggyIssue ...
0
votes
1answer
21 views
Wordpress to display custom USERMETA field on User Profile Dashboard?
I have added and been using a USERMETA field (called: user_custom_hash) from the wp_usermeta table. Means i've been Insert/Edit/Deleting the field from the code somewhere.
No needed to display it out ...
0
votes
1answer
34 views
In wordpress I need to do a sort then a where clause… but I can't get it working
I have a list of post that need to be in chronological order. The fields are all custom and I am using the Advance custom fields plugin but that shouldn't matter.
What I am trying to do is sort ...
0
votes
0answers
10 views
How to provide wordpress send_headers hook with post data?
I want to manipulate the output of the http-Header and I know that I can use the action hook *send_headers* for this but I need a value, which is stored in a custom field of the single blog entries. ...
0
votes
1answer
75 views
Wordpress: Calendar Widget displaying posts by custom field (date)
I created a website build around a custom post type events. These events have custom fields, one of them is the event-date (the date the event is happening, NOT post publish date). I'd like a calendar ...
1
vote
2answers
27 views
Adding new fields in joomla 2.5 article component
Anybody know how to add custom fields, new fields to enter some values with joomla 2.5 articles in backend.
I want to add some values when i create an article and want to get these values in ...
0
votes
1answer
24 views
Drupal 7 Fields/CCK concatenation
I have a custom content type called "stores" with four fields (Address, Name, Lat, Lon)
I have multiple stores with the same name (ie: safeway) and when working in any part of the admin interface I ...
0
votes
0answers
28 views
Front end form not loading a field correctly
I'm using the plugin http://www.advancedcustomfields.com and using the front end form capability.
It all works great on all the different fields apart from the relationship field. It actually ...
0
votes
0answers
13 views
Liferay add orderable custom field to WebContent
I added a boolean custom field to the WebContent object.
Now i have created an hook to add this new field to the portlet/journal/article_columns.jspf
Boolean flag = ...
0
votes
0answers
25 views
Updating logged in user's page when on other pages
I have a site that a user can sign up and build up their own profile page. This is done by creating a post when the user signs up, all the form data that is filled in is then saved to that post into ...
2
votes
3answers
87 views
Wordpress: How to pass additional Content to the blog-preview page?
For each blog-post on my wordpress-blog I'd like to have Teaxtarea where i can pass additional content for that post.
In my case that would be an unordered list which contains a quick overview of ...
0
votes
0answers
22 views
In JIRA 5.2.11, Increase the custom field label width over issue view screen
I have added custom field and used it over jira "view" issue screen.
this field's name is bigger and it gets collapsed when appear over JIRA "view" issue screen.
I want to increase this field label's ...
0
votes
0answers
17 views
how to display certain custom field when adding new post?
In wordpress panel I have post and custom post.
My question is if I wan to display certain custom field when I create new post, and certain custom field display in custom post how can I make it?
This ...
0
votes
0answers
28 views
customer_register_success not working in Magento custom module
I have created a custom module as in "(Add new custom field in the register form)[http://codemagento.blogspot.com.es/2012/05/add-new-custom-field-to-customer.html]" for adding a custom field in the ...
0
votes
1answer
28 views
Hiding the Content of a custom field in Wordpress to non-admin
I'm trying to display several custom field values on a public wordpress page but only want them visible to admin users, similar to the way private posts are not publicly available but appear to users ...
0
votes
0answers
15 views
FatFreeCRM Creating Custom Input for file Uploads
I am working on extending FatFreeCrm to allow it to handle many fileuploads for a given contact.
I have had a look at https://github.com/fatfreecrm/fat_free_crm/wiki/Creating-custom-field-plugins, ...
0
votes
0answers
51 views
wordpress Trigger Lightbox with button outside if statement advanced custom fields
Hi I am trying to have a button that triggers a lightbox with a repeater field. It is currently working but the images are starting from the last image instead of the first.
any ideas?
<?php ...
0
votes
1answer
21 views
Showing Custom fields values
I'm trying to display custom fields on my site , but unable to return any values in the front-end.
First I added this function to functions.php :
function get_custom_field($custom_field) {
...
0
votes
2answers
25 views
Make checkbox read only if opportunity probability is 95% or more
Is there a way to make checkbox read only if opportunity probability is 95% or more?
-1
votes
1answer
45 views
How to make custom posts that have custom fields in a WP theme?
Is there a way to create a custom post (e.g. movies) with custom fields (e.g. title, director, 0 or more actors, etc.) in WP and make it part of a theme? I'm guessing that something needs to be added ...
0
votes
1answer
31 views
Get custom field value but hide first 19 and last 2 characters
Geeks and code Gods,
I am having an issue with my wordpress code. I have added 3 extra columns to the dashboard's pages screen.
One of which displays the custom field 'scode'. The scode custom field ...
0
votes
2answers
91 views
Post Objects in Advanced Custom Fields order by date
Hi I have a Post Object field in Advanced Custom Fields that I want to return multiple posts, ordered by date. I have the custom field data from those posts returning fine, but the Post Objects ...
0
votes
1answer
37 views
Display Wordpress Custom Fields $value
I am attempting to display, outside of the loop, an alternative, shortened post title using custom fields under a set of 8 post featured image thumbnails in a slidesow. I can display the corresponding ...
0
votes
1answer
109 views
Modify custom field from front end
If I need to manage a custom field under wordpress, but not from the admin area. In other words, I need that users modify the content of post custom fields from front end. What is the way to do so?
...
0
votes
0answers
32 views
custom fields WHMCS -> foreach option
I'm trying to add this drop-down select to the register page. It lists all states in Brazil:
<select tabindex="7" id="estado" style="width:300px;">
<option ...
1
vote
1answer
43 views
post meta values order in wordpresss
i'm using custom fields in wordpress to store meta values. some custom fields have multiple values. i'm retrieving the array with "get post meta" which returns an array, as expected. but it seems the ...
0
votes
0answers
61 views
Wordpress custom field being lost on wp_update_post, with a twist
I'm using wp_update_post to programmatically add a title and tags to posts from the front end. I'm running into a hair-tearing issue with custom fields in the process: one of the two custom fields ...
0
votes
1answer
42 views
Getting events based on 2 date meta keys in Word Press
I am using Custom Fields and Post Types to create some events type posts in WP. Each event (post type: events) contains following fields:
Title (the_title)
Description (the_content)
Start Date ...
1
vote
3answers
55 views
wordpress blog page geting custom field of first post
i am facing a bad problem. it will be well appreciated if any one can help me regarding my problem.
i am using custom fields on posts and pages, just like removing Page navigation, Footer, Sidebar, ...
2
votes
1answer
128 views
Saving an array to Advanced Custom Fields WordPress
I'm using the ACF plugin for WordPress. I'm posting to a custom post type programmatically via my theme. Now, I thought I would be able to save an array of items to a custom field quite easily, but ...
0
votes
0answers
16 views
Get Custom Post type Title and custom field value and post as custom field of another custom post type
i've a intricated question: I've a custom post type called "Sponsor" where I publish post and a custom field called "money" (example title:"Hostgator" money:"100") so i've created another custom post ...
0
votes
1answer
51 views
Wordpress: How can I display the custom fields from a custom post type on a page?
I have created a custom post type called "box-img."
I have to custom fields in it, one called "img-url" and "img."
The "img" fields contains an image.
I want to be able to display those 2 fields on ...
0
votes
2answers
42 views
How to add custom fields in custom theme
Ive been searching a lot for this answer but cant work it out.
I created two custom fields for pages and posts:
one for background image, and one for background color.
Then I called the changes in ...
1
vote
3answers
107 views
PHP Advanced Custom Field Repeater Field
I have a variable that i want to add doc- to it so it reads out doc-$user_role like this for advanced custom fields in wordpress.
i know how to do this with echo finding it difficult in this format ...
0
votes
3answers
43 views
How do I get my custom fields to only show when something is written in them - Wordpress?
Im working on customizing a Wordpress theme with some custom fields. For this I'm using the plugin "Advanced Custom Fields", but I want it to display these fields ONLY IF something is written in them. ...
-3
votes
1answer
41 views
WP display different custom fields in different pages
In WP admin/'edit page' (not in rendered page), how can I display different custom fields (meta-datas) in different pages?
0
votes
0answers
21 views
Order post query by custom field value (repeater field)
I want to order my query by one of my custom field values. That custom field value is a repeater field inside a regular custom field.
However, the problem is that my query is set to only show pages ...
1
vote
0answers
196 views
Wordpress; Vantage theme & ACF plugin?
I have repeatedly been trying to implement the Advanced Custom Fields (ACF) plugin in the Vantage theme (from AppThemes), but without any success. I've had extensive contact with the admin of ACF, on ...
0
votes
1answer
103 views
Add field for each file in fine-uploader
Trying to implement Fine-Uploader for first time.
There's a way I can add a text-field for each file pending uploading?
I want the user to comment the content of each file and than save these ...





