Bid13 Storage Auctions
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress SEO ACF Content Analysis] Outputs error code on frontendStrange that this plugin is even loading in the frontend like that, this should all be trapped in admin. That seems like a mistake to begin with. but then this is just sloppy type handling.
A quick patch without really understanding wahts going on, i changed:
function getValues($array) { $value_array = array_values($array); return $value_array; }
to:
function getValues($array) { if(is_array($array)){ $value_array = array_values($array); } else { $value_array = array(0=>$array); } return $value_array; }
in /wp-seo-acf-content/wpseocontent.php
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableJust a tip. Couldn’t you first do https://codex.www.ads-software.com/Function_Reference/get_post_types
And then just loop through all the post types, and apply this filter? This would make it so that future users have this feature applied to all their custom post types.
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableThanks!!!!
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableCan you point me to the relevant section of code, so i know what i need to add for each post type?
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableYup, tons of custom post types. any way to fix this for CPT?
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableOne more screenshot showing there is no link in that table header.
https://i.imgur.com/gqRICeQ.pngI’m guessing some hook somewhere is stripping it. not sure which hook or filter too search the code base for though.
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableBTW, damn impressive post views you got there!!
Forum: Plugins
In reply to: [WP-PostViews] Please make the "Views" column header in admin clickableVery odd indeed, this is what i’m seeing: https://i.imgur.com/1kD5UyG.png
And my plugins:
https://i.imgur.com/mSag5t8.png
https://i.imgur.com/JzbhPFN.png
https://i.imgur.com/4KMS8bk.png
https://i.imgur.com/XIm6zkk.pngNo clue which one would cause this. any idea on where to look?
Forum: Plugins
In reply to: [solved] Custom Checkout fields not saved to order metaDude, i’m really sorry but this was a really long time ago and i don’t remember. Also its possible you are working with a newer version of woo commerce from when i posted this, so things might have changed. ??
Most excellent! thank you!
Sure: https://evolution-institute.org/article/darwin-day-around-the-world/
Also, see recent screen
https://evolution-institute.org/article/darwin-day-around-the-world/
Errors continue.Forum: Plugins
In reply to: [qTranslate] Qtranslate Comment code shows on the paypal using woocommerceWait, you’re using m-translate? is that some other plugin? i don’t know anything about that plugin. this thread is about compatibility between q-translate and woocommerce.
Forum: Plugins
In reply to: [qTranslate] Qtranslate Comment code shows on the paypal using woocommerceYeah i think it helps.
Forum: Plugins
In reply to: [qTranslate] Qtranslate Comment code shows on the paypal using woocommerce@gadhavanaajay my pull request was merged, so my code should already be in the current branch. which version are you using? maybe try pulling the latest version from github?
Another vote to have a “disable inline css” button in the admin. It would be pretty easy to implement, like so:
a couple steps for anyone who wants to do this:
1) around line 993, of mailchimp.php right after the line:<tr><th colspan="2">Custom Styling</th></tr>
add this:
<tr class="mc-turned-on"><th><label for="mc_disable_css"><?php esc_html_e('Disable mailchimp inline CSS', 'mailchimp_i18n'); ?></label></th><td><span class="mc-pre-input"></span><input type="checkbox" name="mc_disable_css" id="mc_disable_css"<?php checked(get_option('mc_disable_css'), 'on'); ?> /></td></tr>
2) around line 525 of mailchimp.php add:
delete_option('mc_disable_css');
3) Around line 574 of mailchimp.php add:
update_option('mc_disable_css','off');
4) around line 652 of mailchimp.php add:
update_option('mc_disable_css', isset($_POST['mc_disable_css']) ? 'on' : 'off');
5) Finally in mailchimp_widget.php before the opening closing ?> php tag that is right before the opening <style> tag, which is around line 57, add this:
if (get_option('mc_disable_css')!='on'){
And then after the closing <style> tag add:
<?php } ?>
@mailchimp would be cool if you added this to your plugin!!!