NotDifficult
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Wordpress Security] Disable spam protection?As workaround I added following code to some other plugin which is loaded before WWA:
function antispam_scripts_styles_init() { };
A setting would be nicer, though.
Forum: Plugins
In reply to: [BackUpWordPress] Permission denied@aruncappi: Confirmed, same warning, backup is okay. Using BackUpWordPress 3.2.7.
To get rid of the warning, force using PclZip by adding to
wp-config.php
:define( 'HMBKP_ZIP_PATH', 'PclZip' );
Forum: Themes and Templates
In reply to: [Omega] Language file available?Oh it’s there: Use link above, click “omega” link, choose “export” at the very bottom.
Forum: Themes and Templates
In reply to: [Omega] Language file available?That is very good news! Thanks for the link. 58% is already translated according to https://translate.www.ads-software.com/locale/de/default/wp-themes/omega
I cannot find a download link, though. Neither instructions how to obtain translations via WordPress.
Forum: Themes and Templates
In reply to: [Omega] Language file available?Considering that Omega supports localization, they should offer some archive where users can upload their .mo and .po files to make them available to other users. Having everybody to do their own translations is just unnecessary.
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Date picker not active ?@tanvic, do you call wp_head() in your theme’s php file as @franky suggested? Read more here: https://codex.www.ads-software.com/Function_Reference/wp_head
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Date picker not active ?Try opening the debugger console (usually shortcut F12) and watch out for any warning or errors. I accidentally entered some ill-formed JS code in a post which broke the date picker.
Alternatively, it might be this issue:
https://www.ads-software.com/support/topic/removing-inputlocation_name-from-formphp-breaks-datepickerIf that is your problem, as quick workaround, add to your
form.php
:
<label style="display:none" for="location_name"><label>
Forum: Plugins
In reply to: [Events Made Easy] #_NAME in booking form != #_NAME in cancel formDid you commit?
https://plugins.svn.www.ads-software.com/events-made-easy/trunk/eme_formfields.php is still on revision 1147978 (April 28, 2015)
Forum: Plugins
In reply to: [Events Made Easy Frontend Submit] Category forced eventhough disabled!The category block in https://plugins.svn.www.ads-software.com/events-made-easy-frontend-submit/trunk/templates/form.php could/should also be wrapped:
<?php if (get_option('eme_categories_enabled')) { ?> <div class="input select"> <label for="event_category_ids"><?php _e('Select the Event Category','emefs'); ?> <small><?php _e('required','emefs'); ?></small></label><br/> <?php EMEFS::field('event_category_ids'); ?> <?php EMEFS::error('event_category_ids'); ?> </div> <?php } ?>
Forum: Plugins
In reply to: [Events Made Easy] #_NAME in booking form != #_NAME in cancel formSame problem with
user_firstname
three lines below.