Azim Hikmatov
Forum Replies Created
-
Forum: Plugins
In reply to: [CLEditor for WordPress] EmoticonesIt has not been tested with bbPress.
As for Emoji – I think this question goes to CLEditor developers.
Forum: Plugins
In reply to: [CLEditor for WordPress] Any way to add a math equation button?I think this question goes to CLEditor developers.
Well, the point is that I’m not actually author of the editor as such, I’ve just tried to integrate the available editor with WordPress environment.
However, the editor does support bbcodes, so I can think of bundling them in next versions…Thank you very much, fixed that.
OK, thank you for your comments, I’ll try to update it soon.
I’ve tried following code, and odd enough, it did work
(though URLs don’t look that good after submission).
Let’s say, you’ve got 2 langs, english and french, english being a default and french second one.
Go to /wp-content/plugins/si-contact-form/si-contact-form.php as mentioned in previous post and find those lines mentioned.// set the type of request (SSL or not) if ( getenv('HTTPS') == 'on' ) { $form_action_url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; } else { $form_action_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; }and replace ’em with
if(get_locale() == 'en_US') { if ( getenv('HTTPS') == 'on' ) { $form_action_url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; } else { $form_action_url = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; } } else { if ( getenv('HTTPS') == 'on' ) { $form_action_url = 'https://'.$_SERVER['HTTP_HOST'].'/fr/'.$_SERVER['REQUEST_URI']; } else { $form_action_url = 'http://'.$_SERVER['HTTP_HOST'].'/fr/'.$_SERVER['REQUEST_URI']; } }May not work but who knows…
I confirm the problem, same here with ru_RU.
Havesmcf-ru_RU.mo smcf-ru_RU.po define ('WPLANG', 'ru_RU');tried both – having lang files if the root folder of plugin and in the ‘lang’ subfolder. None worked.
Forum: Plugins
In reply to: [Fast Secure Contact Form] [Plugin: Fast Secure Contact Form] datesThanx for the tip, have removed z-index used in background-image for the body and everything works just perfectly!
Thank you very much! You rock! Will now replace all other form plugins at other WP-sites for FSCM as it beats them all!Forum: Fixing WordPress
In reply to: wp_login_form(); not working?I don’t need it to go to admin. I want it to display the results of authorizations, like “Welcome, username” or whatever… Or “wrong password”. Now it just doesn’t give me anything, it reloads and shows the form again – how am I supposed to know if I logged in or failed?
Forum: Plugins
In reply to: [Plugin: WP-dTree] 3.5 doesn’t work in wp 2.8Yes, I’ve tried it for 2.8 and faced the following:
1) When trying to activate, you get this
Fatal error: Cannot redeclare wp_dtree_get_id_transpose() (previously declared in /wp-content/plugins/wp-dtree-30/wp-dtree.php:113) in /wp-content/plugins/wp-dtree-30/wp-dtree.php on line 123
Plugin still gets activated though…2) I don’t use widgets so when I paste the code provided in the sidebar, it just doesn’t work – no errors, just empty space, nothing is shown.