thomask
Forum Replies Created
-
Forum: Plugins
In reply to: [Loco Translate] Loco Translate does not find strings in any theme filesHi @timwhitlock
i am also lost as romashah62
i understand the process, but the problem is, taht i do not see any way, how can i sync the POT with the source code and i believe i have walked it all through several times
When i click edit template, so when i am on
/wp-admin/admin.php?path=themes%2Ffutureportprague%2Fcs_CZ.po&bundle=futureportprague&domain=futureportprague&page=loco-theme&action=file-edit
so i am in the Editor, there is only one Sync and that sync with the pot. I do not see any sync or anything else that is syncing source to the pot.
There is no problem with the files, i can save them etc. So i am completely blind or there is some problem with the pluginForum: Plugins
In reply to: [Shortcake (Shortcode UI)] Inclusion in WordPress coreAny news regarding to this? The plugin is not developing for several months (just few minutes ago there is some bugfix) and the issues are feature requests or ideas for improvements, so i guess it is ready for make it part of core so that the plugin authors could rely on it and hopefully we will get some interesting usages
Forum: Plugins
In reply to: [Enlighter - Customizable Syntax Highlighter] Highlight a part of a text?thanks, i will stick with this as i like it 🙂 (and i have not found any other, that supports it)
Forum: Plugins
In reply to: [Enlighter - Customizable Syntax Highlighter] Highlight a part of a text?thanks for response. I was wondering about some “hack” using e.g. nested shortcode. So that e.g. i would wrote
<code>this is my code [highlight]and this what i want to highlight[/highlight] and the rest of code</code>– if this would work, it would not need any complex changes. Of course this option would have to be optionaly turned off for the rare cases, when someone wants a code with [highlight] in brackets.Forum: Plugins
In reply to: [Imsanity] Feature request: tiff to jpgi think that even if it would simply first check, if user got imagemagick and if yes, then allow this feature (and if not, then try also gd with tiff) it would save some souls 🙂
many wp blogs run on hosting, where they got option to instal what they want, and if this would be crucial to someone, he could move to better hosting company, if it is not supported by his current one.Forum: Plugins
In reply to: [Advanced Custom Fields: Validated Field] small problem with unieque and WPMLit works now, great. (i have also turned off and on the plugin), maybe it helped.
P.S.: i use post type + key.
I have tried it, but not it does not work at all – the field isn’t saved now (even with debug off). Also when i change it back to text, it wrongly keeps the old rows in ACF (but they disapear after field save).
it now throws theese error notices in ACF
Notice: Undefined index: class in /home/www/groupeseb-download.cz/www/groupeseb-download.cz/wp-content/plugins/advanced-custom-fields-pro/fields/text.php on line 103
Notice: Undefined index: readonly in /home/www/groupeseb-download.cz/www/groupeseb-download.cz/wp-content/plugins/advanced-custom-fields-pro/fields/text.php on line 111
Notice: Undefined index: disabled in /home/www/groupeseb-download.cz/www/groupeseb-download.cz/wp-content/plugins/advanced-custom-fields-pro/fields/text.php on line 111
otherwise it works. Seems like some not optional fields for acf render_fields (what should be imo reported to acf, as they should probably have some defaults and do not throw error notices).
Hi DoubleSharp. First let me thank you for your plugin as it is otherwise great.
The two stars are not for the plugin quality, but for making a plugin without debug testing, what is a basic, that should be by every plugin author. Not just because it helps reveal the errors, but also using deprecated functions, that may destroy the website completely when wordpress is updated (and remember – today the wordpress can update even without user interaction). That’s why wise wp developers always use scripts, that do not produce warnings. I’m going to try your fixed version and i will eventualy update my review to 5 stars 🙂Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] wrong exampleand it is not possible to set up 3.5+ options like custom post types
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] some filter for post types1. it is not easy to add anything to custom post type definitions as many users are using some plugins to create CPT’s
2. I do not see anywhere “Display results from all post types” option, not even with advanced plugin
Forum: Plugins
In reply to: [Edit Flow] error noticeanother one Notice: Trying to get property of non-object in C:\Users\Tom\web.zdrojak\public\wp-content\plugins\edit-flow\modules\custom-status\custom-status.php on line <i>365</i>
Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] some transition_post_status action?ufff, it took me some time but i finaly found a solution so you could repair it – fyi repaired action (btw if you would implement it, then do not put it to that notification module, otherwise it will not work if someone got it turned off, it should be imo universal code)
function transition_post_status($new_status, $old_status, $post) {
$post = (‘inherit’ == $new_status) ? get_post($post->post_parent) : $post;
global $post_status;
if (!empty($post_status)) {
$old_status = $post_status;
$new_status = $post->post_status;
} else {
$post_status = $post->post_status;
return;
}if ($old_status == $new_status) return; // do nothing if no status change
// now do something with the old and new statuses
print_r ($old_status);
print_r ($new_status);
}Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] Retrieve Users in Usergroupthank you – please could you look at http://wordpress.org/support/topic/plugin-edit-flow-some-transition_post_status-action?replies=2#post-3248739 and confirm, that your code does not work so that i do not try to find out?
Forum: Plugins
In reply to: [Edit Flow] [Plugin: Edit Flow] Retrieve Users in Usergroupis there any reason why don’t you use built-in tables? this is a typical user meta information