tf5_bassist
Forum Replies Created
-
Also affected by this. Slug prefix, redirect preferences, everything reset to null or default basically. Thankfully, deactivating the plugin and reactivating did fix it. But man… That’s… That’s a big issue lol. If I wasn’t just in the beginning phase of implementing TA and lost out on money, I’d be super mad lol.
Forum: Plugins
In reply to: [Posts To-Do List] Plugin broken after last updateAwesome, looks good to me!
Forum: Plugins
In reply to: [Posts To-Do List] Plugin broken after last updateSure. Here’s screenshots of the dashboard, post editor, and settings pages.
Forum: Plugins
In reply to: [Posts To-Do List] Plugin broken after last update[edited]
- This reply was modified 7 years, 6 months ago by tf5_bassist.
- This reply was modified 7 years, 6 months ago by tf5_bassist.
Oddly enough, I checked on my live environment, and so far I’m not getting the error. I’m trying to track down the cause of it in my dev environment, but so far no luck.
I, too, am receiving this error. On version 1.7.2, and the error shows up in the console. Currently, I’m assuming that this error is what is causing conflict with the map refresh on a directory plugin, as when Elementor is deactivated, the issue is resolved.
jquery-migrate.min.js?ver=1.4.1:2 JQMIGRATE: Migrate is installed, version 1.4.1 frontend.min.js?ver=1.7.2:2 Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'. at Object.getCurrentDeviceMode (frontend.min.js?ver=1.7.2:2) at u (frontend.min.js?ver=1.7.2:2) at HTMLDocument.init (frontend.min.js?ver=1.7.2:2) at i (jquery.js?ver=1.12.4:2) at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2) at Function.ready (jquery.js?ver=1.12.4:2) at HTMLDocument.K (jquery.js?ver=1.12.4:2) getCurrentDeviceMode @ frontend.min.js?ver=1.7.2:2 u @ frontend.min.js?ver=1.7.2:2 init @ frontend.min.js?ver=1.7.2:2 i @ jquery.js?ver=1.12.4:2 fireWith @ jquery.js?ver=1.12.4:2 ready @ jquery.js?ver=1.12.4:2 K @ jquery.js?ver=1.12.4:2
Details:
WP 4.8.1
Elementor 1.7.2
Fullby Premium themeForum: Plugins
In reply to: [WP Admin Todo List] Broken in WP 4.6?v1.4 is broken in 4.7.2 still.
Forum: Plugins
In reply to: [Easy Affiliate Links] Roadmap for future updatesNo worries! Looking forward to the update, for sure!
Forum: Themes and Templates
In reply to: [JustWrite] Making post featured image clickableAwesome, that works.
I ended up making some customizations in the child themes to get an uncropped image out of both portrait and landscape images, and created a custom image size that wouldn’t crop the image height, in case anyone else wanted to do the same. It’s based off of the code excerpts already provided in these threads.
In the child CSS sheet:
.featured-image-wrap > a { float: left !important; z-index: 2 !important; position: relative !important; }
In the child functions.php file:
add_action( 'wp_enqueue_scripts', 'ac_child_theme_enqueue_styles' ); remove_action( 'ac_single_post_title_info_thumb', 'ac_single_post_thumb' ); // Set up new image sizes // add_image_size( 'ac-sidebar-featured-no-crop', 638 ); add_action( 'after_setup_theme', 'add_custom_image_size' ); function add_custom_image_size() { add_image_size( 'ac-sidebar-featured-no-crop', 638 ); } function ac_single_post_new_thumb() { global $paged; $show_thumbnail = get_post_meta( get_the_ID(), 'ac_show_post_thumbnail', true ); do_action( 'ac_single_post_thumbnail_before' ); ?> <figure class="featured-image-wrap"> <?php do_action( 'ac_single_post_thumbnail_before_image' ); if ( has_post_thumbnail() && $paged == false ) : $large_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large' ); if ( ! empty( $large_image_url[0] ) ) { printf( '<a href="%1$s" alt="%2$s">', esc_url( $large_image_url[0] ), esc_attr( the_title_attribute( 'echo=0' ) ) ); the_post_thumbnail( 'ac-sidebar-featured-no-crop' ); // used to be ac-sidebar-featured // print( '</a>'); } else echo '<img src="' . get_template_directory_uri() . '/images/no-thumbnail.png" alt="' . __( 'No Thumbnail', 'justwrite' ) . '" />'; print( '</a>'); endif; do_action( 'ac_single_post_thumbnail_after_image' ); ?> </figure> <?php do_action( 'ac_single_post_thumbnail_after' ); } add_action( 'ac_single_post_title_info_thumb', 'ac_single_post_new_thumb', 20 );
I definitely think that having these options available built into the theme would be pretty awesome. Global on/off on the thumbnails, clickable thumbnails on/off, and choosing either a static sized cropped image, or dynamically sized.
Well, thanks for all your help in getting these changes made, it’s much appreciated! ??
Forum: Themes and Templates
In reply to: [JustWrite] Making post featured image clickableAwesome, thanks! ??