Deal Plazza Version : 1.1 | Cannot say perfect, but near best ! ;)
- Posted by EYOUNG (12) Offline
So many places changed~
And User Manual is also very nice. So detail and with explanation, screen capture.
Even the currency choosing, type can find out. (Very use heart to develop)
Interface changed to be more beautiful.
====================
1. But User Manual [4 Module] No image display.
2. At the end, [Support Forum] URL is failed.
And Suggestion. If future can auto generate product info with 2D barcode (QR barcode) in the content.
Will be better.
Any way, best wishes, and good luck~!
Developers, please take care of urs body.
Don't sleep to late.
Please Log in or Create an account to join the conversation.
- Posted by plazzoic (6) Offline
And regading your suggestion, it's actually can be implemented by integrating it with QR code generator by google. Can you let us know what part you think need to be QR-ed?
Please Log in or Create an account to join the conversation.
- Posted by EYOUNG (12) Offline
Yes, it truly can be integrated by google. Okay, may add by ourslf.
Other things are share button, and integrated with social network.
Such as
And also promote to 'Buy for friends'. Total number that bought(can be change by website editor).
For previous question.
Here, how to add the recipient email.
And How to change the email template for inform buyer?
Last is watermark of upload each pic with my website logo(here is dealplazza, after I upload my own logo, the watermark can be changed).
Thanks.
The problem I will test later to see whether still got _uload userId problem.
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
I'd say this thing is easy to implement too, by modifying or enabling K2 share function in the category listing, or maybe adding AddThis widget to the template overrider filesOther things are share button, and integrated with social network.
this is actually possible by changing the delivery address in the checkout processAnd also promote to 'Buy for friends'
I'll have a look on this, and will let you know if I can find solution on getting the virtuemart total sold numberTotal number that bought(can be change by website editor).
This is actually can be done by modifying the virtuemart template that exist in the template folder <root>components/com_virtuemart/views folderAnd How to change the email template for inform buyer?
I think this problem is related to dummy content that using a unique user id as K2 / Virtuemart item author. Actually, this problem will be disappeared once remove all the k2/virtuemart dummy items.The problem I will test later to see whether still got _uload userId problem.
But if you want to fix it, there are several ways you can try to fix that :
- You can try to fix this issue by reinstalling the quickstart,
- reassigning all the K2/vm author content
I'm not very clear with the watermark, can you give a screenshot for that?Last is watermark of upload each pic with my website logo(here is dealplazza, after I upload my own logo, the watermark can be changed).
Thanks
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
I've played arround this thing for a moment and found an easy way to add this bought number to the item listing. You just need to modify this file :I'll have a look on this, and will let you know if I can find solution on getting the virtuemart total sold number
<root>/templates/deals_plazza/html/com_k2/alplazza/decategory_item.php
and add this code anywhere you want the total bought item is displayed
$custom = json_decode($this->item->extra_fields);
$db = & JFactory::getDBO();
$id = $custom[3]->value;
$sql = 'SELECT product_ordered FROM #__virtuemart_products WHERE virtuemart_product_id='.$id;
$db->setQuery($sql) ;
$item_sold = $db->loadResult();
echo $item_sold;
hope this helps
Please Log in or Create an account to join the conversation.
- Posted by EYOUNG (12) Offline
my screen capture below.I've played arround this thing for a moment and found an easy way to add this bought number to the item listing. You just need to modify this file :
/templates/deals_plazza/html/com_k2/alplazza/decategory_item.php
Thank you so much, I think u find a while. lol, coz i find a while.
But, i m still having the email problem. How to edit email template?
I cannot find the file to edit....
This is actually can be done by modifying the virtuemart template that exist in the template folder components/com_virtuemart/views folder
Where is it?
Please Log in or Create an account to join the conversation.