metaglyphics
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingAh! That solves it. Thanks.
Forum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingIt appears to be working. Though now I’m noticing that “open in the same window” is adding target=”0″, which is targeting a new tab.
Forum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingWP: 4.5.2
ACF Pro: 5.3.8.1
ACF Link: 1.1.2
Firefox: 47.0b9
Chrome: version 50.0.2661.102 mForum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingReferenceError: assignment to undeclared variable $selector
https://localhost/AIDSLifeCycle/StagingSite/deploy/web/wp/wp-content/plugins/advanced-custom-fields-pro/assets/js/acf-input.min.js?ver=5.3.8.1
Line 1ReferenceError: reference to undefined property a[b]
https://localhost/AIDSLifeCycle/StagingSite/deploy/web/wp/wp-admin/load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-ui-resizable&ver=4.5.2
Line 4Forum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingThe latest versions of both. I’ve disabled all plugins except ACF ones, but it still happened. Is this related to trying to use this field in an ACF Widget?
Forum: Plugins
In reply to: [Advanced Custom Fields: Link] Losing selection when editingAh, it actually works fine in a custom post. But in an ACF widget, it doesn’t:
Forum: Plugins
In reply to: [Ajax Upload for Gravity Forms] Unexpected TokenIt appears to be related to the “import to media library” option. When I disable that, the error does not appear.
Forum: Plugins
In reply to: [Ajax Upload for Gravity Forms] Thumbnails?I was thinking, when you upload an image, hooking into the WP image sizes, so you can create each image size your site uses. Though since these are not part of the media library, that may become difficult to manage…
Forum: Plugins
In reply to: [Ajax Upload for Gravity Forms] Preview optionFYI, there’s nothing here to hang onto the display of the preview image. So if you should submit the form without completing all the required fields, you lose the thumbnail. Shouldn’t be too hard to fix, but I thought I should disclaim that the above is a quick-and-dirty tweak, but may not be robust enough to rely on…
Forum: Plugins
In reply to: [Ajax Upload for Gravity Forms] Preview optionI was able to do this by modifying the file:
I replaced all four instances of the line:
jQuery(this).next().children().first().html('<?php echo __('File','itsg_gf_ajax_upload') ?>: <a target="_blank" title="<?php echo __('this link will open in a new window','itsg_gf_ajax_upload') ?>" href="'+file_url+'">' + file_name.substring(0,60) + ' ...</a>' );
with:
jQuery(self).next().children().first().html('<img src="'+file.url+'"/>' );
And a little CSS tweaking to remove the green background to the containing div.
Forum: Plugins
In reply to: [Gravity Forms: Post Updates] Problems with checkboxSame issue here. The plugin has stopped updating several fields. Could it be there’s a conflict with a recent Gravity Forms update?
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Adding entry conditionallyThanks for posting this. Which instance of “$form_id” needs to be changed? I’m assuming it’s in the second snippet. I’ve updated the shortcode:
echo do_shortcode( "[stickylist id='5']");
But that doesn’t seem to do it.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Editing a form creates a new entryWell that was easy enough! I’d missed that the pagination feature was still on your road map. Looking forward to that enhancement.
Thanks.
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Editing a form creates a new entryThanks for the quick response. Here’s an XML export of the form:
https://www.dropbox.com/s/yj378l3u86jzbea/gravityforms-export-2015-01-26.xml?dl=0Forum: Plugins
In reply to: [WP Help] WordPress 4.0 and the video shortcodeI had the same issue. I solved it be adding a float to the video class in my dashboard. This was done by adding a CSS snippet to my theme’s functions file:
//Add CSS to Dashboard (fix for WP-Help) add_action('admin_head', 'wphelp_fix'); function wphelp_fix() { echo '<style> #cws-wp-help-document .wp-video { float:left;} </style>'; }