chodorowicz
Forum Replies Created
-
Hey George!
I’m using all the latest version
WooCommerce 3.6.3
WooCommerce Multilingual 4.6.2.1
WPML Multilingual CMS 4.2.6
WordPress 5.2Unfortunately my theme is quite outdated since the author is not providing any updated to it. Do you think some function the theme could cause this behavior?
My issue is even more prominent that the one from original poster, since all the prices, also single quantities, even before adding them to the cart are multiplied two times by currency multiplier.
Is there any update on this issue? It seems I have similar issue with the lastes WooCommerce and WooCommerce Multilingual. Prices seem to be multiplied twice. I’ve set conversion rate to 3x, but prices are multiplied 9x.
Forum: Plugins
In reply to: [IG PageBuilder] Extra paragraph tag around generated contentThe problem is not the div tag, the problem is extra paragraph tag. It’s not even semantically correct to have all content inside one paragraph. (Even on your demo site you have paragraphs inside paragraphs because of that, that’s not correct HTML 😉
<p> <!-- All IG PageBuilder inside --> </p>This extra paragraph tag surrounding shortcodes is known “problem”. Here’s solution I’ve used http://stackoverflow.com/questions/5940854/disable-automatic-formatting-inside-wordpress-shortcodes
But you can also solve somehow in your plugin. E.g. SiteOrigin Page Builder doesn’t have this issue.Forum: Plugins
In reply to: [IG PageBuilder] Extra paragraph tag around generated contentHey,
here it is. It’s fresh WordPress 3.9.1. IG Pagebuilder is the only plugin I’m using. The theme: Twenty Fourteenhttp://dev.chodorowicz.eu/?page_id=4
plugins: http://cl.ly/image/1c3o1o0W0u36
page content: http://cl.ly/image/1P021S1K3y1oGenerated content (as you can see by following link)
<div class="entry-content"> <p><div class='jsn-bootstrap3'><div class='row 'Thanks for response!
Forum: Plugins
In reply to: [Google Maps Plugin by Intergeo] Auto open info popup over marker?Sure, thank for info. I had to code that manually (I haven’t any plugin that supports that).
Forum: Reviews
In reply to: [Better Font Awesome] Deliver what it claimsSounds awesome 😉
Forum: Plugins
In reply to: [Better Font Awesome] Fatal errorNot a really big issue, it’s just extra (failed) GET request on the user side. It’s then probably this framework’s issue.
Forum: Plugins
In reply to: [Better Font Awesome] Fatal errorI seem to see one more issue – on frontend I get
GET â– â– â– /wp-content/uploads/titan-framework-better-font-awesome-css.css?ver=3.8.1 404 (Not Found)from
<link rel='stylesheet' id='tf-compiled-options-better-font-awesome-css' href='â– â– â– /wp-content/uploads/titan-framework-better-font-awesome-css.css?ver=3.8.1' type='text/css' media='all' />Forum: Plugins
In reply to: [Better Font Awesome] Fatal errorHey Mickey!
Thanks for blazing fast fix! It works flawlessly now. I’ve mentioned that it needs PHP 5.4 just because of the issue with referencing function return array directly without temporary variable – I didn’t know if you used this or some more 5.4 features.Greets
Jakub ChodorowiczForum: Plugins
In reply to: [[DEPRECATED] Pronamic Cookies] Different text per languageYeah, exactly, link target should also be translated (different page for different languages). It should be done using some standard WP select list and the link outputted using get_permalink()
I’ve hard-coded it (since plugin doesn’t provide option to insert page ID, only static link) and use something like that in code:
<a href="<?php echo get_permalink(here_goes_page_id); ?>"WPML’s automatic ID adjustment does the rest of job.
Forum: Plugins
In reply to: [[DEPRECATED] Pronamic Cookies] Different text per languageviews/message.php file must be edited and echo calls on $message must be surrouned with WP translations functions __()
Then they can be translated, e.g. via WPML.
My final file views/message.php file
<div id="pronamic_cookie_holder" class='pronamic_cookie_position_<?php echo $position; ?> <?php if ( is_admin_bar_showing() && 'top' == $position ) : ?> admin-bar-showing <?php endif; ?>'> <p> <?php if ( ! empty( $link ) ) : ?> <a href="<?php echo $link; ?>" target="_blank"><?php echo __($message); ?></a> <?php else: ?> <?php echo __($message);?> <?php endif;?> <a class='pronamic_cookie_close_button'><?php _e( 'Close', 'pronamic-cookies' ); ?></a> </p> </div>Sure, done it, you’re welcome.
Forum: Plugins
In reply to: [Filenames to latin] Sanitize existing filenamesSo, in the meantime, for anybody who has the same problem (broken characters in filenames) there’s a solution that worked for me: this plugin ( http://ww.wp.xz.cn/extend/plugins/media-file-renamer/ ) renames all media file names according to the attachment name and sanitizes all accented/non-standard characters. It took me about 10m to rename about 400 files (I had ti resolve naming conflicts).
Forum: Plugins
In reply to: [Filenames to latin] Sanitize existing filenamesThanks. This feature would be really cool. I’m trying to move a site with loads of such ‘dirty’ file names between servers. Images works on server A even thought the file names have non standard characters, but on a server B everything breaks.
Forum: Plugins
In reply to: [YOP Poll] No Templates and missing yop-poll-admin.jsYep, Forest Skills solution worked for me too.