jelewis8
Forum Replies Created
-
Thanks!
Forum: Plugins
In reply to: [EventCalendar] PHP7 CompatibilityGreat, thank you.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] PHP7 CompatibilityThanks!
Forum: Plugins
In reply to: [No Category Base (WPML)] PHP7 CompatibilityVery good, thanks!
Forum: Plugins
In reply to: [Date and Time Picker Field] 3.8 Compatibility?Ignore. Did some more digging and discovered there’s a conflict with the Geocoder plugin. Disabled the google maps call in that plugin and voila. Timepicker works.
I agree it doesn’t make sense, but it’s true. I’ve encountered this problem multiple times, on three different databases.
The metabox/field name issue is irrelevant–I’m literally exporting the database, running search/replace on text entries (such as replacing “Seattle Washington” with “Seattle, WA”) and then reimporting into an empty DB.
I’m not doing search/replace through SQL commands, so serialized arrays aren’t the problem.
Forum: Plugins
In reply to: [Latex Everything] list all pages, select which pages you want, email PDFsYes it does. Thanks!
Forum: Plugins
In reply to: [Store Locator Plus?] Map controls bugI did a bit more digging and found that this is an issue with Twitter bootstrap css messing with max-widths for images.
Just had to add #map_table img {max-width: none !important;} to my css file.
This would be really great to have. The code I have in my functions.php isn’t displaying data as it should, unless I do a quick edit, and then when I refresh the page, the listing disappears.
Forum: Plugins
In reply to: [Facebook Feed Grabber] Only name linked to profile appearsNo problem. Any solution in a crisis will do. Thanks for responding anyway.
Forum: Plugins
In reply to: [Facebook Feed Grabber] Only name linked to profile appearsYeah–I ended up using an RSS feed widget instead–was never able to get the Feedgrabber to work correctly.
Well, I guess I should have tried harder. I have been trying to work in Nextgen for this functionality, but I forgot I can just list all the pages using this bit of code:
<?php
if($post->post_parent)
$children = wp_list_pages(“title_li=&child_of=”.$post->post_parent.”&echo=0&depth=4″);
else
$children = wp_list_pages(“title_li=&child_of=”.$post->ID.”&echo=1&depth=4″);
if ($children) { ?>-
<?php echo $children; ?>
<?php }
?>Forum: Plugins
In reply to: [Verve Meta Boxes] [Plugin: Verve Meta Boxes] Images not uploadingI had to create a cache folder inside the verve-meta-boxes/tools folder and chmod it to -R 777 and chmod timthumb.php to 777.
Not sure why the cache folder wasn’t created initially with the plugin installation.
Forum: Plugins
In reply to: [Verve Meta Boxes] [Plugin: Verve Meta Boxes] Images not uploadingGot it. Edit your timthumb.php line 474 to read image/jpg instead of image/png.
Your thumbs should show up now.
Forum: Plugins
In reply to: [Verve Meta Boxes] [Plugin: Verve Meta Boxes] Images not uploadingOkay, I have gotten the uploader to work; I am now seeing a broken image link on the backend thumbnail. Display on frontend works great.
Loading the timthumb.php image link for the thumbnail in sep. tab brings up a lot of error messages like ” Cannot modify header information – headers already sent by… (output started at /wp-content/plugins/verve-meta-boxes/tools/timthumb.php:235) in /wp-content/plugins/verve-meta-boxes/tools/timthumb.php on line 474″