hafman
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Customer List for WooCommerce] WordPress fatal errorThanks, that is on the cards soon. For now we are using an older version of the plugin.
All the best and thanks for a quality useful plugin!
Forum: Plugins
In reply to: [Product Customer List for WooCommerce] WordPress fatal errorI should add that we had to deactivate the plugin since it caused products to be uneditable and the text turned white in the editor! Quite bizarre but seems to be a bug when used with this version of WooCommerce (4.5.3)
Thanks for the quick reply. I’ll have to live with it then.
I turned off dual tracking and i’m still able to see the old stats by turning off “use Google Analytics 4 data to generate reports and stats” since i have the two properties linked in General Settings.
I hope this helps anyone else in this situation.
- This reply was modified 1 year, 3 months ago by hafman. Reason: improved reply
Thanks, before i do that can i ask if that will cause the app to post all changes to Facebook? For example if somebody edits out a typo from a published post?
Thank you and really appreciate this support (and the plugin!)
Thank you, i worked it out and the posts are going to Facebook now. However if the post status is set to “Pending Review” the auto publish button gets switched off. As Pending Review is the standard for publishing posts submitted by editors and authors, is there a way to make the button say YES when pending?
The plugin used to work with Pending Review before but stopped some time ago and we’ve had to work with draft status since.
- This reply was modified 1 year, 11 months ago by hafman.
Forum: Plugins
In reply to: [WP-PageNavi] Custom taxonomy 404 on page 2 +*Fixed*
This morning i found a fix for this. It seems to be a wordpress bug/oversight involving custom taxonomies and permalinks.See below for a neat code snippet to put in functions.php
https://stackoverflow.com/questions/11104284/wordpress-custom-taxonomy-paginationSeason’s greetings all!
Forum: Plugins
In reply to: [ACF: Better Search] Searching Media Library does not work in grid modeHi Mateusz
The search does work with titles and other information. ACF fields don’t get searched it seems.In List mode it works fine
Some system info
WordPress 5.6.3
Bespoke theme
ACF: Better Search 3.8.0
ACF 5.9.5To explain the above, the problem is that the button works for single images on the page. In a wp-block-gallery it doesn’t appear.
If you start by clicking a single image though, featherlight will run through all the images on the page and show the button.
For some reason, the wp-block-gallery interferes with the button code.
Any ideas?
Thanks i’ll give that a try. The site uses a fair amout of plugins so a conflict is possible.
Well if you happy to try a bit of WordPress code you could hide the button for certain users with the ‘admin_head’ hook in your functions.php file thus…
add_action( 'admin_head', 'admin_head_style' ); function admin_head_style() { if ( !current_user_can('manage_options') ) { //for administrator only echo '<style> #wp_featherlight_options { display:none; } </style>'; } }
Apologies this seems fixed in the latest version of WC
I have the same issue after upgrading to WordPress 5.5.1
A quick Google led me to this Github thread
https://github.com/woocommerce/woocommerce/pull/27170
So it’s a known issue it seems? However so far i haven’t seen any methods to fix it.Forum: Plugins
In reply to: [Interactive Content – H5P] Video format not supported.OK i discovered my upload limit was set to 2mb and the videos were not being saved. The interface appeared to indicate that the uploads were working.
Anyway i have uploaded and added some hotspots to a video. So far so good. Just need a simple ‘go to and stop’ function now… there isn’t one? Doh!
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Events list archiveThanks, i’ve gone the shortcode route in the meantime and it works well. One thing though related to placeholders, What is the conditional for ‘if has any events’?
I can’t see it in the documentation so i tried as a guess
{has_events}#_CATEGORYCOLOR{/has_events}
It doesn’t work ??
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Events list archiveUpdate: I’ve got something coming through using wp_query but it lacks the continuity and pagination that would come from the plugin. There must be a way?
- This reply was modified 4 years, 8 months ago by hafman.