|
It probably does have some customization. Is there anything I can change in one of the files of the booking component that would fix this? If so, please let me know which file and where in the code. Thanks!
|
Change Payment Title ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Ok, thanks.
|
Periodic Layout Brea ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Yes, the language files are loaded.
|
Change Payment Title ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
I sent the email to you. Thanks so much!
|
Periodic Layout Brea ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
I'm using Joomla! 3.0.2 Stable.
I did as you suggested and it said there were no language errors.
|
Change Payment Title ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Ok, thanks for letting me know!
|
Change Week Format i ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Hello, I'm having trouble with the periodic layout. I need this functionality to work because I have a customer that wants to book the facility every Monday and Wednesday from 5:30-7:30pm. I have the periodic layout turned on in my configuration. Here are some problems that I'm facing with it.
1. I cannot select a certain time-frame, only certain days.
2. When I book those days, I get a message on the check-out page saying, "MISSING_ITEM".
3. When I go back to the booking page, I get a 500 error that says, "500 - DateTime::__construct() [datetime.--construct]: Failed to parse time string (0-W16) at position 0 (0): Unexpected character"
4. After disabling the periodic layout and clearing my cache, I am able to get the book it page to work again, however the reservation that I just made does not show up, even though it does show up under reservations in the back-end.
Can anyone help me resolve these issues? Thanks so much!
|
Periodic Layout Brea ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Thank you so much!!! I got it working by changing the code to this...
function getWeekSelect($name, $selectedWeek, $selectedYear, $deep, $attribs = '')
{
$arr = array();
for ($i = 0; $i <= $deep; $i ++) {
$date = JFactory::getDate('+ ' . $i . ' week');
$date->modify('this week');
$week = (int) $date->format('W');
$week1 = $date->format("n/j");
//in php 5.2 retur null, in php 5.3 return DateTime Object
$date->modify('+6 days');
$week2 = $date->format("n/j");
$year = (int) $date->format('Y');
$text = $week .'/'.$year.' ('.$week1 . ' - ' . $week2.')';
$arr[] = JHTML::_('select.option', $week . ',' . $year, $text);
}
return JHTML::_('select.genericlist', $arr, $name, $attribs, 'value', 'text', $selectedWeek . ',' . $selectedYear);
}
|
Change Week Format i ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
English
|
Change Payment Title ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Thanks for your reply. I looked through the files mentioned in that FAQ article, but still haven't been able to resolve the issue. Could you be more specific as to which file and which line in that file that I need to edit. The closest thing that I could find in the language folder was a file called "en-GB.plg_bookingpayment_paypal.ini". In that document I found this line...
PLG_BOOKINGPAYMENT_PAYPAL="PayPal"
It seems like that should take care of the problem, but it's not. Here is a screenshot of what I'm seeing. Any ideas on how to fix this?
|
Change Payment Title ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Thanks for your reply. However, I have already updated the settings under Configuration > Formatting, but the "Select Week" dropdown is not being affected by that. As you can see in the first screenshot, I have the custom formatting selected, and it's affecting most of the formatting except that "Select Week" drop-down menu that you can see in the second screenshot. How can I change this?
|
Change Week Format i ...
|
Posted 10 years, 11 months ago
by strongroots
|
|
Is there a way to change the formatting of the dates in the drop-down box on the week layout view? This is currently what the formatting looks like, Select Week - 23/2014 (2.6 - 8.6). I would like for it to look like this, Select Week - 23/2014 (6/2 - 6/8). I have found ways to change all the rest of the date formatting, except this drop-down menu. Thanks!
|
Change Week Format i ...
|
Posted 10 years, 12 months ago
by strongroots
|
|
Hello, I'm wondering if there is a way to change the title of the various payment types in the reservation form. Right now, I have three options for payment, Cash, Check or PayPal. However, it is displaying the plugin name (ex. plg_bookingpayment_paypal_name) rather than just a normal title like PayPal in the reservation form. I found no way to change it in the back-end. How can I fix this? Thanks!
|
Change Payment Title ...
|
Posted 10 years, 12 months ago
by strongroots
|
More |