en10
Forum Replies Created
-
Hello,
Thank you for the new code, I put it and updated to the last version of woocommerce.
The discount seems good after that ??Forum: Plugins
In reply to: [BP xProfile Location] Export field and dataSorry for the delay to reply.
The version of the plugin is 1.2.1
To force in EUR, I used a function I saw in your website
add_filter('wp_head',function(){ if(is_checkout()){ global $WOOCS; $WOOCS->set_currency('EUR'); } });
When I want create a coupon, which currency I need to use? The default currency or the currency that I force?
Best
Forum: Plugins
In reply to: [DeliPress - Newsletters and Opt-In forms] Sync with MailpoetIs it possible to sync with the subscribers of my website?
Forum: Plugins
In reply to: [DeliPress - Newsletters and Opt-In forms] Color ListI understood.
Thank you ??
Forum: Fixing WordPress
In reply to: Cookieless domainThank you @codexdemon ! ??
@dhovorka I recommend you to create a new post for your trouble, it will be better for everyone ??
- This reply was modified 7 years, 4 months ago by en10.
Forum: Fixing WordPress
In reply to: Cookieless domainHello @codexdemon,
Thank you for starting the explanation but your reply seems not complete.
How can I do if my media folder is not in the wp-content?
Best Regards
Forum: Plugins
In reply to: [Inline Image Upload for BBPress] Extend image upload to other extensionsHi,
@jonathanmoorebcsorg do you mean we can use this plugin in BuddyPress too?EDIT: sorry I read too fast your post..
- This reply was modified 7 years, 5 months ago by en10.
Forum: Plugins
In reply to: [WooCommerce] Random order WC3An external plugin forced his order.
I fixed it and now it’s ok.Forum: Fixing WordPress
In reply to: Multi rss feed on wordpressI found the solution here: https://www.wpbeginner.com/wp-tutorials/how-to-add-custom-post-types-to-your-main-wordpress-rss-feed/#comment-174731
function myfeed_request($qv) { if (isset($qv['feed']) && !isset($qv['post_type'])) $qv['post_type'] = array('post', 'story', 'books', 'movies'); return $qv; } add_filter('request', 'myfeed_request');
Forum: Plugins
In reply to: [WooCommerce] Delete all per-product attributes in WooCommerceHello,
Finally I used a SQL query.
UPDATE
XX_postmeta`
SETmeta_value
= ‘a:0:{}’
WHEREmeta_key
= ‘_product_attributes’;`Save your database before to do that!!
Forum: Plugins
In reply to: [WooCommerce] Added Customs Fields in back-end but can’t Save