Rachelle Wise
Forum Replies Created
-
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Can’t Accept Terms of ServiceWellll, I figured out a way around it. I manually removed the modal via dev console, reconnected payments, and then when the modal came up again, it allowed itself to be dismissed. ???♀???
Forum: Plugins
In reply to: [WP SmartCrop] Plugin does not work with custom image sizes in themeAh! Totally overlooked that. Thank you, @burlingtonbytes. Will do. And thanks so much for creating this great plugin and keeping it up — discovering it has been a major game-changer for me. ??
Forum: Plugins
In reply to: [WP SmartCrop] Plugin does not work with custom image sizes in theme@burlingtonbytes Do you have any ideas regarding the above message? I would be ever so grateful to get this working. My last bug on a site build! haha
- This reply was modified 5 years, 8 months ago by Rachelle Wise.
Forum: Plugins
In reply to: [WP SmartCrop] Plugin does not work with custom image sizes in theme@zacharylv Did the 2.0.2 version resolve your issue? I just ran into this issue on a site and am trying to find a solution. 2.0.2 doesn’t fix it for me.
I’m pulling in an image with wp_get_attachment_image — WP Smartcrop works fine if the function calls for default “medium” size, but if I switch to a custom size, WP Smartcrop doesn’t run on it. ??
Forum: Plugins
In reply to: [Contact Form 7] Submitting gives error: Uncaught TypeError isPlainObjectDid you sort this out, svante? I’m having the same error from Contact Form 7…
Forum: Plugins
In reply to: Custom Icons in Media Manager for Custom Mime TypesGreat!! Thanks for posting your result! Now, if I can just remember this solution next time the problem pops up for me…
Forum: Plugins
In reply to: Custom Icons in Media Manager for Custom Mime TypesYou know, I never did find a solution and just left it at the default for that project; however, I just did a quick search and found this blog post that might have a solution for you (about 1/2 way down).
https://www.designfox.co/tips-tricks/add-custom-file-extensions-to-wordpress/
Good luck!
Forum: Plugins
In reply to: [Simple Fields] [Plugin: Simple Fields] Media Browser IssuesHmm, just figured out the hanging. Posting my solution in case it helps anyone in the future. Found it here: https://www.ads-software.com/support/topic/adding-rich-text-editing-to-your-plugin?replies=15
Needed to add this block into the functions.php file. Seems strange, but it did the trick.
add_filter('admin_head','ShowTinyMCE'); function ShowTinyMCE() { // conditions here wp_enqueue_script( 'common' ); wp_enqueue_script( 'jquery-color' ); wp_print_scripts('editor'); if (function_exists('add_thickbox')) add_thickbox(); wp_print_scripts('media-upload'); if (function_exists('wp_tiny_mce')) wp_tiny_mce(); wp_admin_css(); wp_enqueue_script('utils'); do_action("admin_print_styles-post-php"); do_action('admin_print_styles'); }
Still having trouble with Safari, however. The WYSIWYG editor seems disabled.
Forum: Plugins
In reply to: [Simple Fields] [Plugin: Simple Fields] Repeatable text areaThis tutorial helped me display data from repeatable fields.
https://www.bobz.com.hr/blog/codeing/simple-fields-repeatable-field-groups.phpForum: Plugins
In reply to: [More Types] [Plugin: More Types] Broken in 3.1 RC4Found a quick solution for the admin menu problem here: https://more-plugins.se/forum/topic/more-types-new-post-type-not-appearing-on-left-side-admin-menu
Add in more-types-object.php at line 182:
$options['show_in_menu'] = true; $options['capability_type'] = 'post';
Hopefully this series of plugins will get an upgrade soon, so this hacking isn’t necessary. ??
Forum: Themes and Templates
In reply to: Date not showing up Text moves to the left in a div.I am also having the date not showing up problem. Looking at the posts inside WordPress and within the mySQL database, I cannot see anything that differentiates the affected posts from those that are displaying normally. Anyone have any ideas?
Forum: Fixing WordPress
In reply to: No scrollbars for admins using IE??I have not resolved the issue, and I would love to hear that workaround. Thank you!
Forum: Installing WordPress
In reply to: functions.php on line 1765I just got this problem after installing a particular new theme (namely: connections). Not sure what the deal is. Put that theme folder in, I get the message. Take it back out, everything is normal. I don’t get that problem with any other theme so far. Can’t figure out what the deal is.
Maybe your problem might be theme-related somehow too. ???