redactuk
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Shortcodes Plugin — Shortcodes Ultimate] update wp 6,7I’m also getting this each site I’ve upgraded to WP 6.7.1 with SU v7.3.1
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Purchase events not workingThank you for reply. Testing a live purchase is a bit problematic, so before I do this, can you please confirm this:
Attached template includes tag that links to trigger that includes list of values “add_payment_info” values etc… As stated above my existing tag simply lists trigger as ‘all pages’. Is it required that for this integration to work we have new ecommerce specific tag with a trigger that specifically lists those events as per your template?
Forum: Fixing WordPress
In reply to: Blank lines at end of postsI’ve experienced this problem across multiple sites for several months now. Only happens when using Classic Editor and where the post/page Visual tab is used. Does not happen if Text tab is used.
Forum: Plugins
In reply to: [GTM Kit - Google Tag Manager & GA4 integration] Container noscript not addedThanks for response. Yes appears it was cache problem.
- This reply was modified 1 year, 2 months ago by redactuk.
Forum: Plugins
In reply to: [Gravity Forms Email Blacklist] No longer workingJust updated and confirm now works with capabilities as expected.
Many thanks for your support!
Forum: Plugins
In reply to: [Gravity Forms Email Blacklist] No longer workingHi
Thank you for your detailed feedback on this issue. I have found the problem, but I’m not sure how it is being caused or which Plugin is to blame.
We use a Plugin called Members that allows admin to view all capabilities that exist in WordPress and all installed Plugins and fine tume which ones apply to which Roles, as well as create new Roles.
Here is what it displays for Gravity Forms
View post on imgur.com
For the site Admin, if all capabilities are granted (what you would expect for super admin on any site) then your Email Blacklist menu item does NOT appear. If Grant is unchecked for all capabilities (as per screenshot) then your Email Blacklist opion DOES appear in menu. However, if just some capabilities checked then it does not appear.
It seems to me that (possibly in Gravity forms) some check is being done to see if any capabilities are set, and if they are then nothing matches your Plugin option and it is not displayed. However, if NO capabilities are set then this does not matter and your option will appear.
So this looks like a Gravity issue, but your feedback welcome.
- This reply was modified 1 year, 7 months ago by redactuk.
Forum: Plugins
In reply to: [Gravity Forms Email Blacklist] No longer workingHello
Thanks for your detailed reply.
I’ve installed Plugin on a clean install and it works as you say with app versions specified.
On the website with the issue the blacklist fields also appear at the field levels as per your second screenshot, it’s just there is no global option on the Grivity Forms menu. On this site I’ve deactivated all Plugins and makes no difference.
Is the global gravity menu option based on a value in the database? i.e. for this site is there possibly a corrupt entry in datbase that would cause ‘Email Blacklist’ not to appear in grvity settings menu?
Thanks
@mej Just to let you know I’ve finally traced the issue to a taxonomy related function in another Plugin, so this now resolved. Thanks for your help.
Hi Mej
I’ve applied the update, but still have the same issue. As before, I can get both your plugin and other plugins with custom post types to work together UNTIL i make a change to category description on a custom posty type category, at that point I get the same error above.
Thanks
Forum: Plugins
In reply to: [Site Reviews] How to display list of reviewsExcellent. Some nice changes there. Much appreciated.
I may be able to get around this for now, but is there / or are you able to add helper function to render $review->rating into stars from a basic loop?
Actually, never mind. I’ll use your markup for an individual review.
- This reply was modified 6 years, 2 months ago by redactuk.
Forum: Plugins
In reply to: [Site Reviews] How to display list of reviewsOk. Example kinda implies reviews is simply array you can loop through, which it’s not. Shortcode won’t do for me as I’ building slider of reviews.
Anyway, what I needed was:
$reviews = glsr_get_reviews([ 'rating' => 3, ]); foreach( $reviews->results as $review ) { echo $review->content; }
- This reply was modified 6 years, 2 months ago by redactuk.
Forum: Plugins
In reply to: [Advanced Editor Tools] Table FormattingDissapointed this issue still not fixed in 4.8 ??
Forum: Plugins
In reply to: [Advanced Editor Tools] Table FormattingPS Is there link to re-download 4.6.7 and any issues if I go back version?
Forum: Plugins
In reply to: [Advanced Editor Tools] Table inline CSSSeems latest version adds inline styles automatically. Hopefully fix for this soon. For now you can only remove it by switch to Text view and removing all the style=”” on each row. Best option is paste everything into Notepad, do a search and replace to remove them all then Paste back into Text view. Also remove everything in the <table> tag.
- This reply was modified 6 years, 9 months ago by redactuk.
Forum: Plugins
In reply to: [WP Featherlight - A Simple jQuery Lightbox] Captions not showingCaptions did not show for me because I was using using some framework code that messed with the figcaption classes. This plugin is looking for captions with the .wp-caption-text class. Mine didn’t have that class. As a temporary fix I solved this by changing lines 84 and 89 of wpFeatherLight.js to look for .gallery-caption instead of .wp-caption-text, although you may need to use another class.
Hope this helps someone.