dorothai
Forum Replies Created
-
Forum: Plugins
In reply to: [Filedownload] [Plugin: Filedownload] Couldn't find the fileHi Peter,
thank you for your great assistance in our case, I very much appreciate that you tried to help us and dived into this to find the problem
The plugin works well on the normal website, I have tested it as you said and you were right it is the Apache login that prevents the file open .
I was wondering if it would work with CURL
Very much regret it so – as the flexible URLs is just what I would have needed for this project .
Take care and keep up your good work.dorothai
Forum: Themes and Templates
In reply to: Twenty eleven 1.2 breaks embedded Google MapsHelped me too! Thanks must have been while figuring this one out – was only battling for 2 hours when I found this entry.
I have removed all these widths of images.
I wonder why they put it in in the first place, better add theme support image sizes.Great Day to all.
dorothai
Hi Mike,
after trying all kind of stuff to tget the data again be saved in the database we removed finally the entries in the Data Export: tab such as:
Data export fields to ignore
Data export fields to rename
since then it works fine again and all data is saved to DB.Another thing, if I have 3 forms.
The URL to redirect page after submit is automatically filled in at form 2 and 3 when you create them. The contact form redirects to this page even if the checkbox in tab Redirect: form is not activated. After removing the URL all works fine.Kindest regards
Forum: Plugins
In reply to: [Simple Currency Exchange] AJAX breaks format in IE7/8It works also perfectly in IE7 and IE8 – I rather think that another plugin or even your theme is interfering.
We have the layout customized with toggle to hide show the form when clicking on the header and it’s absolutely perfectly fetching the converted rates – in English language but also in Vietnamese.Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Events not showing in CalendarThe post must be of a category. If you do not select a category the post won’t show.
Since the update of the plugin synchronically with FS Contact Form (also updated) on 9th of February the data is not anymore recorded.
I checked the database to exclude a get data bug.
So which one of the two plugins is causing this bug needs to be investigated.
Nice and useful plugin especially you realize its importance when it stops working!Forum: Plugins
In reply to: [WP Calendar] Announcement: WP Calendar UpdatesFound it
{event_description} echoes the content of the Editor in Admin Calendar.Forum: Plugins
In reply to: [WP Calendar] Announcement: WP Calendar UpdatesHi Faebo,
I have latest version of WP and run it with the Eleganza Theme a bit of tweaking with the theme templates and the calendar displays just perfect.
The only thing which puzzles me is why does the content not display on the detail page.
I have downloaded now the db to check for variables – so I can fetch it and display it together with the data of the event.
My compliments for your good work, its very flexible and allows fine tuning – which is most often not the case – so five star for you from my humble self. ??Forum: Plugins
In reply to: [WP Calendar] [WP Calendar] Not showing past eventshttps://en.kioskea.net/faq/1861-mktime-timestamp-yesterday-last-month-etc#last-24-hours
here you can find all the possible dates back, which you can use with this calendar by including it into the array as Faebu mentioned.
Forum: Plugins
In reply to: Looking for multi-room reservation pluginPossible that you like this one:
https://codecanyon.net/item/js-hotel-booking-system/479152
I have a whole range of the same room type so I just copied the rooms and each room has its own calendar and also its own pricing depending on sea view or mountain view.
Setting the checkout to cash, skips PayPal and the other payment gateways. In fact it can be used for a hotels booking site yet we use it for one single serviced apartments location and it works fine – you can even set the minimum and maximum stay which is what we needed.Forum: Themes and Templates
In reply to: adding a different page template to TwentyElevenYou should change the width of the primary class and the content class in style.css so the width of the sidebar, which is aligned to the right can move upwards. Now its pushed down by the two classes primary and content.
Forum: Plugins
In reply to: adding User Meta Dataright on!
and as most answers do not get answered it’s no funHi Marcus
I do not see the display of the date when entering my group event
<th><?php _e ( ‘Name’, ‘dbem’ ); ?></th>
<th><?php _e ( ‘Location’, ‘dbem’ ); ?></th>
<th><?php _e ( ‘Date – Time’, ‘dbem’ ); ?></th>
<th> </th>
corresponding cols
<td><b><?php echo $EM_Event->name; ?></b></td>
<td><?php echo “<b>” . $EM_Event->location->name . “</b>
” . $EM_Event->location->address . ” – ” . $EM_Event->location->town; ?></td>
<td>
here is the td missing of date – time
instead we get this<?php if($EM_Event->can_manage(‘edit_events’,’edit_others_events’)): ?>
output(‘#_EDITEVENTURL’); ?>”><?php _e ( ‘edit’, ‘dbem’ ); ?>
<?php endif; ?>
</td>
So you actually have to click on edit to see the date – timeForum: Fixing WordPress
In reply to: How to set maximum username lengththere is no more registration.php in wp-include WP 3.1.3
The other problem is that users actually register even with 3 letter username which causes problems too, as most db’s are configured to request at least 4 characters for a search.
Better solution: $valid = strlen($username) > 5 && strlen($username) < 30;Hi Marcus
he could try to deregister the scripts of other plugins or theme on this page, yet he cannot deregister the style of his theme.add_action( ‘wp_print_styles’, ‘my_deregister_javascript’, 100 );
if(is_page(‘Thailand Events’)) {
wp_deregister_script(‘premiumpress’); //this is the theme we use
wp_deregister_script(‘bp-album-js’);
wp_deregister_script(‘more hooks here’); //this has also a calendar and date section as it
wp_deregister_script(‘as many as you need’);
}
}
also styles can cause it as css classes are building the calendar and click functions is most often connected to a css class like arrowadd_action( ‘wp_print_styles’, ‘my_deregister_styles’, 100 );
function my_deregister_styles() {
if( is_home() or is_page(‘Thailand Events’) ){ //calendar on homepage and events page
wp_deregister_style( ‘bp-album-css’ );
}
}