Jeff Rose
Forum Replies Created
-
Thanks for the reply David. I’m not expecting that but I do think that is what is happening.
Items set for 12:15am on June 25 are appearing at the end of June 24th’s calendar – as if the Calendar is working with my timezone and shifting things backward.
Thank you – that makes sense. Not sure how it got turned off.
You should take a look at your plugin description. It is NOT an accurate description of the free version. Even one of the screenshots shows stats as a feature without mentioning that it’s Pro Only.
But that’s not all. ClickWhale combines some useful features in one plugin. Let’s take a closer look:?? THE MOST FLEXIBLE LINK MANAGER
- Easily create and manage links – Create your links to track and organize them into categories.
- Apply SEO settings to links – Flag your links with SEO attributes like “no follow” or “sponsored”.
- Place and share links – Place your created links anywhere in your website content or share them on social media.
- Detailed statistics – Analyze the clicks of your links with our click statistics.
All of these key features are available in this free version of?ClickWhale. That’s some crazy value!
“available in this free version” – emphasis mine.
Forum: Plugins
In reply to: [Open Web Analytics for WordPress] Website ID is “No options are available”Thanks for pointing out these locations – but I still get “no options available – even with all the details filled in. I copy & pasted
No errors.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] I need a refundI’m not sure where you saw the “Great News” but I can’t see it. He’s done such damage to his reputation already, it may be too late to really recover.
As with sergior, I filed a complaint with PayPal and got a refund.
It’s a single line of code in the search function.
'post_status' => 'any'
Forum: Plugins
In reply to: [Book Previewer for Woocommerce] Disable for other products?Let me review my code – It’s possible that I missed something @jotajzam. It’s been several months. I may just link the whole plugin.
I just updated my other thread @nathanzaman so maybe it’ll help.
Forum: Plugins
In reply to: [Book Previewer for Woocommerce] Disable for other products?Sorry folks, it’s been a while and I’m on other projects.
It looks like I did 2 things. Basically, you tag Books with a checkbox and then check that when outputting the product template.
In admin.class.php ADD a new function that outputs a checkbox to allow you to tag Books.
public function add_book_checkbox(){ woocommerce_wp_checkbox( array( 'id' => '_enable_book_preview', 'label' => __( 'Enable book preview', 'bpfw' ), ) ); }
And then also my inc/functions.php is:
add_filter('wc_get_template', 'bpfw_change_template_product_image', 10, 2); function bpfw_change_template_product_image($template, $template_name) { if ($template_name === 'single-product/product-image.php') { global $product; if( 'yes' == get_post_meta( $product->get_id(), '_enable_book_preview', true ) ){ return BPFW()->locate_template('product-image.php'); } } return $template; } add_action('save_post', 'bpfw_save'); function bpfw_save($post_id) { $book_preview = 'no'; if (!isset($_POST['bpfw_back_image_nonce']) || !wp_verify_nonce($_POST['bpfw_back_image_nonce'], 'bpfw_back_image_save')) { return; } if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) return $post_id; update_post_meta($post_id, 'bpfw_back_img', sanitize_text_field($_POST['bpfw_back_img'])); if( isset($_POST['_enable_book_preview']) ){ $book_preview = $_POST['_enable_book_preview']; } update_post_meta($post_id, '_enable_book_preview', $book_preview); return $post_id; } add_action('wp_footer', 'bpfw_add_svg_icons', 9999); function bpfw_add_svg_icons() { BPFW()->load_file(BPFW()->plugin_dir('templates/svg-icons.php')); }
Forum: Plugins
In reply to: [Auto Affiliate Links] How to check/remove broken links?Outstanding! This is super useful for a small number of links. To clean 900 this way will take a long time but it’s a start!
Forum: Plugins
In reply to: [Announcement & Notification Banner - Bulletin] Error on Admin pagesYep, the error is gone and I see the “More From Bulletin” panel.
Thank you!
Forum: Plugins
In reply to: [Auto Affiliate Links] How to check/remove broken links?Ideally, yes, that’s it exactly. I have 900 links over the last 5 or 6 years. Obviously that slows things down a bit.
Forum: Plugins
In reply to: [Announcement & Notification Banner - Bulletin] Error on Admin pagesThanks for the prompt reply. I’m still waiting for the updated plugin to appear in order to make the change.
At present updating it isn’t an option.
Forum: Plugins
In reply to: [Book Previewer for Woocommerce] Disable for other products?I’ve done a simple modification to allow you to enable/disable this on single products.
Happy to share the changes if anyone is still looking.