Virtuemart in Storebox, discound removal, ask seller Q..

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue May 13, 2014 2:17 pm
Reply with quote
Report this post
Hey.

I was wondering if anyone could help me on how to remove Discount Amount on Product page -
I am not sure why it suddenly start to showing up:
http://www.manitas.si/newsite/shop/bags ... 003-detail

Also, if I click "Ask a question about this product" on product page - the pop-up window is empty - why is that?

and the last question - how to show prices on a list of products in a single category - like on this link?
http://www.manitas.si/newsite/shop/bags
User avatar
Senior Boarder

GK User
Wed May 14, 2014 8:40 am
Reply with quote
Report this post
How to modify the list of prices in category view you will find here » Virtuemart Category View Prices - Joomla & WordPress Theme Forum

Do you use latest VirtueMart and template version regarding to problem with pop-up window? The prices in article view are defines in global VirtueMart configuration so probably the discount is enabled there, please check this settings » How to prevent tax details from being shown in your VirtueMart store
User avatar
Platinum Boarder

GK User
Thu May 15, 2014 12:07 pm
Reply with quote
Report this post
Hey there.

thank you for your help!

this did the trick on showing prices on category itself:

Code: Select all
//echo $this->currency->createPriceDiv('basePriceWithTax', '', $product->prices);
echo $this->currency->createPriceDiv('salesPrice', '', $product->prices);


Discount, I have it turned off all the time Configuration of VirtueMart, my version is 2.0.26

Image


Virtuemart version is 2.0.26.

Storebox version is <creationDate>12 Feb 2014</creationDate> - says in Template Details XML.

Should I update the template for proper "Ask Seller - popup" and which files to update, so I don't loose my work?
User avatar
Senior Boarder

GK User
Thu May 15, 2014 12:12 pm
Reply with quote
Report this post
ok, I found updates here:
https://www.gavick.com/index.php?filter ... Itemid=399

which should I update - the newest one or all of them from my date of template up?
User avatar
Senior Boarder

GK User
Thu May 15, 2014 10:08 pm
Reply with quote
Report this post
You should download latest version and just overwrite all files this should resolve the problem.
User avatar
Platinum Boarder

GK User
Mon May 19, 2014 9:29 am
Reply with quote
Report this post
Thank you for info. Will backup and update.
User avatar
Senior Boarder

GK User
Mon May 19, 2014 11:04 am
Reply with quote
Report this post
I updated to last version that it's downloadable, but "Ask a question about this product" still opens in empty pop-up:
http://www.manitas.si/newsite/shop/wall ... 018-detail

where is this Ask a question about this product in Admin presented?
User avatar
Senior Boarder

GK User
Mon May 19, 2014 11:13 am
Reply with quote
Report this post
ahh, I figured that empty popup only appears in Chrome while on Firefox and Safari works good (all OS X)...

Chrome and IE on Windows, it works..

so must be some error with Chrome - OS X?
User avatar
Senior Boarder

GK User
Thu May 22, 2014 9:45 am
Reply with quote
Report this post
Here is screenshot from latest Chrome on OSX and it is working for me. I think it might be something with your Chrome version. I've checked also on browserstack and there on clean machine all is fine also.
User avatar
Platinum Boarder

GK User
Mon Jun 16, 2014 7:26 am
Reply with quote
Report this post
it works fine now, I guess Chrome did updated.

I was wondering also, if you can help me where to override CSS of this pop-up?
I just can't find it to work.

Also, how to show prices in Category view, like you have it here:
http://demo.gavick.com/joomla25/storebo ... en-s-polos

while min just not showing:
http://www.manitas.si/newsite/shop/bags
User avatar
Senior Boarder

GK User
Mon Jun 16, 2014 7:42 am
Reply with quote
Report this post
ah, never mind, I just find it in Virtuemart configuration backend that is stated as Unit Price :)

Discount amount I now removed in the code itself: (template/html/com_virtuemart/productdetails/default.php)
because it is showing in frontend, no matter what I do in the backend (Discount Amount is not selected in Configuration/Pricing),
and I don't have discounts listed anywhere at all.

Code: Select all
               //echo $this->currency->createPriceDiv ( 'discountAmount', 'COM_VIRTUEMART_PRODUCT_DISCOUNT_AMOUNT', $this->product->prices );
            echo $this->currency->createPriceDiv ( 'taxAmount', 'COM_VIRTUEMART_PRODUCT_TAX_AMOUNT', $this->product->prices );
            $unitPriceDescription = JText::sprintf ('COM_VIRTUEMART_PRODUCT_UNITPRICE', JText::_('COM_VIRTUEMART_UNIT_SYMBOL_'.$this->product->product_unit));
            echo $this->currency->createPriceDiv ('unitPrice', $unitPriceDescription, $this->product->prices);
