Checkboxes not rendering

Checkboxes not rendering

All the other form elements render properly. Radios and Checkboxes do not. The title and descriptions show up, but not the boxes or radios. $options7 = array(); foreach ($resqry1 as $option) { $options7[$option->id] = $option->id; } $form = array();... read more
Checkboxes not rendering

Unable to edit node translation other than current language

On my multilingual site I seem to have problem at admin/content when editing a particular translation. I have a Contact Us page, translated: Contact Us [EN], node/286 Contact Us [ES], node/300 I don’t have an explicit Path Translation set, but the nodes are... read more
Checkboxes not rendering

See all nodes where user profile entity reference matches the same entity reference on the node

I have the Profile 2 module where a user selects a zip code (which is an entity reference to the content type ZipCode) The ZipCode content type has an entity reference to a Region content type. Finally, there is a content type called Schools which has an entity... read more
Checkboxes not rendering

Showing content of subterm under parent term

I have following taxonomy structure parent-A subterm-1 sub-subterm-a sub-subterm-b subterm-2 how can I show contents of both the sub-subterm (a and b) when i select/click subterm-1 ; and contents from subterm-1 (sub-subterm a+b) and from subterm-2 when I select... read more
Checkboxes not rendering

Shopping cart form footer

I wanto to display Prices with no decimal Places, in shopping cart footer (commerce order: order total ), but in the shopping cart view i found nothing to which does this. what shoud i do? read more
Checkboxes not rendering

How do I add a more/less link in block?

How do I add a more/less link to drop-down and roll up a block? I have a custom search block with a lot of field items and as such, the block is so long. I want to be able to add a more link to drop down the redundant fields and less to roll up the block again.... read more
Checkboxes not rendering

Programatically Submitted Form With ‘file’ Field Throws Notice

This seems to actually be a problem in Drupal itself. In /modules/file/file.field.inc the function file_field_widget_form has a line like this near the bottom (just before the return statement): $elements[‘#file_upload_description’] =... read more
Checkboxes not rendering

default value imagefield -> get from field collection item

I’ve got a contenttype “gallery” with an imagefield “thumbnail”, used in listviews oder teaserviews. This contenttype also has a field collection with “image”, “title” and “description”. So what would... read more
Checkboxes not rendering

file_field_widget_form error when programatically creating nodes

I have a simple routine which I use to create nodes. The logic is something like this: function make_node($node_type, $field_data) { foreach ($field_data as $k => $detail) { $field_key = _get_field_keys(‘field_’ . $k); $field_key = $field_key[0]; $node... read more
Checkboxes not rendering

default value when adding new item of date field

i’m using drupal 7 and in my content type there is a date field has start and end value with unlimited values, i set the default value to “Now”. but the problem is when adding new item of this field there is no default value in it. is there a way to... read more
Checkboxes not rendering

Block is not showing up in a custom taxonomy page template

I am using Drupal 7 I have a content type courses. I have a page folder in template folder, with courses.tpl.php file. When i go to courses page it is showing contents from courses.tpl.php. Issues is that courses.tpl.php is not rendering blocks. I checked region in... read more
Checkboxes not rendering

Use a field’s values in database to populate an exposed filter’s options

I have a content type with a field named year (integer). In a view, I’d like to expose this field to the user as a filter. Instead of the default text boxes, I want to populate select lists with the values in the database for that field. Then the user will just... read more
Checkboxes not rendering

Term translations not working as View’s path contextual filter

Let’s say you have a taxonomy called Animals and you have terms like Dog, Cat, Horse, etc. Every term has its translation, so for example for dogs you have Hund and Chien. Now you want to make a View which generates a page that lists content tagged with the... read more
Checkboxes not rendering

How to get translated month labels

I think, this labels and its translations are available, but I don’t know where. I found nothing in the “Translate Interface” seach. So here’s my question: is there a way to get translated month labels more elegant as like... read more
Checkboxes not rendering

product display image not showing drupal

I have a question about Drupal Commerce (I’m using Drupal 7). I’ve added a number of products and created a multi-product display for them. I added a product image (it’s common for all these products) to the product display. I also have a view of all... read more
Checkboxes not rendering

How do I prevent delimiters in a URL from being URL encoded?

I need to know how to get a +-delimited string to be appended to the end of the URL path without the + character being URL encoded. Why: I’m trying to pass arguments to a View. I’m working on a custom module to conditionally route webform confirmations to... read more
Checkboxes not rendering

Calculate values from multiple content items

I have a Drupal 7 website that will be used to track automobiles in a fleet, as well as their engines and a few other items. Regarding the engines, I will be tracking the number of hours the engine is used, and the number of miles put on the engine in each use. To do... read more
Checkboxes not rendering

How to capture URL from a webform without using token value?

I have a Webform as a block. Set to show on a certain content type with a hidden field returning the token value %get[q] to let the admins know from which page the form was submitted from. Unfortunately it has intermittent errors that I’ve not been able to... read more
Checkboxes not rendering

Ajax webform: refresh page on a successful submission

I am using the ajax webform, because I don’t want the page to be reloaded when the user doesn’t enter everything correctly because my form slides in and reloading just causes it to disappear and you would have to navigate back there. When I have ajax-mode... read more