doyuk
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] Specify a cache validator – woff & svgDear Marko,
I couldn’t understand what to do.
That’s why I share a screenshot.
https://monosnap.com/file/72rwjzz4kuqutFwNtvUwMan4qZwp90How should the “Media & Other Files” settings be?
Should I update in htaccess?Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Removing Visual Composer & ShortcodesMy issue is resolved now. Thank you!
Forum: Plugins
In reply to: [Woo Custom Stock Status] Plugin translationDear @edvardspektar,
Open the “WPML> String translation” page.
Click the “Translate texts in admin screens? “link at the bottom of the page.
Select the relevant fields.
https://monosnap.com/file/M5trGWjvfXSF96NfIjEZpz4lejPE4Bbest regards,
Tahir@beardedginger Thanks.
I opened debug log. I follow the errors.
define(‘WP_DEBUG’, true);
define (‘WP_DEBUG_LOG’, true);Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Combining the Attributes fieldHi @wpallimport,
I want to add my products to a site that does not use WordPress.
For this, the Attributes field needs to be customized.
I want to add “Attributes” information in a single filed.How can I do that?
Forum: Plugins
In reply to: [Export any WordPress data to XML/CSV] Delete the “WPBakery Page Builder” tagMy issue is resolved now. Thank you!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Up-sells SortDear Petasos,
Thank you for your support.The code works flawlessly.
Best regardsForum: Plugins
In reply to: [WooCommerce] Bulk Price Update with Import / ExportHi @yukikatayama,
We have resolved this issue by working with the WPML support team.
You can access the details from this link: https://wpml.org/forums/topic/every-time-i-update-the-turkish-lira-it-creates-another-column/best regards
TahirForum: Plugins
In reply to: [WooCommerce] WooCommerce Up-sells SortShared solutions did not work.
I found a hook and it worked.function filter_woocommerce_upsells_orderby( $orderby ) { return 'menu_order'; }; add_filter( 'woocommerce_upsells_orderby', 'filter_woocommerce_upsells_orderby', 10, 1 );
But DESC – is in reverse order.
I want to rank it as ASC.https://doyuk.com/?s=SQUARE&post_type=product
https://monosnap.com/file/ghV7d5jzztkh09lpY0fahdUXXmCw3Rhttps://doyuk.com/usb-memory-sticks/square-shaped-card-usb-memory-stick/
https://monosnap.com/file/CuFScIuuiYooDGkEpEvxulVypqowEnMy Proxy Detection setting
https://monosnap.com/file/eSYKZoHPxlhC00EVONK2ukzVNteKtS
https://monosnap.com/file/AJ4xviAneBJtjhJNMpUY7Zuy3TvF6THow should the Proxy Detection setting be?
I turned off 404 Detection feature.
https://monosnap.com/file/8R1uwNkmgQL4EsbyYexT75MjGKv0vnThank you for your support.
best regards
TahirForum: Plugins
In reply to: [WooCommerce] WooCommerce Up-sells SortHi,
This code worked for me. But it is listed as “DESC”. How can I rank as “ASC”?function filter_woocommerce_upsells_orderby( $orderby ) {
return ‘menu_order’;
};
add_filter( ‘woocommerce_upsells_orderby’, ‘filter_woocommerce_upsells_orderby’, 10, 1 );Forum: Plugins
In reply to: [WooCommerce] Show first in stockHi,
Thank you for your support.
I added the code. But the product ranking has changed completely.
I just want stocked products to come first.
Other products must be in the same order I did.Before adding code:
https://monosnap.com/file/iaHkfVTq8AmhCb9aYA3IgoaFktMOYMAfter adding code:
https://monosnap.com/file/BDGKeamG5artnUahiR21JhOtwMNUTuBest regards
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search DetailsDear Mikko,
Thank you for your support.Can I only do this for SKU?
Best Regards
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Up-sells SortI changed the order with this hook:
function custom_upsell_display() { woocommerce_upsell_display( -1, 4, 'menu_order', 'asc' ); }
But “Products> Sorting” is not the same as sorting.
https://monosnap.com/file/BzqCIxXROyGSrhYqdSeDhSMbU7Rql5
https://monosnap.com/file/PCkZ2zQiiykf6qwgk8kLDOS8GhDFan
https://doyuk.com.tr/product/wooden-usb-memory-stick/Forum: Plugins
In reply to: [Relevanssi - A Better Search] search order by sku, product nameDear Mikko,
Thanks for the help.I’ve added the code to my site:
add_filter( 'relevanssi_match', 'rlv_customfield_boost' ); function rlv_customfield_boost( $match ) { if ( $match->customfield > 0 ) { $match->weight *= 10; } return $match; }
At the moment I search for SKU “TWIST”, it lists products with the product name “TWIST”.
I want SKU “TWIST” to be listed first.I’m sorry for my bad english.
best regards