Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
72 views

Django end-user defined fields, how to? [closed]

Possible Duplicate: Django dynamic model fields Good Morning guys! Scenario is the following. For some models on Django, I would like to allow the end user to define his own fields. It ...
5
votes
2answers
454 views

Django custom field with multiple inheritance

I have two custom Django fields, a JSONField and a CompressedField, both of which work well. I would like to also have a CompressedJSONField, and I was rather hoping I could do this: class ...
3
votes
1answer
218 views

Wordpress update_post_meta does not update dynamic values

This is a little strange, I am using "update_post_meta" to update the custom fields in Wordpress. When I run update_post_meta($post_id, 'Test_Field', 'Test Value'); the custom field updates without a ...
3
votes
1answer
206 views

Django custom field - automatically add COLLATE to query

I'm trying to create a custom field which would automatically add COLLATE information into the WHERE part of SQL query: class IgnoreDiacriticsField(models.TextField): def get_prep_lookup(self, ...
2
votes
1answer
30 views

Wordpress order posts by custom meta in pagination

I'm ordering my posts by a custom meta value named "size". $querystr = " SELECT $wpdb->posts.* FROM $wpdb->posts, $wpdb->postmeta WHERE $wpdb->posts.ID = ...
2
votes
2answers
483 views

Saving multiple checkbox meta data WordPress

Code works! I have two custom post types: Events and Artists. I'm using WPAlchemy MetaBox PHP class , trying to create a metabox with a series of dynamically created checkboxes (i.e. there will be a ...
2
votes
1answer
77 views

Django model automatically set fields

I have a form allowing users to post an article. The article table is chained with the users table so, I need to set the user_id field based on who's writing. Normally, django form will display a drop ...
2
votes
2answers
2k views

can't delete site columns that aren't referenced

I just created a couple of site columns and content types that reference them through VS2010. I updated one of the fields and then tried to redeploy, but after retracting, deploy failed because the ...
2
votes
1answer
221 views

Outputting wordpress custom date field in different format

Okay, so I have a custom date field set up as 'm/d/Y H:i:s' and I'd like to echo that as 'M j'. How do I do this?
2
votes
1answer
334 views

Wordpress : Add a custom field directly above the title input field (w/o modifiying core files)?

Does anyone know of a way to add an input field (or any type of html for the matter) directly above (or below) the title input field on the post edit page ? I'm looking of a way to do this without ...
2
votes
0answers
199 views

Jira: How to obtain the previous value for a custom field in a custom IssueEventListener

So how does one obtain the previous value of a custom field in a Jira IsseEventListener? I am writing a custom handler for the issueUpdated(IssueEvent) event and I would like to alter the handler's ...
2
votes
1answer
281 views

How do i migrate a model containing an ImageField from django-imagekit using django-south?

I find this documentation extremely confusing: http://south.aeracode.org/docs/customfields.html If someone could walk me through this or at least give a full example, I would be very grateful.
2
votes
1answer
862 views

migrating django-model field-name change without losing data

I have a django project with a database table that already contains data. I'd like to change the field name without losing any of the data in that column. My original plan was to simply change the ...
2
votes
5answers
3k views

How can I attach a file using Wordpress custom fields / meta boxes?

I am using Wordpress's add_meta_box() function to add customized meta fields to the Add New Post page, like this. I want one of these fields to allow the user to upload a file, so that a single image, ...
1
vote
1answer
16 views

Wordpress + Meta box: For each field value

I am trying to get value of each clone (adding by +) field value and want to repeat video embed code. First I am using this wordpress meta box plugin. ...
1
vote
2answers
15 views

Auto-remove custom field with no value on publish

I got some plugins that auto-generates custom fields. Does anyone know how to automatically remove empty custom fields from post when I press "publish"? A check I can put in my functions.php that ...
1
vote
2answers
87 views

Can you create an integer custom field in Salesforce.com?

