Creative Slice
Forum Replies Created
-
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove advertising?Thank you for the prompt, and extremely helpful reply! I really appreciate your help.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove advertising?Perhaps upgrading to pro lets you remove this? That would make sense and be totally worth it!
Forum: Plugins
In reply to: [Redirection] upgrade database failing (v2.4 -> 4.0)We’ve tried the beta plugin but keep getting stuck on the “Upgrade Database” page with a Something went wrong error.
Is there a good way to nuke the Redirection data and start fresh from the backup we created?
Forum: Plugins
In reply to: [Redirection] upgrade database failing (v2.4 -> 4.0)Running into similar issue when upgrading from 2.4 to 4.0
Failed to perform query "ALTER TABLE
wp_redirection_itemsADD
match_urlVARCHAR(2000) NULL DEFAULT NULL AFTER
url"
We ran into the same issue and the “lightweight” plugin fixed it.
Thank you.
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Property of non-objectOops, I spoke too soon. Looks like it’s now only an issue when the “Members” plugin by Justin Tadlock is used and you try to edit a role.
Here is the error:
( ! ) Notice: Trying to get property of non-object in .../wp-content/plugins/authorizenet-woocommerce-addon/authorize.net-woocommerce-addon.php on line 696
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Property of non-objectThank you for the quick fix. That did it!
Will you be pushing this update to next update of plugin?
Thanks!
Forum: Reviews
In reply to: [ShareThis Dashboard for Google Analytics] Script broken in headerWe had to remove your plugin from all our sites since this was causing a serious loading time slowdown and hurting our site ranking.
We did have the “Disable All Features” box checked, however this code was still loading.
Forum: Plugins
In reply to: [Content Expiration & Redirect] Custom Post Types?I was able to get it to work by adjusting lines 171-173 of content-expiration-and-redirect.php to this:
if( !$post->post_type OR ( $post->post_type != 'job' AND $post->post_type != 'post' ) ) return; $screen = get_current_screen(); if( $screen->base != 'post' ) return;
Is there an action or some other method I could use to do this without hacking the core plugin?
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Temporary Connection IssuesWe’re having the same issue. Is this hosting related? Anything we can do to fix it so we can see our stats?
Forum: Plugins
In reply to: [AMP] Remove Merriweather FontFigured it out!
add_filter( 'amp_post_template_data', 'custom_adjust_amp_settings' ); function custom_adjust_amp_settings( $data ) { $data['font_urls'] = array( 'Libre Baskerville' => 'https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic', ); return $data; }
Forum: Plugins
In reply to: [AMP] Remove Merriweather FontI’ve been able to “fix” this by deleting this from /includes/class-amp-post-template.php
Would be great to have an action or filter to be able to do this.
The UPCOMING functionality has this same problem. Here’s a custom loop that shows only upcoming events (even if they recur beginning in the past):
<?php // Upcoming Events Loop $time = current_time( 'timestamp' ); $now = mktime( 0, 0, 0, date( 'n', $time ), date( 'd', $time ), date( 'Y', $time ) ); $event_future = array( 'post_type' => 'sc_event', 'posts_per_page' => 99, 'meta_key' => 'sc_event_date_time', 'orderby' => 'meta_value_num', 'order' => 'asc', 'post_status' => 'publish', 'meta_query' => array( 'relation' => 'OR', array( 'key' => 'sc_recur_until', 'value' => $now, 'compare' => '>=' ), array( 'key' => 'sc_event_end_date_time', 'value' => $now, 'compare' => '>=' ) ) ); $events = get_posts( apply_filters('sc_event_list_query', $event_future) ); foreach ( $events as $post ) : setup_postdata( $post ); ?>
Forum: Fixing WordPress
In reply to: Remove the new dns-prefetch codeThank you Jacob, we’re already using this to remove emoji:
// Remove emoji script remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'wp_print_styles', 'print_emoji_styles' );
And the additional of your code helps remove this extra dns-prefetch:
add_filter( 'emoji_svg_url', '__return_false' );
Thank you!
Forum: Fixing WordPress
In reply to: Remove the new dns-prefetch codeThank you Jacob, that worked perfect.
I’m fine using dns-prefetch for asset related URL’s, but it seems like the
s.w.org
link is unnecessary since it’s not related to any JS or CSS on the website.