ckpicker
Forum Replies Created
-
Forum: Reviews
In reply to: [Find My Blocks - Locate blocks on your site] FantasticEither that or a filter would suffice, but this at least works for now. Thanks!
Forum: Reviews
In reply to: [Find My Blocks - Locate blocks on your site] Fantastic@edeesims Is this now the default? I’m not seeing a setting anywhere to enable it.
Thanks for the reply! Looks like this was an issue with the upgrade via the admin, so I completely removed the plugin and reinstalled it, and now I’m not having any more issues. Thanks!
Did this ever make it into the plugin?
+1 here! I definitely don’t want to modify the plugin directly anymore.
Forum: Reviews
In reply to: [The Events Calendar] Events with colorssrikanth554,
You might want to check out this third-party plugin, which will allow you to add colors to your event categories. Hope that helps!Forum: Plugins
In reply to: [WP Resized Image Quality] Different compression for each image sizeI’d also love to see something like this. We’re looking to introduce Low Quality Image Placeholders on an upcoming project (read more here), and this feature would be super helpful.
Forum: Reviews
In reply to: [The Events Calendar] YOU CAN'T EMBED YOUR CALENDAR!!!Spencario,
The Event Rocket add-on that Rob referenced will allow you to embed the calendar widgets, just not the full calendar. I’d suggest giving that a shot and see if it will get you where you need to be.Take a look here: https://www.ads-software.com/plugins/event-rocket/faq/
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Map Table ID to Post IDOk, I figured it out. Looks like there’s a JSON string in the options table that maps these values. So, I was just able to do the following:
$tablepress_options = json_decode(get_option('tablepress_tables')); //Get Table ID from Post ID foreach($tablepress_options->table_post as $key => $value) { if($value == $post_id) { $table_id = $key; } }
Hope that helps someone else! Thanks for a great plugin!
Awesome! Was just looking for this. Thanks!
Forum: Plugins
In reply to: [Groups] Breaking apply_filters('the_content) for meHere’s a screenshot of all of the plugins I’m using: https://d.pr/i/eA8h
Forum: Plugins
In reply to: [Groups] Breaking apply_filters('the_content) for meTo clarify, the $overview variable doesn’t have any Groups shortcodes in it, just HTML content and sometimes other shortcodes.
Awesome news! Thanks Naomi!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Conditional Validation with jQuery?Has anyone else had any luck making a field required based on another field’s drop-down value?
Forum: Themes and Templates
In reply to: Modify Page Title Outside of Header.phpI created a custom page template and put the code above at the top of the page template. Then just make sure you assign the custom page template to each page that you want the title to show on.