ekajuan
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Product Image Flipper] Not workingYes, exactly that’s the problem. The jquery searching for ul and li etc. but your theme design doesn’t use that. So it cannot animate your image.
I went to your shop and check your html structure but I din’t see your second thumbnail. Have you activated your flipper plugin?
Forum: Plugins
In reply to: [WooCommerce Product Image Flipper] How do you load a second picture?The second image comes from the first pic in product gallery. If you have it and it still doesn’t show up. Then it must have something to do with your theme design. You have to tweak it.
The problem may be in content-product.php.
change :
//do_action( ‘woocommerce_before_shop_loop_item_title’ );
into
do_action( ‘woocommerce_before_shop_loop_item_title’ );I don’t know whether this works or not for you. Since I don’t have any idea how your theme developer design your theme.
Forum: Plugins
In reply to: [WooCommerce Product Image Flipper] Not workingI can take a guess since I have gone through simillar problem. If your second thumbnail has shown up, but nothing happens, probably you have to adjust your script.js
This particular part may be the problem
jQuery(document).ready(function($){
jQuery( ‘ul.products li.pif-has-gallery a:first-child’ ).hover( function() {adjust the “ul.products li.pif-has-gallery a:first-child” with your theme’s html tag.
I have managed to make it work with theme Virtue from Kandencethemes.
Yes, first it doesn’t work, then I have to do some tweaks here and there to make this plugin works.I have blogged how to work with this problem, but it’s in Indonesia. Maybe you can google translate or ask me if you really need one, I may be able to provide a translation.
https://dapur-uang.com/tutorial-tambahan-membuat-tokol-buat-gambar-produk-bisa-berganti-ganti/
Forum: Themes and Templates
In reply to: [Virtue] Sidebar in Product Category Page is GoneOh! You are right. That is the problem.
Thank you very muchForum: Plugins
In reply to: [Codestyling Localization] Translation doesn′t work, please help!I would like to answer the first problem:
Words that can be translated has to contain the followings in the coding:
echo __
or
_efor example:
echo __( ‘order:’ )
or
_e( ‘order:’ );Maybe many words in your theme are not coded this way. If that’s the case, you have to find those words including the “by” in your files and change it manually.
Forum: Plugins
In reply to: [Codestyling Localization] Woocommerce Add to Cart TransalationI already figure out the problem.
It turns out that the problem was the source language in .po contains some html code that’s different from the one in the coding itself (single-product-reviews.php)in .po:
There are no reviews yet, would you like to <a href=\"#review_form\" class=\"inline show_review_form\">submit yours</a>?
in single-product-reviews.php:
There are no reviews yet, would you like to <a data-toggle="collapse" data-parent="#review_form" href="#review_form" class="inline show_review_form">submit yours</a>?
So I fixed it.
But now in the new update of WC 2.1.2 lines and phrases the old translation (Indonesia) be used anymore. I have to rescan it and as the result, many have disappear and I have to translate them again on my own.
And particularly for the line I mentioned above has turn into : “There are no reviews yet” only.
Damn…I spent days to figure out this problem and now.. ??
Forum: Plugins
In reply to: [Codestyling Localization] Changes don't showHave you guys edit your wp-config.php
and change :
define(‘WPLANG’, ”);
to
define(‘WPLANG’, ‘nl_BE’);I think nl_BE is the locale for dutch. mine is id_ID for Indonesia
Forum: Plugins
In reply to: [Codestyling Localization] Allowed memory size exhaustedI’m not an expert, but maybe it has something to do with your hosting server limitations. Especially if your’re using a shared hosting. So even you’re setting it high, the server itself limit the memory resource for you to use.
I don’t know, I can be completely wrong.Other alternative solution I used is to setup a local server in my computer using wampserver, and go through the translation process there. And then I upload the translation files to my hosting.
Forum: Plugins
In reply to: [Codestyling Localization] Woocommerce Add to Cart TransalationHai Webby,
I didn’t.
And yea after I did it. It works.
But then I find another problem, there’s a translation that doesn’t show up.
In the .po file I can see the translation is already there:
#: templates/single-product-reviews.php:71
#@ woocommerce
msgid “There are no reviews yet, would you like to submit yours?”
msgstr “Belum ada ulasan, maukah anda untuk menulis ulasan Anda?”But even I generate the .mo file. My shop, for that particular line is still using the original language.
What happened? How to fix it?
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Long Subtitle Went Beyond the Player WidthHai Karthikeyani,
thank you for your solution. But I’m looking for a way to get it wrapped, otherwise I have to set the font to a very little size, and it won’t be comfortable to read.
Is there any code that can be tweaked?
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Long Subtitle Went Beyond the Player Widthone more question how to delete/remove a subtile?