mystifier
Forum Replies Created
-
Hi RavanH,
Yes, I have a user access plug-in running but author has moderate_comments rights. It sounds as though other permissions are necessary.
Thanks for your help.
I think that many people are eagerly awaiting shortcodes.
It is though, currently possible to select which categories should be displayed in the widget so you would have to use a slightly different approach and have a new event category ‘widget’ and add the 5 events you want to display to it.
Events can belong to more than one event category without being duplicated on the calendar. The only downside is that ‘widget’ will show in the category dropdown.
Note: Widgets events category selection does not display correctly in IE9 so you need to use a different browser.
You need to add a shortcode in your post such as:
[wpsqt name=”Your Quiz Name” type=”quiz”]
Can’t wait!!
Without being able to provide restricted/pre-filtered views, I haven’t been able to use this plug-in for real.
Shortcodes will make an enormous difference and probably warrants v2.0 on its own.
At the top of the Quiz edit form is a menu:
Edit | Sections | Form | Results
Thanks Yani.
Recurring events are a convenience for adding events at a regular intervals; I think to cater for other patterns would make it too complicated.
To delete gaps for holidays, it would be possible to simply delete the entry from wp_ai1ec_events directly from the database; for example:
DELETE FROM wp_ai1ec_event_instances WHERE DATE(start)= "2011-18-11"
(To delete all events from a date)DELETE FROM wp_ai1ec_event_instances WHERE DATE(start)= "2011-18-11" AND post_id=123
(to delete a specific event from a date)Okay, I got it.
I needed to change
<?to<?phpin screencast.php and it works fine.Okay – yet another update and I have to re-apply it again.
Reported bugs with fixes in pages/site/survey and pages/site/poll not implemented and need re-applying.
Reported fix with results page need re-applying.
The new results page doesn’t work because of a bug anyway so all in all, not a great start to the day and I can’t be bothered to make any more suggestions.
Bizarre!!!!
I just tried it in Chrome and it is fine- the problem is IE9 related.
If I change anything in IE9, I don’t see the effect, even with cache clear – until I completely close the browser session and open a new one.
If I have Chrome and IE9 open at the same time, changes in either browser are seen immediately in Chrome but never seen in IE9 until it is closed and re-opened.
I have never seen a similar effect but anyway, in Chrome it is an amazing 5* plugin.
I really appreciate your tolerance codeasily, but I give up.
– Go to skins page
– Activate Green Style PRO DEMO
– Change every Active Skin colour to #ff0000Nothing changes – but it has created flagallery-skins/green_style_pro_demo_settings.php
– Go to green_style_pro_demo folder
– Change every colour to #ff0000 in settings.phpNothing changes.
Is it simply that DEMO skins can’t be changed ?!?!
Sorry but I just don’t get it.
The two skins I am interested in are ‘Default’ and ‘Green Style PRO’. I have a page with both on using different galleries. They look great – except that the colours are completely wrong.
‘Default’ does not appear in Skins list, ‘GreenPro’ does. After clicking Activate it says ‘Activated by Default’ but there is no ‘Options’ link.
In ‘Options->Image Gallery Options’ there is no Background colour option. Changing everything else to #ff0000 to test has no effect.
In files plugins/flagallery-skins/xxxx/settings.php, there is a $backcolor option but changing values to #ff0000 to test has no effect.
Thanks Codeasily,
I have full permissions and I can see now that I can manually edit settings.php but I couldn’t see how to access this from admin.
In Options->Image Gallery Options there is a settings page but this does not seem to relate to any particular skin and changing values has no effect.
Most of the important ones such as $Backcolor $slDelay etc., don’t show on the settings page but are in the php file.
Skins list does not show all skins (after refresh skins) and most don’t have ‘Options’ link.
In lib/Wpsqt/Shortcode.php around line 280:
if ( isset($_POST['answers']) ){ $_SESSION['wpsqt'][$quizName]['sections'][$pastSectionKey]['answers'] = array(); $canAutoMark = true; foreach ($_SESSION["wpsqt"][$quizName]["sections"][$pastSectionKey]["questions"] as $questionData ){ if ( isset($questionData['required']) && $questionData['required'] == "yes") { $requiredQuestions['exist']++; } }Needs to change to:
$_SESSION['wpsqt'][$quizName]['sections'][$pastSectionKey]['answers'] = array(); $canAutoMark = true; foreach ($_SESSION["wpsqt"][$quizName]["sections"][$pastSectionKey]["questions"] as $questionData ){ if ( isset($questionData['required']) && $questionData['required'] == "yes") { $requiredQuestions['exist']++; } } if ( isset($_POST['answers']) ){Because the check for required answers is only done if answers exist.
EDIT: crossed posts!!
Forum: Fixing WordPress
In reply to: Permalink /category/Thanks esmi, but that is exactly what I read to set-up the permalinks.
I would like my URL to be:
website.co.uk/mycategory/mypage
but I get:
website.co.uk/category/mycategory/mypage
(where /category is literally, always “/category”)I have numerous websites with different templates and the same is true in all cases.
I can’t see what else to try. /%postname% and /%category%/%postname% seem to produce exactly the same result.
.htaccess is exactly as recommended:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>