Energ
Forum Replies Created
-
Hello,
is there an estimate for iCal support?
I would pay the PRO license for that ??Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Get total of items in whishlistI found this function in functions.yith-wcwl.php so try
echo yith_wcwl_count_products();
Forum: Plugins
In reply to: [Product SKU Generator for WooCommerce] Undefined index: _skuYes, thank you!
Forum: Plugins
In reply to: [Product SKU Generator for WooCommerce] Undefined index: _skuHi,
I am having a vacation so, sorry again for slow response. I am using Safari 7.0.5.
But you should try again to replicate it with debug set to true in wp-config.php.
Setting this to false, disables the error message for me.Forum: Plugins
In reply to: [Product SKU Generator for WooCommerce] Undefined index: _skuSorry, for late response. It’s 1.0.1 (the newest).
Let me know if I can do something else to help you.Oh, and I am developing at localhost, if that should matter.
Forum: Fixing WordPress
In reply to: Cannot update plugins, core etc. inside WordPressI did that and found out that they don’t support cURL for security reasons. Now, they try to find out a different solution but I doubt they succeed.
If I find a solution that works I let you know…
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Register on invitation onlyCould you please provide the code for this feature?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Noindex meta tag for blocked pagesThanks. I noticed that getting custom value didn’t work on posts, so I made it to check if it is one.
Here it is, if someone needs it too:
//Add noindex meta tag to blocked pages, posts, blog page and archive page add_action('wp_head', 'add_meta_function'); function add_meta_function() { $values = get_post_custom_values('block'); if ($values[0] == true || is_single() || is_home() || is_archive()) { echo '<meta name="robots" content="noindex, nofollow">'; } }
Forum: Plugins
In reply to: [Polylang] "No posts found", "No pages found" with polylang 0.9Same problem here. No posts or pages visible in backend.
Seems like a nasty problem and will probably get fixed soon?Thanks in advance.