Getting a custom field to appear correctly in Rules using entity form module

Getting a custom field to appear correctly in Rules using entity form module

I have written a custom field widget called foo which is inserted into an entity form to provide an autocomplete to another web service. I am trying to get the field data to be sent in an email via Rules. I am able to get the entityform tokens using List, text and the... read more
Getting a custom field to appear correctly in Rules using entity form module

Incompatible Mail System setting detected

In order to get the Newsletter (Simplenews module) to send out emails correctly (in HTML format) I selected HTMLMailSYstem in the mail system settings. Having the DefaultMailSystem setting instead, does not work, in a sense that it only sends out plaintext... read more
Getting a custom field to appear correctly in Rules using entity form module

On View Rewrite Results I don’t see additional options like Add Read More button when checked "Trim this field to a maximum length"

Can anyone help me? Because earlier this options were displayed when I checked “Trim this field to a maximum length”. May be it depends on some settings? I can’t upload image to show you what I mean. But try to explain. I have a view block which... read more
Getting a custom field to appear correctly in Rules using entity form module

Making custom database text fields available for search

I have a custom module that stores text records in a table, however this table records are not mapped to nor an entity neither a node, so as far as I know, I can’t expose them to the search module or the search API. So my question is how do I expose my data... read more
Getting a custom field to appear correctly in Rules using entity form module

File_managed URI change not working

Is there a way i can make file_managed URI changes in the database? I the database i have a list of files and there is append a _1 or _2 to the URI file name.i wanted to clean these up and remove the _number so there will be only one file but when i change it i get an... read more
Getting a custom field to appear correctly in Rules using entity form module

How to display the output of my module without clearing cache and refresh page?

I created a very simple module which generates a tag cloud based on user input; you can see the code here. // wow.module function wow_menu() { $items = array(); $items[‘wall/of/words’] = array( ‘title’ => ‘Wall of Words’,... read more
Getting a custom field to appear correctly in Rules using entity form module

Content type data becomes the field label for another content type

I’m using Drupal 7, and on my Drupal website I’ve created a content type. This content type has 2 fields: field name, and code. I need to create another content type, and (on this content type) fields based on the data of the “Name” field of... read more
Getting a custom field to appear correctly in Rules using entity form module

print.module error – Warning: file_put_contents

I am using the print.module and dompdf to convert the PDF files. I am getting the following warning on my pages. How would I go about fixing this? Warning: file_put_contents(/home/mysite/public_html/sites/all/modules/print/lib/dompdf/lib/fonts/php_Times-Bold.afm):... read more
Getting a custom field to appear correctly in Rules using entity form module

Print preview and Printer-friendly version look different

I am using a Print module with a bartik subtheme. I am trying to override the print module styles by using my theme’s print.css file. Is this correc tway of doing this? Both the print preview and preview via the printer-friendly version generated by the print... read more
Getting a custom field to appear correctly in Rules using entity form module

Problem adding button to custom content type form

I am trying to add a cancel button to a custom content type form (typename/type/add). I have looked around and there seems to be two main ways of doing this: Creating a template file with the name page–node–add–typename.tpl Implementing the... read more
Getting a custom field to appear correctly in Rules using entity form module

Is there an easier way to print taxonomies in the tpl? I get this working code, but it should be a "shorter" way!

After a painful day and a half I get this code, that prints out in my node.tpl.php the taxonomy terms associated to that particular node that the user is viewing. It works just fine. As it is quite long I´ll just put the whole thing inside a module and into a... read more
Getting a custom field to appear correctly in Rules using entity form module

Print module on a Views page?

Is it possible to have a print/pdf link (using the print module) displayed on a views page? I’ve got it displaying in a basic page type, but view is not a content type, so how do I select the option? read more
Getting a custom field to appear correctly in Rules using entity form module

Allow blank search/list all items with 1.x apache solr module

When a user enters a blank search, by clicking “search” right away, or entering the search result url directly, the initial version of the Apache Solr Search Integration module, 6.x-1.x series, tells the user to “Please enter some keywords”. I... read more
Getting a custom field to appear correctly in Rules using entity form module

"This page was last modified on" code not displaying

I added the following code to my node.topl.php but nothing is displaying on my site. What am I missing? <?php if ($submitted) { echo ‘This page was last modified on ‘ . date( “F j, Y”,$node->changed); } ; ?> read more
Getting a custom field to appear correctly in Rules using entity form module

How to improve search results filtering on taxonomy

I would like to know the best way to filter drupal search results using taxonomy. I want users to be able to search for particular results from a particular taxonomy..this can be done to refine already searched results, or can be done from scratch. Any module for... read more
Getting a custom field to appear correctly in Rules using entity form module

searching and entity references

I have two content types documents and authors. When creating a document a selection list of entity reference’s to authors is used to select the author. Searches for the author name find the correct author, but do not find the document that has an entity... read more
Getting a custom field to appear correctly in Rules using entity form module

Making text fields autocomplete in views exposed filters

I want to make a text field auto complete in a views exposed form. I tried using the following code but nothing happens(I don’t see that blue icon in the text field): <?php function nk_menu() { $items[‘nk/autocomplete’] = array( ‘page... read more
Getting a custom field to appear correctly in Rules using entity form module

Permissions to edit only the Status of an order

I have created a role called “Order Manager”, he should be able to View all the orders. Update the status of any order. Not be able to edit(can edit only the status field, nothing else)/or delete any order. How do I achieve this in Drupal... read more
Getting a custom field to appear correctly in Rules using entity form module

dpm function doesn’t display results for arrays

I need to work over the hook_menu_alter function and I found that the dpm() function is not working for arrays. I have devel and admin_devel enabled. I flushed all cache to make sure the hook is fired. function MY_MODULE_menu_alter(&$items) {... read more
Getting a custom field to appear correctly in Rules using entity form module

How can I add multilingual taxonomy breadcrumbs?

I have a site with two languages and a large number of taxonomy terms. I want to use breadcrumbs on my taxonomy pages, but I can’t find a system that works well with multiple languages. I translated my taxonomy terms with the Entity Translation module, using the... read more