designedbw
Forum Replies Created
-
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Stuck on "resorting database"We too have seen this issue on a database that is only 6MB in size – full size import is currently at 42MB. Generic (non replacing) run with ONLY the DB being exported stops at “restoring database” as does a full export (media, themes etc.).
It was working fine prior to 4.6 – and tried versions 5.47, 5.48 and the latest (where it was first discovered) 5.49. Typical LAMP stack.
Thanks!
Forum: Plugins
In reply to: [Job Board Manager] Font-Awesome ClashNot rename the file, the “enqueue” name you give is “font-awesome” – you can call that anything you’d like – “font-awesome-job-board”. That would give developers a way to “dequeue” your instance of the css file and make things like combining their own files easier to accomplish. I’m not saying you did it wrong by any means, just that when we as developers enqueue our files for plugins it is good practice to not tag our enqueued files generically:
Line 163 of job-board-manager.php
wp_enqueue_style(‘font-awesome’, job_bm_plugin_url.’assets/global/css/font-awesome.css’);Could be:
wp_enqueue_style(‘font-awesome-job-board’, job_bm_plugin_url.’assets/global/css/font-awesome.css’);Which would allow in a functions.php (or alternate plugin):
function wpdocs_dequeue_script() {
wp_dequeue_style( ‘font-awesome-job-board’ );
}
add_action( ‘wp_print_scripts’, ‘wpdocs_dequeue_script’, 100 );We’re definitely not saying “rename your physical file”. Consistency in the way you enqueue your files for a plugin ultimately gives development greater flexibility.
Thanks again, as mentioned prior, great work on the plugin!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] The plugin does not have valid headerPlease try downloading the plugin and then directly uploading it (if you attempted to install directly from the WP Admin).
Let us know if that resolves your issue.
Thanks!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Adding Plugin and Shortcodes to ThemeUnfortunately not presently. If you’d like, feel free to reach out to us at designed@betterweatherllc.com and we might be able to work with you to figure something out (if you are planning on bundling this with your theme and need an auto installer etc.).
Thank you.
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Conflict with page builderRight, so is that the editor that the dropdown list is not showing up on? The Black Studio TinyMCE Widget editor is what renders the TinyMCE wysiwyg editor for Page Builder and just want to be sure we’re talking about the same thing. By default Page Builder does not have an wysiwyg editor.
Thanks!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Conflict with page builderJust to clarify, are you referring to the “Black Studio TinyMCE Widget” editor?
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Front-End ImplementationThanks for the rating! We’ll look into pushing a fix for front end use in the next week or so. Hope that helps!
Forum: Reviews
In reply to: [Better Shortcodes for TinyMCE] SImply GreatThanks so much for the kind words and rating!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Unable to view/edit shortcodesMarking resolved!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] No dropdown on custom post typesWe just released an update to address the restriction 🙂
Thanks for using it, and we’re happy you like it (maybe be the first to rate it?!)
-Betterweather
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Unable to view/edit shortcodesFixed since version 2!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Unable to view/edit shortcodesNo problem! We have re-created your issue and are working towards a fix!
Thank you for reaching out to us so that we can fix it – we’re sure more people have encountered this!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Unable to view/edit shortcodesSorry it took us awhile to answer you, are you still using the plugin or did you get this resolved? If not, please provide the browser you are using so that we may test similarly to your conditions.
Thanks!
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Problem edit and new shortcodeMarking closed.
Forum: Plugins
In reply to: [Better Shortcodes for TinyMCE] Problem edit and new shortcodeSorry for the slow response – we just realized that the shortcode export is an oversight – that code is not ready yet. In fact we’ll remove that link in the next update (very soon). We were not able to replicate what you had mentioned prior to re-installing though, so we can’t really help you out there.
If more people experience that issue we might be able to correct it but right now we just don’t have enough information to make any adjustments to that code.