Darkspire Media
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce 4.4.0 and ACFThank you for this solution, I’ve been trying to track it down.
To help others, comment out lines 376-378.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] fa Text Only Being DisplayedTHANKS!!!!
The update fixed the issue. I have to say Matt that you have the best response time I’ve ever had on a free plugin.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] fa Text Only Being DisplayedSomething else that’s happening is the fields dropdown now has no results found as well.
Forum: Plugins
In reply to: [ACF: Google Font Selector] Chrome Loading IssueInterestingly, I had to regenerate the API key and it fixed the issue. I’m still not sure why the previous key stopped working only in Chrome, but hopefully this will help someone else.
Forum: Plugins
In reply to: [ACF: Google Font Selector] Loads web safe font as google fontI have the same issue. It’s enqueuing web safe fonts and causing a 404.
In functions.php, I updated this function to remove all web safe fonts from enqueue.
function acfgfs_get_fonts_to_enqueue() { $web_safe = acfgfs_get_web_safe_fonts(); if( is_singular() ) { global $post; $post_fields = get_field_objects( $post->ID ); } $post_fields = ( empty( $post_fields ) ) ? array() : $post_fields; $option_fields = get_field_objects( 'options' ); $option_fields = ( empty( $option_fields ) ) ? array() : $option_fields; $fields = array_merge( $post_fields, $option_fields ); $font_fields = array(); foreach( $fields as $field ) { if( !empty( $field['type'] ) && 'google_font_selector' == $field['type'] && !empty( $field['value'] ) && !in_array($field['value']['font'],$web_safe) ) { $font_fields[] = $field['value']; } } $font_fields = apply_filters( 'acfgfs/enqueued_fonts', $font_fields ); return $font_fields; }
Hopefully the plugin author will fix this in the next release.
Forum: Plugins
In reply to: [Pronamic Domain Mapping] Domainname Pages Menu Not displayedI installed the plugin on a new installation with a default theme and it works, so I have a conflict with this theme.
I’ll get it figured out. Thank you.
Forum: Plugins
In reply to: [Pronamic Domain Mapping] Domainname Pages Menu Not displayedI’m the site administrator with all capabilities. Do you know what line the capability is set? I’ll adjust it to see if that’s the issue.
Thanks for getting back to me.
Forum: Plugins
In reply to: [Twitget] Multiple widgets with different usernameBo?tjan,
Since I need these features and your plugin works so well, do you mind if I develop a version of the your plugin with these features?
Forum: Plugins
In reply to: [Widget Settings Importer/Exporter] Plugin brokenIn widget-data.php, I did this:
Replace
add_action( 'admin_enqueue_scripts', function($hook) use ($export_page, $import_page){ if( !in_array( $hook, array( $export_page, $import_page ) ) ) return; wp_enqueue_style( 'widget_data', plugins_url( '/widget-data.css', __FILE__ ) ); wp_enqueue_script( 'widget_data', plugins_url( '/widget-data.js', __FILE__ ), array( 'jquery', 'wp-ajax-response' ) ); wp_localize_script( 'widget_data', 'widgets_url', get_admin_url( false, 'widgets.php' ) ); } );
with this
if(is_admin()) { wp_enqueue_style( 'widget_data', plugins_url( '/widget-data.css', __FILE__ ) ); wp_enqueue_script( 'widget_data', plugins_url( '/widget-data.js', __FILE__ ), array( 'jquery', 'wp-ajax-response' ) ); wp_localize_script( 'widget_data', 'widgets_url', get_admin_url( false, 'widgets.php' ) ); }
It worked for me. Not the best solution, I’m sure, but it worked.
Forum: Plugins
In reply to: [Twitget] Multiple widgets with different usernameI would gladly pay for two cups of coffee to save myself the time to recode my twitter feeds.
Forum: Plugins
In reply to: [SimpleModal Login] Password reset Internal Server ErrorI had the same issue. if you check /wp-login.php?action=lostpassword it will most likely tell you that you disabled the mail() function. You need to reenable it and it should work again.
Forum: Plugins
In reply to: [Simple Facebook Connect] Facebook Fan Box transparent after WP 3.5.1 upgradeThe CSS box doesn’t seem to be working anymore. Also it looks like most of the code on the fanbox has changed.