Shea Bunge
Forum Replies Created
-
Forum: Plugins
In reply to: [Code Snippets] WordPress 7Hi @chefspuntozero,
I can confirm that the next plugin release will be fully tested on and built for WP7.
The current version appears to also be fully compatible with WP7, too – I’ll see if I can push through an update to indicate this.
Forum: Plugins
In reply to: [Code Snippets] How Downgrade Pro to Free?If you remove the plugin folder directly from the filesystem, instead of deleting from the WordPress dashboard, then it’ll completely skip the uninstall process, meaning that data will not be affected regardless of whether Complete Uninstall is checked.
There’s no danger in not removing the Pro-only snippets, except that the free version of the plugin might not know how to properly handle them, and of course they will not be functional if only using the free version of the plugin.
Forum: Plugins
In reply to: [Code Snippets] How Downgrade Pro to Free?Hi @ln-cwm,
Code Snippets Pro and Code Snippets are designed to be pretty iter-operable. I’d first just make sure that you’ve cleaned up any of the snippets that are Pro-only (i.e., Styles, Scripts and Conditions), ensure that the ‘Complete Uninstall’ box on the settings page is unchecked, and then you should be fine to uninstall Code Snippets Pro.
Forum: Plugins
In reply to: [Code Snippets] role manager to allow shop manager to edit Code SnippetsHi @manulele,
You can control access to the Code Snippets menus and functions with the
code_snippets_capfilter. Shop Managers have themanage_woocommercecapability, so you can attach Code Snippets to that instead:add_filter( 'code_snippets_cap', function () {
return 'manage_woocommerce';
} );Forum: Plugins
In reply to: [Code Snippets] Update snippet and status in new versionThank you for the feedback @nnikolov – we’ll be addressing both of these concerns in a future release.
Forum: Plugins
In reply to: [Code Snippets] Error when being indexed by RelevanssiHi @shorelee,
Looks like this is an issue with one of your ‘content’ snippets generating an error. It’s not something we can fix within the plugin.
Forum: Plugins
In reply to: [Code Snippets] I submitted refund request since 25 Sept and no reply , FMRSorry Paul, this forum is specifically for the free plugin. I’ll make sure that someone responds to you on our ticketing system.
Forum: Plugins
In reply to: [Code Snippets] Website completely inaccessible after running snippetYour snippet seems to be designed to crash your site, for whatever reason.
I’m not sure why safe mode might not be working, as it seems to be functioning fine when I try it on my test site – is it possible that your code was added somewhere outside the Code Snippets plugin too?
If you have FTP or database access, there are other ways of disabling the snippet, such as renaming the plugin folder, or changing the value in the
activecolumn of thesnippetsdatabase table.Forum: Plugins
In reply to: [Code Snippets] Shows a the code instead of running it.Can you please provide an example of the code you’re trying to run, and perhaps a screenshot of how you have it added as a snippet?
This will be addressed in version 3.7.0. Thank you again for your help in reporting it @3leavedclover!
Forum: Plugins
In reply to: [Code Snippets] Shortcode html should not be wrapped in tagHi @newpixel,
Can you check if you are using the
formatattribute on the shortcode in your homepage template, e.g.:[code_snippet id=33 name="Fun button" php shortcodes format title="Something"]If so, this would be the culprit for the added <p> tags.
Hi @pthomson87,
I can let you know that this feature is currently implemented in our development version, and should be released within the next few versions.
Thank you for the feedback!
Forum: Reviews
In reply to: [Code Snippets] Support doesn’t existThank you @painlessseo, and apologies for missing your question for so long
Forum: Plugins
In reply to: [Code Snippets] Code Snippets + Object Pro CacheHi @eskimopies,
We also use the
code_snippets_settingskey for storing setting data, but I doubt that’d cause the same issue. It sounds like setting the non_prefetchable_groups option might not be working correctly. It’s a shame that Object Cache Pro is a premium plugin, or I’d do some testing – I might see what I can do to take a look at it anyway.Forum: Plugins
In reply to: [Code Snippets] Can’t access Gutenberg editor anyomoreHi @tunixnl,
This error is coming from one of your snippets. You should be able to find which one with a search for
get_cart @line:6.