User avatar
Senior Boarder

GK User
Mon Jun 16, 2014 1:17 pm
Reply with quote
Report this post
VM should generate only enabled prices because as you can see it is default VM code. Thanks for sharing your solution.
User avatar
Platinum Boarder

GK User
Tue Jun 17, 2014 12:56 pm
Reply with quote
Report this post
no problem :)

can you also please let me know on where I can override CSS of that pop-up - Ask seller a question?

I just can't find it to work.
User avatar
Senior Boarder

GK User
Wed Jun 18, 2014 7:35 pm
Reply with quote
Report this post
If it is default VM popup it should include styles located in vmframe.css from template/css directory so there you can apply all custom changes in styling.
User avatar
Platinum Boarder

GK User
Fri Jun 20, 2014 12:05 pm
Reply with quote
Report this post
Thank you, will do it.

I got another question? :)

When I got live site: www.domain.com and test site: www.domain.com/test and using same database, if I update Virtuemart module on test site, can be then the live website changed to - despite using same database?
User avatar
Senior Boarder

GK User
Sat Jun 21, 2014 9:44 pm
Reply with quote
Report this post
If you use the same database and you update module configuration it should live update on the other website (with the same database)
User avatar
Platinum Boarder

GK User
Mon Jun 23, 2014 9:49 am
Reply with quote
Report this post
bkrztuk wrote:If you use the same database and you update module configuration it should live update on the other website (with the same database)


thanks.

ok, will reinstall test site with other database..
User avatar
Senior Boarder

GK User
Mon Jun 23, 2014 12:30 pm
Reply with quote
Report this post
You can use the same database but different suffix - then you can easily switch between old and new installation using Joomla configuration file.
User avatar
Platinum Boarder

GK User
Tue Jun 24, 2014 7:11 am
Reply with quote
Report this post
aha, so I need to change the suffix when I re-install the template?

or is it possible just to change suffix once it's running too?
User avatar
Senior Boarder

GK User
Wed Jun 25, 2014 9:14 am
Reply with quote
Report this post
Hmm… template re-installation process probably will not change anything in database just overwrite files (nothing more). The database data is changed when you modify configuration in Joomla back-end.
User avatar
Platinum Boarder

GK User
Thu Jun 26, 2014 10:55 am
Reply with quote
Report this post
bkrztuk wrote:Hmm… template re-installation process probably will not change anything in database just overwrite files (nothing more). The database data is changed when you modify configuration in Joomla back-end.


hi

so basically, if I properly understood - I just change this in configuration of offline - developer site (www.domain.com/develop):

public $db = 'samename as the live site';
public $dbprefix = 'some other name of db prefix (than on live site)_';

and then update VirtueMart component, to test the changes on www.domain.com/develop

and the live site which has same $db name (www.domain.com) should stay intact, whatever I do with develop site?
User avatar
Senior Boarder

GK User
Sat Jun 28, 2014 10:47 am
Reply with quote
Report this post
Exactly, the tables will be not change so it will work like database backup :)
User avatar
Platinum Boarder

GK User
Mon Jun 30, 2014 11:08 am
Reply with quote
Report this post
thanks, will try that way.
User avatar
Senior Boarder

GK User
Tue Sep 02, 2014 1:04 pm
Reply with quote
Report this post
hey.

I need some more help at Virtuemart configuration in Storebox template.

I have webstore in English, I've installed Slovenian language packs for Virtuemart but in the Configuration box other than English language is not showing (I have installed the sl-SI.com_virtuemart and sl-SI.VirtueMart_Plugins_Language_Pack ZIP files I downloaded from Virtuemart over Extension Manager: Install) - so what am I missing here?


IMAGE from VM

Image

I have installed Falang module for translation of other sites on the website ( http://www.manitas.si ) and all works good, except News Show Pro module on Frontpage is not showing in Slovenian language - maybe because products in Virtuemart are not translated?

Virtuemart is also translated when switching to Slovenian, except the Product names, Product description and Categories of Virtuemart.


Translated VM PRODUCT

Image
User avatar
Senior Boarder

GK User
Fri Sep 05, 2014 8:28 pm
Reply with quote
Report this post
Please contact with the VirtueMart support - we are not responsible for the VM back-end issues.

Regarding the NSP GK5 module - it supports only the native multilanguage functionality - if products in virtuemarte have no version on other languages then the module won't display it.
User avatar
Administrator

GK User
Tue Sep 16, 2014 9:01 am
Reply with quote
Report this post
ok, thanks will try to figure on virtuemart, regarding NSP GK5 module.
User avatar
Senior Boarder


cron