qrmiz
Forum Replies Created
-
Hello Michael,
this worked! Thank you very much for quick reply and support!
Amazing plugin and great author, really appreciate what you’re doing!Thanks
Forum: Plugins
In reply to: [Compact WP Audio Player] Audio Not playing on iOSI can confirm this doesn’t work on iPhone browsers.
works on iPad, Mac, but not iPhone.using iPhone 7 with latest iOS (10.2.1)
will there be an update?
Forum: Plugins
In reply to: [Polylang] Polylang and The Events CalendarHi π
is there any chance to get some fix for that one?
If you could help with it, I would be happy to make a donation for your plugin:)
Forum: Plugins
In reply to: [Polylang] Polylang and The Events CalendarHello Chouby,
no I tried this one: http://ww.wp.xz.cn/plugins/the-events-calendar/
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search page 404 errorHello Mikko,
thanks for reply. If I disable Relevanssi/Polylang, page url stays the same and it works fine… but if these two plugins are on at the same time – second page for search doesn’t work…
And I’m not using anything special to create pagination, because it’s default twenty twelve theme
Thanks
Forum: Plugins
In reply to: [Polylang] Search page 404 errorSorry,
it looks like this plugin is messing up with another plugin: https://ww.wp.xz.cn/plugins/relevanssi/
will try to write to their support page
Forum: Plugins
In reply to: [Polylang] Add any strings to strings translation tabAndre – I used your code above:
pll_register_string('footer-mapa', 'mapa do site', 'Theme Option', $multiline);and it worked!
So I believe you can mark it as resolved π
Cheers!
Forum: Plugins
In reply to: [Polylang] Add any strings to strings translation tabhello Chouby,
I find your plugin awesome, thanks for doing a great work!
But I’m struggling with adding new translations in ‘String translation’ tab (topic is related, so decided to post here)I’ve created wpml-config.xml file, tried copying some examples from:
http://polylang.wordpress.com/documentation/documentation-for-developers/the-wpml-language-configuration-file/and here:
https://wpml.org/documentation/support/language-configuration-files/uploaded that file to root of my theme – didn’t work, created ‘polylang’ folder in wp-content and uploaded that file there – didn’t work as well…
tried to add this line to functions.php:
add_action( 'after_setup_theme', 'setup' ); function setup() { load_theme_textdomain('MYTHEMENAME', get_template_directory()); }and then added this to my theme:
echo __(‘Read the rest of this entry »’, ‘MYTHEMENAME’);Thought it will somehow come up to ‘String translation’, but it didn’t…
Tried adding this to my functions.php:
pll_register_string(‘myplugin’, ‘mystring’);
but nothing happened as well..
Really hope you can help
P.S. tried to switch to twentyfourteen theme, didn’t help
Thanks
Forum: Plugins
In reply to: [KIA Subtitle] kia subtitle and polylanghelgatheviking, you are right – supporting other plugins would be crazy thing to do π
An author of ‘Polylang’ plugin helped me with this (I don’t need to synchronize custom fields, then it will not duplicate it)
But thanks for reply and for great plugin!
Forum: Plugins
In reply to: [Polylang] Polylang and Kia SubtitleChouby – thank you! That worked π
Brilliant plugin with brilliant support!Forum: Plugins
In reply to: [Polylang] Polylang and Kia SubtitleRelated question (which would be a solution for this).
Is there a function not to clone specific metas?
Forum: Plugins
In reply to: [WooCommerce] Making State field a not required fieldHi,
I was facing this issue, that’s why I found your post…
It might be too late for an answer, but maybe it will help to someone
(How to remove state/county as required field)
Try this code, it helped me:add_filter( 'woocommerce_billing_fields', 'custom_woocommerce_billing_fields' ); function custom_woocommerce_billing_fields( $fields ) { $fields['billing_state'] = array( 'label' => __('State/County', 'woothemes'), 'placeholder' => __('State/County', 'woothemes'), 'required' => false, 'class' => array('input-text') ); return $fields; }