Active
Project:
Title
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
5 May 2013 at 12:54 UTC
Updated:
23 Dec 2015 at 15:39 UTC
Jump to comment: Most recent
I use feeds to import products in my drupal commerce site.
I use the title module for the product variation title replacement.
When i have a product in my cart, i don't have a title of the product.
Is this a bug or is there a solution for this?
Comments
Comment #1
plachTry the latest dev, please.
Comment #2
gapa commentedI tried with latest dev but this is still a problem. I am usign commerce_kickstart 2.8 and have replaced title module with latest dev.
Comment #3
docans commentedI am also experiencing this problem. When i import my products the Title field is not populated. Any reason's why
Thanks
Comment #4
docans commentedComment #5
honza pobořil commentedSame problem happened to me when importing just nodes (without Commerce entities, without the Commerce Kickstart).
It is happend because after import Feeds does not save title to $node->title. (You map title only to title_field, not to title.) In Drupal there are some places where Title module is able to load proper field value and put it tempoary to $node->title, but there are many places where Title's hook is not invoked and it is trying to use just $node->title or value from database.
You can workaround it by re-save imported nodes, so it will load title_field value and save it to $node->title and then to database.
OR
Setup importer's mapping to set title value both to node title and title_field.
But this workaround does not work with multilingual nodes (using entity translation). If you need to show translated content title, you have to configure it to use title_field (not title atribute).
I am not sure if it is bug in Title or Feeds module.
Comment #6
socialnicheguru commentedComment #7
FranCarstens commentedI've been fighting this all day. I finally:
And BOOM! It worked.
If you're using Commerce Kickstart remember to update the "title" module in "profiles/commerce_kickstart/modules" otherwise you'll end up with a duplicate.
Comment #8
maxplus commentedHi,
using the current DEV solved this issue for me, Title_field is now properly saved during import