EB
Forum Replies Created
-
Seems legit. Check their blog: https://nuancedmedia.com/wordpress-rich-reviews-plugin/
Forum: Plugins
In reply to: [Appointments] Google Calendar & daylight savingsHi!
Is there any workaround? It’s been over two months.
This is a pretty heavy bug for my client. The calendar in integrated in their system, and makes their work difficult. I have an active subscription to WPMU. Is the bug fixed in the + version? We have modified the system to suit our needs, so I wouldn’t like to change to the + version.
Forum: Plugins
In reply to: [Appointments] A problem with displaying services.I am sorry, this does not work. I do not want to display the providers. As I wrote you earlier: “I do not want the clients to see or select the service providers. They just see if the slot is free or taken.”
The screenshots are from the default shortcode as you asked for.
The problem is that I want to have both services, and all times available for booking in the same time, in the monthly view.
Forum: Plugins
In reply to: [Appointments] A problem with displaying services.Hi.
Jorge from WPMU told me: “If you set a limit capacity of 2 for a service then you need to add 1 service provider and 1 dummy service provider in order to enable 2 spaces on the same time slot.”
This works just how I want it to work. I do not want the clients to see or select the service providers. They just see if the slot is free or taken. The problem is with the new service, which is not shown in the monthly view.
Sorry, I can not send a link to the development server. I made you a pdf: https://www.dropbox.com/s/mn1l2y14gj6ouw8/appoitments_problem.pdf?dl=0
Forum: Plugins
In reply to: [Appointments] A problem with displaying services.I have two computers, that can be booked for 90 minutes. For the client it irrelevant, which computer they reserve, so I adjusted the capacity into 2. It work as it should.
The problem is, that the last slot (on thursday) should to be 120 mins. Every other slot during the week is 90min.
I can not change the length of an individual slot, so I had to create a new service for that.
This is how I have set everything up:
There are two seats on every reservation, so I have set the capacity into 2:
https://dl.dropboxusercontent.com/u/212765/services.pngI have created 4 (dummy) providers for my services:
https://dl.dropboxusercontent.com/u/212765/providers.pngThese are my working hours for service 1:
https://dl.dropboxusercontent.com/u/212765/whours1.png
And they show ok with shortcode app_monthly_scheduleThese are my working hours for service 2:
https://dl.dropboxusercontent.com/u/212765/whours2.png
They are not visible in the monthly bookin calendar.If I change the shortcode to app_monthly_schedule service=”2″, I can make the “service 2” bookings. I am unable to show both Service1 and Service2 in the monthly schedule.
Forum: Plugins
In reply to: [Appointments] Customer name not registeredThanks, it works!
Forum: Plugins
In reply to: [Appointments] Customer name not registeredForum: Fixing WordPress
In reply to: Uploading fails to HTTP Error or login screen with files over 8MB.Problem solved! Finally.
So. The key was to modify the php.ini file. On my server I can make custom .ini files to a folder _custom_php_settings.
What I did not know was, that the settings have to be set in every folder, where they are needed. In this case the file called upload.php is processing the uploaded files.
Upload.php can be found from wp-admin -folder, so I copied the new .ini -settings there. Problem solved. The same should work with the .htaccess -file.
My php.ini file:
post_max_size = 100M upload_max_filesize = 50M memory_limit = 100M
:e
Forum: Fixing WordPress
In reply to: Uploading fails to HTTP Error or login screen with files over 8MB.Forum: Fixing WordPress
In reply to: Uploading fails to HTTP Error or login screen with files over 8MB.Forum: Fixing WordPress
In reply to: Uploading fails to HTTP Error or login screen with files over 8MB.So … to be absolutely sure, I just re-installed the WP, then added following to the .htaccess:
php_value upload_max_filesize 81388608 php_value post_max_size 161388608 php_value max_execution_time 1500 php_value max_input_time 1500 php_value memory_limit 161388608 # BEGIN WordPress # END WordPress <IfModule mod_security.c> <Files async-upload.php> SecFilterEngine Off SecFilterScanPOST Off </Files> </IfModule>
The problem appears, so it can not be related to any plugin or corrupted WP-files.
Forum: Fixing WordPress
In reply to: Uploading fails to HTTP Error or login screen with files over 8MB.If I use the browser upload (not flash), it just stops when the file is uploaded. No errors, nothing, with > 8M files.
Forum: Fixing WordPress
In reply to: A guide to patch 2.3.3. line-by-line ?Well, in this case that’s impossible. What I was looking for, is an information, if there are vulnerabilities that sould be patched. I am not looking for any new functions etc.
Any help would be appreciated.
Thanks,
:e
Forum: Fixing WordPress
In reply to: Cannot Type In Post BoxI had the same problem with IE7. I tried everything. Then I renamed the folder
wp-includes/js/tinymce/plugins/spellchecker
to something else. Just to make sure, the problem is not with the spell checker. Well, IE7 worked fine!
But just to make things weird – after this I deleted the whole tinymce -folder, and reinstalled it from the 2.3 packet – and everything still works, now with the spell checker?
—
This problem has to be related to the spell checker. I think the problem is with the languages. It tries to search for wp′s local language – and if its not found, it should use English. I red from somewhere, it tries to use the translation from Google…
—
Anyway, everything works for me now, but feels a little insecure.
Forum: Installing WordPress
In reply to: Disable Comments on PagesOh, old post and still open. Here’s how to do it.
1. Open your theme’s index.php file.
/wp-content/themes/YOURTHEME/index.php2. Find
<?php comments_template(); // Get wp-comments.php template ?>
3. Replace with:
<?php //let's show something else than comments on pages if (is_page()) { echo 'Some text'; } else { comments_template(); // Get wp-comments.php template } ?>
4. You can replace ‘Some text’ with anything you want. If you want it to be blank, just use ”.