ecksofa
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Additional AttributesU need to edit aalb_xml_helper.php to make the property available. There a method add_custom_nodes:
$aalb_node->ASIN = isset( $item->ASIN ) ? $item->ASIN : null; $aalb_node->Title = isset( $item->ItemAttributes->Title ) ? $item->ItemAttributes->Title : null; $aalb_node->DetailPageURL = isset( $item->DetailPageURL ) ? $item->DetailPageURL : null; $aalb_node->LargeImageURL = isset( $item->LargeImage->URL ) ? $item->LargeImage->URL : null; $aalb_node->MediumImageURL = isset( $item->MediumImage->URL ) ? $item->MediumImage->URL : null; $aalb_node->SmallImageURL = isset( $item->SmallImageURL->URL ) ? $item->SmallImage->URL : null; $aalb_node->Publisher = isset( $item->ItemAttributes->Publisher ) ? $item->ItemAttributes->Publisher : null; //new properties if ( ! empty( $item->ItemAttributes->Feature[0] ) ) { $aalb_node = $this->add_xml_node( $aalb_node, 'Feature0', $item->ItemAttributes->Feature[0] ); }- This reply was modified 8 years, 5 months ago by ecksofa.
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Additional AttributesYou can display any attribute listed here http://docs.aws.amazon.com/AWSECommerceService/latest/DG/RG_ItemAttributes.html
a lot more than the plugin is offering like genre for musik and movies, additional product features, color sizes and much more. I need it for another project (https://www.eck-sofa.de/ to filter for the color of the corner couch
Forum: Plugins
In reply to: [Amazon Associates Link Builder] Additional AttributesGot it running in the end
http://www.lebenslanggesund.de//demoForum: Plugins
In reply to: [Amazon Associates Link Builder] Additional AttributesOk i found the file. It is all in the aalb_xml_helper.php.
But i am not sure if i am allowed to modify it without violating the conditions of use.
Can anyone confirm this?
Viewing 4 replies - 1 through 4 (of 4 total)