Problem: Toolset Maps are not showing, and address autocomplete is not working in wp-admin when editing address custom fields. I am seeing the following JavaScript error: "You have included the Google Maps API multiple times on this page. This may cause unexpected errors."
Solution: In Divi theme options, General tab, deactivate the option "Append the Google Maps script"
Problem: I would like to include product images on my site. When the User mouses over a product image, I would like to show an overlay with some custom field information.
Solution: The Classifieds reference site includes a similar hover effect on the homepage. You can create your own test site at discover-wp.com to see how this is configured. Edit the View "Ads list - featured slider" to see the View setup, and the template "Loop item in Ads list" to see the markup. Check the CSS panel of this template to see how the hover effect is achieved.
Problem:
Want to change "Add New" button text in back-end postlink for repeating image field. Solution:
Installed this plugin to add custom JS: https://wordpress.org/plugins/custom-css-js
jQuery(document).ready(function( $ ){
$("a[data-wpt-id=wpcf-cover_image]").html('Add New Image');
$("a[data-wpt-id=wpcf-title]").html('Add New Title');
$("a[data-wpt-id=wpcf-description]").html('Add New Description');
});
You can update field slug (cover_image, title, description ) and messages to according to your fields. Relevant Documentation:
Problem:
Want to duplicate field in the same Field Group. Solution:
You cannot duplicate an entire field or Group in the same CPT as that creates several conflicts with the Slugs of the Fields.
If you want to duplicate the checkbox field in different Custom Post type, then you can do is create a new group and then add Fields that "already exist".
Problem:
The issue here is that the customer wanted to use a custom field for user's to select their predetermined currency that they wanted to view his shop in.
Solution:
Unfortunately this isn't possible natively as you will need to write some custom code to determine which option the user has set on their profile.