Sekander Badsha
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] 404 for pages under single categoryHello Randymir,
I guess there is an issue with your permalink settings. Can you please upoload a screenshot for me to have a look?Forum: Plugins
In reply to: [WooCommerce] my thumbnail product should not like usualHello Loghy,
Can you please explain what you are trying to do? Like align the thumbnails side by side or resize the images?Forum: Plugins
In reply to: [Change WooCommerce Add To Cart Button Text] Awesome Font aren't visualized.This should have worked.
Unfortunately I don’t have the canvas theme. If you can send me that, I can check what is going wrong. my mail address is badsha_eee [at] yahoo.com
Forum: Plugins
In reply to: [Change WooCommerce Add To Cart Button Text] Awesome Font aren't visualized.Hello Granitto,
Please check this screenshot https://ps.w.org/change-woocommerce-add-to-cart-button-text/assets/screenshot-3.png?rev=1208964
You will get an idea about how to use font awesome icons on the button.Forum: Reviews
In reply to: [Change WooCommerce Add To Cart Button Text] help requiredHello fahimbepari,
Can you please post the page URL where you are having the issue?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce troubleshootingYou will need an extra add-on to translate WooCommerce products https://wpml.org/documentation/related-projects/woocommerce-multilingual/
Forum: Plugins
In reply to: [WooCommerce] Setting MAXIMUM order QuantityHi,
I have googles with “restrict orders for free delivery woocommerce” and got some plugin suggestions like this https://codecanyon.net/item/conditional-free-shipping-woocommerce-plugin/5923615
Checkout other suggestions found in google and let me know which one you will be using ??
You can use the .po file for overriding the texts.
Like your site language is set to English (United States). So your file name would be woocommerce-en_US.po. Open that, edit whatever text you want to change, save and place that to wp-content/languages/plugins/
For more details on translation, you should read this doc https://docs.woothemes.com/document/woocommerce-localization/
Forum: Plugins
In reply to: [WooCommerce] more noob help – Taxes not showing upDid you create a tax class for the state, which you are using as your shipping address? If not, follow the tutorial here https://docs.woothemes.com/document/setting-up-taxes-in-woocommerce/
Forum: Plugins
In reply to: [WooCommerce] WooCommerce troubleshootingIf you have WPML installed and want to show anything in any language, the content has to be on that language.
1. If the shop page is translated in da_DK, then you must have the products translated in da_DK too. If there is no product available on that language, the shop page will be empty.
2. Check your WPML URL structure and hit the save button once to flush the URL rewrite rule. In my personal opinion, site/da/ is best.
You should not ask about if we can do something with WordPress; I beleive, one day we will make a spaceship operating system with WordPress ??
AFAIK, there is no such solution. You have to make a custom solution for this feature. You can find the source which handles the review system here
\wp-content\plugins\woocommerce\includes\abstracts\abstract-wc-product.php
And the data is stored in 2 tables in the DB:
1. _comments
2. _commentmetaIf you hire a developer, he can make this for you within couple of hours.
Forum: Plugins
In reply to: [WooCommerce] How To Get specific Category LinkHello Devanddhiraj,
I believe you have not read the link Mike provided. The link has an example, if you have read the that clearly, it had a place where you put the custom taxonomy name.
If you replace species with ‘product_cat’, then you would have got all the categories in one place inside an unordered list.
If you need further help, you should hire a developer ??
$terms = get_terms( 'product_cat' ); echo '<ul>'; foreach ( $terms as $term ) { if ( is_wp_error( $term_link ) ) { continue; } echo '<li><a href="' . esc_url( $term_link ) . '">' . $term->name . '</a></li>'; } echo '</ul>';
Forum: Plugins
In reply to: [WooCommerce] Not showing the products in the admin pageHello Moroboro,
Can you find the WooCommerce menu in wp-admin? If yes, can you please post the details found on the System Status page of WooCommerce?
4. Only just for testing purpose. Because I am suspecting that your mail server might be the causing the problem. You can take a complete backup of your site and ask a friend to lend you some hosting for couple of hours to test.
Forum: Plugins
In reply to: [WooCommerce] Affiliate link/Add to cart buttonIf you disable guest checkout from checkout settings, then the user will be forced to register on the checkout page.
https://i.stack.imgur.com/3Liji.pngBut if you want to force the users while they add the product on cart, then you have to custom code it, which will require a developer.