Some questions ?
- darkmanblue
- Topic Author
- Offline
- New Member
- Thank you received: 0
1- How can add acces control to compotent , for exampla i want to control artforms with vodes.now i can control only content , is anyway for compotent control ?
2- Can i add paypal turkish prices , i look script but cant this.
Turkish Lira TRY 19.65 Turkey, Lira TRY 84, 76 54, 4c
is avaible next version ?or a way for add , is it about mysql
3- and how can i change
i changed language en-GB.com_vodes.ini but don find Which files need i change ? for this sentences :
You don't have enough credits to view this article. Please purchase the credits.
4- can ı do only one price stable for example only 10 dolar without other prices selecting , or can i minumum price 10 dolar is it possible ?
Thanks for Vodes : )
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
1. You need to program this. Search this forum for code for subtracting credits from Vodes.
2. If PayPal accepts Turkish Lira then you can.
3. That string is in the Vodes example plugin. Change it there.
4. Yes but you would probably need to edit the HTML code to remove other prices.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- darkmanblue
- Topic Author
- Offline
- New Member
- Thank you received: 0
1. You need to program this. Search this forum for code for subtracting credits from Vodes. which post ? is it this ? i couldnt find
www.sakic.net/forum/vodes/vodes-for-joomla-1-5/30/
is any plugin for acces component like as Manages spending Vodes credits on accessing articles from selected categories.
2. If PayPal accepts Turkish Lira then you can.
yet it accept .so i will do with dolar.
3. That string is in the Vodes example plugin. Change it there.
Thanks i find and changed vodesarticles.php files : )
4. Yes but you would probably need to edit the HTML code to remove other prices.
is it enougf com_vodes_j15\site\views\vodes\tmpl
<option value="50.00">50 <?php echo $this->currency_symbol; ?> (<?php echo 50*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="40.00">40 <?php echo $this->currency_symbol; ?> (<?php echo 40*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="30.00">30 <?php echo $this->currency_symbol; ?> (<?php echo 30*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="20.00">20 <?php echo $this->currency_symbol; ?> (<?php echo 20*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="10.00" selected="selected">10 <?php echo $this->currency_symbol; ?> (<?php echo 10*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="5.00">5 <?php echo $this->currency_symbol; ?> (<?php echo 5*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="3.00">3 <?php echo $this->currency_symbol; ?> (<?php echo 3*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
<option value="1.00">1 <?php echo $this->currency_symbol; ?> (<?php echo 1*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
can i use only one line ? i mean use it
<option value="1.00">1 <?php echo $this->currency_symbol; ?> (<?php echo 1*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' );
change values :
<option value="10.00">10 <?php echo $this->currency_symbol; ?> (<?php echo 1*$this->ratio . ' ' . JText::_( 'VODES_CREDITS' ); ?>)</option>
1.00 : 10.00 1 :10 php echo 1*$thi : php echo 1*$thi
and if i change it its enoughf ?
Please Log in or Create an account to join the conversation.