harslannet
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Facebook Connect Problemyes it worked, thank you
Forum: Plugins
In reply to: [WC City Select] PHP NoticesWill you do? ??
Forum: Plugins
In reply to: [Netgsm] Sipari? olu?turulma SMS’inde bug var gibiCevab?n?z? g?rmemi?im kusura bakmay?n, kendi geli?tirdi?imiz bir eklenti var, Kargo durumunu kontrol edip e?er kargo firmas? taraf?ndan fi?i kesildiyse API ile kontrol edip sitemizde sipari?in durumunu otomatik olarak g?nderildi yap?yor.
Forum: Plugins
In reply to: [WooCommerce Admin] Is possible Rebuild reports data with WP-CLI?Hi @timmydcrawford ,
Thank you for your interest.
Suggestions on the issue page that you added a comment also seem logical.(date-based import)
If the WP-CLI can remove this load, it is much more convenient to use a WP-CLI. But if WP-CLI can’t cope with it, developing a UI for history-based import can also be effective.
I hope that you will find solutions in the near future.
When we do wp-cron.php manually wp-load.php, a character encoding error occurs in the incoming file. Did you notice that? (I’m talking about the txt file that we created for Google shopping)
Forum: Reviews
In reply to: [Netgsm] OTP Do?rulama?ok sevindim cevab?n?za, umar?m dedi?iniz gibi k?sa sürede geli?tirme tamamlan?r.
I found the problem conflict with WooCommerce Pre Order Plugin! Solved.
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Pagination in product breadcrumHi, I solved this problem like this;
Find this line
if ( is_archive() || is_post_type_archive() || !$is_product_query )
And change it to
if ( is_archive() || is_post_type_archive() || !is_singular( 'product' ) || !$is_product_query)
Forum: Plugins
In reply to: [Shortcode Pagination for WooCommerce] Breadcrumbs display "/Page 1"Hi, I solved this problem like this;
Find this line
if ( is_archive() || is_post_type_archive() || !$is_product_query )
And change it to
if ( is_archive() || is_post_type_archive() || !is_singular( 'product' ) || !$is_product_query)