How to combine two batch operations for views data export into one?

How to combine two batch operations for views data export into one?

I have been using a custom module that was posted here: https://www.drupal.org/node/1875456 I slightly modified this module and created two copies of it, as I have two views and planning to add third one but it currently doesn’t work properly so let me explain:... read more
How to combine two batch operations for views data export into one?

Paragraph of text in webform generated email is split into multiple lines rather than presurving single line of text

I am using a webform to send an email. The webform contains a textarea field. I have noticed that if I enter a paragraph of text in the textarea field, then that same text is split into multiple lines in the email I receive. So rather than being a single line of text... read more
How to combine two batch operations for views data export into one?

Migration of content with an UI

My goal is to import data of customers from a csv file to my custom entity. For that I wrote a migration with the migrate_source_csv module as source plugin. This works fine, but the problem is, that the import is just possible with drush. But it should work with an... read more
How to combine two batch operations for views data export into one?

How can I set only a view of two views added to a panel to be shown as accordion?

I have a panel page which contains 2 views. I only want a single view to display as accordion. If I set the style setting of that view to Accordion, nothing happens; if I set the style setting of the panel to Accordion, both the views become accordions. How can I set... read more
How to combine two batch operations for views data export into one?

Importing multiple images from Dropbox with Feeds

As part of a product import, I am trying to import images from a link contained in a column of an Excel file. Each link points to a Dropbox folder with 2 image sub-folders (named PRINT and WEB). Is it possible to import multiple image files from a Dropbox folder using... read more
How to combine two batch operations for views data export into one?

Translation for webform error message

I using drupal 7 for my website. I created one feedback form using webform and Internationalization for both English and Japan version. It works fine, but the error message for Feedback is required. is showing 「ご意見・ご感想」は必須項目です。 where translation for Feedback is... read more
How to combine two batch operations for views data export into one?

Moving the fields and data from one content type to another content type

I have created a content type called “ContentA” and in that content type I have two fields, “Summary” and “Title”. I have already created a new content type called “ContentB” and it is also having the same fields. What I... read more
How to combine two batch operations for views data export into one?

Whats the best way to add an object to a form array?

How can I add an object to a form array to make it available to make it available to the hook_form_alter() implementations? I have an object I pass to a form, which may have new property. I would like to implement hook_form_alter() in another module to add/change form... read more
How to combine two batch operations for views data export into one?

How to get RAW Html code from my module?

I looked around for a few hours but wasn’t able to find any available hooks to get pure raw html code. If you right-click on any webpage and do “get source”, it will give you the raw html output. However, there doesn’t seem to be a function or... read more
How to combine two batch operations for views data export into one?

How to get different size image on views

I have a view that fetches content that is then shown in a block. It shows 16 nodes and each node has title, date and image. The images are set to use the imagecache preset in the view field settings. I need to show the first and the seventh image with different... read more
How to combine two batch operations for views data export into one?

Can a module install a theme?

I would like to know if it is possible to make a module install a separate theme as well. Should I just ask that whoever installs my module also downloads that theme to have a better experience? Sponsored by SupremePR Spotify Promotion Services SoundCloud Promotion... read more
How to combine two batch operations for views data export into one?

Autofill texfields based on select option in dynamic fieldset

In my custom form i am dynamically generating multiple fieldsets.Each field set has select option(dropdownlist) and textfield generated dynamically. The value for textfield is dynamically generated based on user selected value from select option. My problem is that if... read more
How to combine two batch operations for views data export into one?

How to can I update from the recommended release of a module to it development snapshot?

I’m currently using the Geofield module, 7.x-1.0-beta2 (released on November 17, 2011). The development snapshot has some functionalities I want. How do I correctly and safely update to the development snapshot, which was last update on January 10, 2012? What I... read more
How to combine two batch operations for views data export into one?

Adding a validation step via hook_form_FORM_ID_alter()

I am trying to add a custom validation function to an existing form. I am using hook_form_FORM_ID_alter() to edit the form. I am then adding a new function to the #validation array. When I use dpm() and print out $form[‘#validation’] I can see that my... read more
How to combine two batch operations for views data export into one?

caching views based on arguments as taxonomy term id

Hi need to enable caching based on taxonomy term id from the url which the views takes as an argument 1)simple cache returns empty results 2)views_arg_cache module also empty 3)views_content_cache module aslo empty please help if any body has tried such scenario and... read more
How to combine two batch operations for views data export into one?

How can I get additional fields from Search API query?

I have Search API DB backend where I will be retrieving thousands of results and I need some fields to get out of there as well, beside search item id, since doing additional query to MySQL with IN condition consisting of thousands of entries is nonsense. Can’t... read more
How to combine two batch operations for views data export into one?

Add a user/author field formatter

i have a site where I use display suite for custom page display. And all works. Now I need to add a custom field formatter for the “Author” field, but I don’t find how to link “author” to a new field formatter. I know that I need to use... read more
How to combine two batch operations for views data export into one?

Adding block in view tabs

I have tabs created using views and has contextual filter of group parent(Group ID from URL). I created a block that has a contextual filter of GID. In the block layout, I placed the block in the content region, select Group from URL to Group ID: and specify path to... read more
How to combine two batch operations for views data export into one?

How to fix error Undefined index: parent in taxonomy_form_term_submit()?

I got below error on my site recently. Notice: Undefined index: parent in taxonomy_form_term_submit() (line 829 of /var/www/Sites/xxxxx/modules/taxonomy/taxonomy.admin.inc). I google it and find there is an old issue but seems nothing solved. In the issue, @Cracu did... read more
How to combine two batch operations for views data export into one?

How to add extra data to a programmatically created node

Using Drupal 8 i am importing data from an external source and creating the node programmatically from the controller: $node = Node::create(array( ‘type’ => ‘article’, ‘title’ => ‘some title’ )); $node->save();... read more