I want to create an integer custom field on an object. I see that I can create a custom field of "Number" but that seems to return a decimal type. Mostly this is annoying as I plan to use the field as ...
1
vote
1answer
128 views

How can i put custom fields on Standard SalesForce object, with PHP, using metadata API

I searched a couple of days and didn't find how can i put my custom fields in standard SalesForce object (Account, Lead, Opportunity etc...). I found only info about metadata API described here, but ...
1
vote
2answers
246 views

Get value of custom user field in Drupal 7 template?

I'm building my first site with drupal. And I made a custom user field: Full name. Now I want to get the value of this fild in my template to say “Hello, %username%”. How do I do that?
1
vote
1answer
86 views

Get custom field value from specific post

I use this code in functions.php file: function get_custom_field_value($szKey, $bPrint = false) { global $post; $szValue = get_post_meta($post->ID, $szKey, true); if ( $bPrint == false ) return ...
1
vote
2answers
288 views

Can WordPress WP_Query return custom field post meta?

For some reason, I cannot get WP_Query to return the custom field values of posts. I can get the post thumbnails using get_the_post_thumbnail($post->ID, array(50,50)), but I cannot get the custom ...
1
vote
0answers
147 views

SalesForce: Linking an custom field and account activity data

I am slowly getting the hang of salesforce and I am trying to get some fields linking up between accounts and opportunities and more. My current issue is with Account Activity details. I have a set ...
1
vote
0answers
74 views

How to add a custom field to a layout section in SalesForce via the API

I am creating a Java API integration tool, that on start up will create a new custom filed if it doesn't exist for Lead & Contact. After a bit of searching I have found how to do this. Now the ...
1
vote
1answer
157 views

Prepopulate fields in Salesforce.com

I have a doubt, i've been working with salesforce for a while and now i have a requirement from a customer. They need that some custom fields be populated with a value of parent object, making some ...
1
vote
2answers
253 views

Magento - Upload file during registration

I want every user, that registers on my Magento instance, to upload a certificate that shows me that he registered a business. I already added the fields in the template. But how can I fetch the file ...
1
vote
1answer
186 views

sharepoint 2010. SPField set control for edit and preview

I need to add custom editor for my created sharepoint field. How can i set control both for edit mode and preview mode. Will be two different controls! I found that i can override ...
1
vote
1answer
164 views

easy php array of images, from a WordPress custom field

I'm trying to use 1 custom field for a bunch of images - to do the same thing to all the images. I can store them in the custom field however is advisable, but I thought this format would be best, ...
1
vote
1answer
230 views

Wordpress search custom fields

I have a custom field with meta_name is product_id. I am trying to determine how to search that field when using the wordpress search. I know the wordpress search results page uses query_string ...
1
vote
3answers
104 views

iPhone - is this screen available and customisable or do I need to create it from scratch?

I have noticed that in some apps they use what appears to be the the native display screen for a contact, it shows the contact photo, name, phone numbers and options to text message and add to ...
1
vote
1answer
165 views

Wordpress - Display array data of a child

I've used the wordpress plugin - advanced custom field and would like to show an array of a child, here's my code: I'm using this code to show the custom fields data from a specific page ID's ...
1
vote
2answers
113 views

How to Setup a Constraint to Restrict Char Field to a Set of Values?

I am having a brain fart today. In SQL Server (currently using 2008), how do I setup a char field to only accept a specific series of chars (roughly eight case sensitive letters)? And I need to ...
1
vote
2answers
126 views

Database design - one table with many fields, many tables with one field, or abstract tables?

I have to design a schema to store objects that have many properties, but few in common. I found some solutions here, but I'm still not convinced about the best thing to do. I see four ways of doing ...
1
vote
1answer
274 views

wordpress query with custom fields help

My posts have a bunch of custom fields and are currently being ordered by "over-lenght" I have another custom field called "over-lenghtin". I'd like to continue to order my posts by over-lenght but ...
1
vote
1answer
690 views

wordpress query posts, get all posts for current month from custom field date

I have an events custom post type in wp 3.1 I am using the following query_posts: <?php query_posts('post_type=event&meta_key=event_date&orderby=meta_value&order=ASC'); ?> As you ...
1
vote
1answer
474 views

Add Dynamic Multiple Boxes Wordpress

I've created a custom post type in wordpress called Product, and created a custom box called "What's Included". How would I create an "Add New Included Item", to create dynamic boxes? It would look ...
1
vote
2answers
786 views

SharePoint: Problem with programatically updating custom field type column value [closed]

I have created a custom field type(say 'Sample') in SharePoint which is based on 'multiline text' field type. Now I have created a new column(say 'test') of type 'Sample' in a list. I created some ...
1
vote
1answer
191 views

How to add an extra link to the excerpt in wordpress

I'm trying to get this link to look like this: Comment on this show >> | Listen to this show >> Where "Comment on this show >>" gets populated properly with its permalink. "Listen to this show >>" ...
1
vote
1answer
373 views

How to add custom fields like firstname and lastname to django registration form?

I have to add two custom fields (first name, last name) into my registration form, but I don't know how. I went through this question but values (first name, last name) are not getting stored after ...
1
vote
1answer
224 views

problem breaking up one SharePoint project into pieces

I'm trying to break my sharepoint project into a few smaller projects. I could easily move utility files in different project. However i encountered a problem when i moved custom-fields. If i move ...
1
vote
1answer
128 views

SharePoint Custom Field - is it possible to handle item deletion event?

I'm expanding SPFieldText and BaseFieldControl to create a custom field. The field saves some data externally (for example, on a database or on another list) Within the control I'm able to handle Edit ...
1
vote
3answers
3k views

How to remove Custom Field section from Wordpress?

I am trying to remove custom fields section from Wordpress backend. I think I found a function that display custom fields. The function is located in wp-admin/edit-page-form.php line 181. ...
1
vote
2answers
119 views

Rookie PHP question sorting result of custom field

I use this to pull values from a custom field with several values: <?php $mykey_values = get_post_custom_values('services'); foreach ( $mykey_values as $key => $value ) { echo ...
1
vote
2answers
652 views

Drupal using views with CCK custom fields

I've got a Drupal site which uses a custom field for a certain type of node (person_id) which corresponds to a particular user. I want to create a view so that when logged in, a user can see a list of ...
1
vote
3answers
417 views

Implementing custom fields with ALTER TABLE

We are currently thinking about different ways to implement custom fields for our web application. Users should be able to define custom fields for certain entities and fill in/view this data (and ...
0
votes
0answers
12 views

expressionengine channel custom field to PHP array?

Is it possible to assign channel custom fields to PHP array var? Something like this: {exp:channel:entries channel="challenges" require_entry="yes" limit="1" cache="yes" refresh="60"} ...
0
votes
1answer
5 views

Custom fields in Liferay users CSV export have null values

I need to add some custom fields to the user export in CSV. I defined the fields in portal-ext.properties but then when I restarted and returned to the Users portlet in Control Panel the columns for ...
0
votes
0answers
9 views

Setting custom fields using the PSI - Microsoft Project Server

I'm new to Project Server development and was wondering if you can use the PSI to set resource custom field values. I can't seem to find any information for a beginner at this. I currently have web ...
0
votes
0answers
7 views

boolean meta_query orderby date

I have a wordpress website with custom posts. These have a boolean custom field to allow "sticky deactivation" from the client, something like making the posts "not sticky". So, by default all posts ...
0
votes
2answers
12 views

Display true/false custom field as checkbox in Liferay

When you create a boolean custom field of type true/false it is displayed as a drop-down box with true and false as values. When I go and edit the field and don't see an option that allows to change ...
0
votes
0answers
26 views

Custom Field outside the loop and inside an array in Wordpress

I am trying to use a Custom Field called Thumbnail on a Widget so it's therefore outside the loop. Taking it a step further, the theme I have is using an array to generate listings which confuses me ...

1 2 3 4