WP Native
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Line breaks in item namesHello @crusader445
Upon checking, i can see this happening on smaller screen sizes such as iPad.
https://prnt.sc/VGeIpOBvEc0cThe below css snippet goes to your theme’s custom css options under Appearance > customize > Additional css
@media only screen and (min-width: 320px) and (max-width: 720px){ .variation-Modell{ overflow-wrap: break-word!important; word-break: break-word!important; }}You can tweak the screen size
(min-width: 320px) and (max-width: 720px)if needed. You should be able to see the end results as shown hereHope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Woo menu button have dissapearedFound a fix:
in plugins/woocommerce/includes/admin/class-wc-admin-menus.php
line 64replace:
add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'edit_others_shop_orders', 'woocommerce', null, $woocommerce_icon, 55 );by:
add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'edit_others_shop_orders', 'woocommerce', null, $woocommerce_icon, '55.5' );https://github.com/woocommerce/woocommerce/commit/de57b39d8ec7afb76cd11fc52c8b81cd753ede66
Forum: Plugins
In reply to: [WooCommerce] After updating Woocommerce 6.4.0, it is not showing on my dashFound a fix:
in plugins/woocommerce/includes/admin/class-wc-admin-menus.php
line 64replace:
add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'edit_others_shop_orders', 'woocommerce', null, $woocommerce_icon, 55 );by:
add_menu_page( __( 'WooCommerce', 'woocommerce' ), __( 'WooCommerce', 'woocommerce' ), 'edit_others_shop_orders', 'woocommerce', null, $woocommerce_icon, '55.5' );https://github.com/woocommerce/woocommerce/commit/de57b39d8ec7afb76cd11fc52c8b81cd753ede66
Hello @b7itzz,
As @rainfallnixfig stated, this is a fairly complex development topic. But Im going to try my best to help here.
You could use “Advance custom field” to create an image field which can be assigned to specific category of products. And then you can group all those product within the specific category, let’s say “Pre-owned”. Once you do this you may have to use a page builder to output the field in the single product page. This guide explains it very well.
Hope this helps!
Naz.Forum: Plugins
In reply to: [WooCommerce] Two local pickup options with different tax ratesHello @axelseaa,
Check this plugin out. This seems to have tax support for local pickup(s)
Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] Sorry, you are not allowed to upload this file type.Hello @nalticus,
This might be because WordPress does not allow you to upload the .csv files. You can simply fix this by installing this plugin and allow csv to be uploaded.
Hope this helps!
Naz.Hello @b7itzz,
If i understood correctly, you wanted to display custom graphics based on product rating in the product detail page. Could you please specify where you exactly wanted to display them in the detail page?
Cheers!
Naz.Forum: Plugins
In reply to: [WooCommerce] Update to 6.4.0 => Woocommerce Tab missing from admin barHello All,
This seems to be happening after updating to 6.4.0. This was reported earlier Check this out. I’ve given a few suggestions in order to isolate the issue further. Please click on the link and see if that helps!
Naz.
Forum: Plugins
In reply to: [WooCommerce] woocommerce is no longer in the wordpress menu (left menu)Hello @pclandofficiel,
This was reported earlier here. I’ve given a few suggestions in order to isolate the issue further. Please click on the link and see if that helps!
Naz.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce menu item gone?Hello @hippocoupon,
First things first. Do the following in order to isolate the problem.
1. Make sure the WooCommerce is active in the plugin by heading to plugin directory.
2. try to access the following path to see if the WooCommerce is working
https://yoursite.com/wp-admin/admin.php?page=wc-admin.3. Are you using plugin like role editor/Adminimize Please confirm.
4. Also please do share the following report by heading to WooCommerce > Status > Logs and from the dropdown on the right side, and see if there are any logs starting with the words fatal-error? Please let us know what you find.
Cheers,
Naz.- This reply was modified 4 years, 2 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Force address fields to EnglishForum: Plugins
In reply to: [WooCommerce] Woocommerce orders date issueHello @abeeralam,
Check the default date and time by heading to Setting > General. Also, are you using any translation plugins?
Check this out
Naz.
Hello @homaaa,
Add the below code to your theme’s functions.php. Alternatively, you shall use plugins like “Code snippet” in order to add safety. The below snippet will mute all audio’s by default.
# mute all videos by default function mute_all_videos() { ?> <script type="text/javascript"> [].slice.call(document.querySelectorAll('video')).forEach(function(audio) { audio.muted = true; }); </script> <?php } # hook to footer add_action( 'wp_footer', 'mute_all_videos' );Hope this helps,
Naz.- This reply was modified 4 years, 2 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart Button is brokenHello @jptailfashion,
As @margaretwporg suggested above it does not adding to cart when dragging it (click & drag-mouse action). I can confirm that i’ve tested on Chrome & Safari.Let us know whether you’re testing the same on a touch screen device.
Cheers,
Naz.