salac
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Custom Skin] Elementor custom loop function hook// Kategori logo billede visning
function sv_add_logo_above_wc_shop_image() {if ( is_product_category( ‘georg-jensen’ ) ) {
echo ‘‘;
} elseif ( is_product_category( ‘kay-bojesen’ ) ) {
echo ‘‘;
}
}
add_action( ‘woocommerce_before_shop_loop_item’, ‘sv_add_logo_above_wc_shop_image’, 9 );Forum: Themes and Templates
In reply to: [Astra] Latest version – custom function errorHi Suman
I have tried switching to parent theme, but no luck.
Page builder is Elementor and I keep getting this notification in elementor debugger.Template File: No Templates for condition > /themes/astra/page.php
Regards
SashaForum: Themes and Templates
In reply to: [Astra] Latest version – custom function errorI forgot to mention that I using child theme
Hi Luke
It is actually urgent!
Please help!Sasha
Forum: Plugins
In reply to: [Ocean Extra] Error after updatingHi Amit
Sorry.
It was a virusSasha
Hi Luke
add_filter( ‘woocommerce_admin_disabled’, ‘__return_true’ ); not working on my customer shop.
Thanks
Forum: Plugins
In reply to: [WooCommerce Admin] Product movmentHi Ron
What we need is an overview of product movment. Overview of e.g. if it increases the number in stock and when (date and time) and how much. Whole movment of a product when it has been bought and how much. See example from magento here https://prnt.sc/o65519
ThanksForum: Plugins
In reply to: [WP Store Locator] Start pointHi
Sorry but now I also have another problem ??
When we update the store, it is on a draft and I can’t save changes.
ThanksForum: Plugins
In reply to: [Data Tables Generator by Supsystic] Last updateFor all of you who want to hide it, use this css..
.supsystic-tables-wrap tr a {
display: block!important;
}
.supsystic-tables-wrap a {
display: none!important;
}Forum: Plugins
In reply to: [Data Tables Generator by Supsystic] Last updateHi
When are you publishing the new release? This issue is dangerous for the entire site’s security.
ThanksForum: Plugins
In reply to: [WooCommerce Admin] Product log historic with exportHi Timmy
I’ve tried everything but it’s just not possible to create / see product stock movment.I have migrated a shop from magento to woocommerece and customer is not happy that they cannot have the same reporting as in magento. Here in Denmark to keep inventory management with product stack movement is the “must” feature. Special when you selling food.There should be everything from when is the product sold and how many are sold and when, to how many and when is it added. It’s something we missing in wooocmmerce and will be a great help for those who moving from magneto to woocommerce.
Thanks
SashaForum: Plugins
In reply to: [Premmerce Permalink Manager for WooCommerce] Showing wrong contentHi again
Your plugin is not compatible with elementor page builder.With your plugin enabled, elementor pages cannot be edited and showing wrong content but right url. It displays custom archive template content on the pages where it shows incorrect content and these pages that cannot be edited. When I disable your plugin, everything works fine. Can you see if it can be fixed or I should see if there are other solutions.
Thanks
SashaForum: Plugins
In reply to: [WPC Product Bundles for WooCommerce] Inventory managementHi
Thanks for your reply.
I can disable”Enable stock management at bundle level” ,that’s not the problem. What is this option “Enable stock management at product level”? https://prnt.sc/njw4i7 . Can I disable it and if I do it, what will happen to the products (Not bundels product) inventory management?
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Product BundlesI am so sorry.
I made a minor error in the code. Now it works and I’m super happy. Thank you.
I will definitely buy the pro version for our next customer. Really good support.
ThanksForum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Product BundlesHi.
Thanks for your quick response.add_filter( ‘wpo_wcpdf_item_row_class’, ‘wpo_wcpdf_add_wpc_product_bundles_classes’, 10, 4 );
function wpo_wcpdf_add_wpc_product_bundles_classes( $classes, $document_type, $order, $item_id = ” ) {
if ( $bundled_by = wc_get_order_item_meta( $item_id, ‘_woosb_parent_id’, true ) ) {
$classes = $classes . ‘ bundled-item’;
} elseif ( $bundled_items = wc_get_order_item_meta( $item_id, ‘_woosb_ids’, true ) ) {
$classes = $classes . ‘ product-bundle’;
}
return $classes;
}I just copied the code ind functions.php in child theme and has hide .bundled-item { display: none!importent; } in stylesheet and clear cache in backend and on frontend.It doesn’t work and bundled items are still visible on the invoice and delivery note.
Is there something I doing wrong?
Thanks
Sasha