Account created on 13 April 2012, over 12 years ago
#

Recent comments

🇮🇳India Elavarasan R

@SirClickalot, Good idea! Sure, It will be available on next release.

🇮🇳India Elavarasan R

@mattbloomfield, Thanks for your idea. As of now this module not supporting this functionalities. I will try to apply this feature in coming release.

🇮🇳India Elavarasan R

Updated in new release. Please check the sample excel for both content and taxonomy in the doc folder.
From the above error report, I can see taxonomy should only support "name" instead of title.

Drupal\entities_import\FieldDetails::getFieldType('taxonomy_term', NULL, 'title') (Line: 24).

🇮🇳India Elavarasan R

As it depends on PHP Excel library, Please use composer to download this module

🇮🇳India Elavarasan R

@peterx, As of now, It will support only excel and csv file. To import any content from the excel, we have to edit the import type that has been created already and click the button Import ODT button(If we chose content type as ODT) and upload the files to import.

The main purpose of this module is, Importing the data from the given Excel sheet to content type or taxonomy.

Please check the sample excel sheet available in doc folder for more clarity. We have to follow the same structure in the excel to import properly.

Note: All the excel fields mention in the excel should be match with content type or taxonomy fields.

For more details, Please check the configuration section in the below url.

https://www.drupal.org/project/entities_import

🇮🇳India Elavarasan R

@duckydan, Great! Yes you are correct. We have different way to achieve this. one of the way is , Attaching library in the hook_preprocess function in the .module file from the custom module by adding condition for only this page.

🇮🇳India Elavarasan R

Deprecated code issues and Drupal 10 compatibility fixes.

🇮🇳India Elavarasan R

Applied patch for deprecated code issues.

🇮🇳India Elavarasan R

Added support for Drupal 10 compatibility.

🇮🇳India Elavarasan R

@SirClickalot, This module does not depends on core Tour module. So core Tour module is not required to install.

Paragraphs module dependencies:

This module support two ways to implement 'Site Tour' popup.

1) Block Configuration with Paragraphs module
2) Render Element(API)

If we are using Block Configuration, then not required to write any code. This module created one block type called "Site Tour".
We can create one custom block with this block type to show the different set of content in different places as popup.
To add the different set of content, it means collection of fields(Paragraphs) has been included as reference field in this block.

Render Element, In this way developer can generate their own array format as below based on their requirements to show the site tour popup.

      $tour = [];
      $build['sitetour']['#data']['tour'] = [];
      $build['sitetour']['#type'] = 'sitetour';

      // First tour element

      $tour['id'] = 'sitetour';
      $tour['steps'][0]['target'] = '#slide-show'; // Dom element id
      $tour['steps'][0]['title'] = 'Slide show';
      $tour['steps'][0]['content'] = 'It includes five images. Please click the next button to view the next slide image.';
      $tour['steps'][0]['placement'] = 'bottom';
      $tour['steps'][0]['arrowOffset'] = 60;

       // Second tour element

      $tour['steps'][1]['target'] = '.search'; // Dom element class
      $tour['steps'][1]['title'] = 'Search Box';
      $tour['steps'][1]['content'] = 'Please enter the text in the search box and click enter button to search.';
      $tour['steps'][1]['placement'] = 'bottom';
      $tour['steps'][1]['arrowOffset'] = 60;
      $build['sitetour']['#data']['tour'] = $tour;
   
🇮🇳India Elavarasan R

Applied patch for javascript version changes issue.

🇮🇳India Elavarasan R

Applied patch for javascript version changes issue.

🇮🇳India Elavarasan R

Applied patch for javascript version changes issue.

🇮🇳India Elavarasan R

Updated core_version_requirement to support Drupal 10 version.

🇮🇳India Elavarasan R

Closing this issue as cannot reproduce.

🇮🇳India Elavarasan R

Drupal 9 compatibility already added for this module.

🇮🇳India Elavarasan R

Drupal 9 compatibility already added for this module.

Production build 0.71.5 2024