Christee
Forum Replies Created
-
Forum: Plugins
In reply to: [Weather Underground] Shortcode does not work with multi word city namesI just looked at the shortcode documentation, and I see lat/long is supported. I’ll give that a try.
Forum: Plugins
In reply to: [Weather Underground] Shortcode does not work with multi word city namesThanks, starcloud, but that is not a viable workaround for me. I have a travel site with over 80 destinations, and growing. I use php to dynamically build the shortcode with the city name (which is also displayed elsewhere on the page).
I can’t manually do that for every page. It worked fine in the older version.
I do have GPS coordinates, so if there is a way to use those in the shortcode that could be a possibility… otherwise, I need a fix or must stick with the older plugin.
Forum: Plugins
In reply to: [Weather Underground] Not distributing all fonts2.0.10 added fonts.
Filter would still be nice!Forum: Plugins
In reply to: [Weather Underground] Not distributing all fontsRelated to this…it would be really nice if there was a filter to prevent font loading at all.
Forum: Plugins
In reply to: [Weather Underground] 404 errors for fontsI was curious about the plugin profiling tool people are using. I loaded it, and have the same results. WU taking most load time, about 1.5 seconds. I then fixed the font 404 errors, and WU loadtime dropped to 0.5 seconds. That’s still more than I would expect, but a significant improvement.
Screen captures emailed to you.
Forum: Plugins
In reply to: [Weather Underground] templates lostZack,
Thank you for your email response. Putting the template files under my child theme, and overriding an existing template name solved the issue.If I has read your documentation, I could have saved you extra time looking at this…it was my error.
Thanks for the help!
Forum: Plugins
In reply to: [Weather Underground] templates lostHi Zack,
I sent you the information the day you requested it, to the email above. I wanted to be sure you received it.Forum: Plugins
In reply to: [Weather Underground] search and titleTrue enough. I prefer to not have high/low labels either (it’s obvious), so I made my own template and incorporated both changes.
Thanks for the good plugin!
Forum: Plugins
In reply to: [Weather Underground] search and titleHi Zack,
Thanks for the response, but that does not solve it. The only way to get the location_title displayed is to showdata search. The two appear coupled together.I noticed the only template file that uses location_title is search_form.html, so it seems that is why this does not work.
Forum: Plugins
In reply to: [WP Super Cache] Preload taxonomy archivesLooking at the plugin, I saw this line in the preload code:
$taxonomies = apply_filters( 'wp_cache_preload_taxonomies', array( 'post_tag' => 'tag', 'category' => 'category' ) );So I added a filter in my child theme’s functions.php:
// WP SuperCache custom taxonomies add_filter( 'wp_cache_preload_taxonomies', 'cache_my_taxonomies' ); function cache_my_taxonomies( $tax ) { return array( 'post_tag' => 'tag', 'city' => 'city', 'county' => 'county' ) ; }Now my site’s city and county custom taxonomies are cached. Yey! I do not want categories cached, that’s why
'category' => 'category'is not in the array in my filter.Forum: Plugins
In reply to: [WP Super Cache] Preload taxonomy archivesLet me elaborate on this for the plugin author. 🙂 Custom taxonomies are added to the term_taxonomy table. Once the name is known you would find the slug just like you do for a tag.
For example, my site has a custom taxonomy of city, and a url for such a page (the one that is not currently cached) is: example.com/city/city-or-florence/
The Yoast SEO plugin lets one customize SEO settings for custom taxonomies on the Titles & Metas page | Taxonomies tab, in case that is helpful. I’d include a screen grab, but I don’t know how to attach it.
I’d be glad to provide mode information if that would help with this feature. Thanks!
Thank you so much for opening the feature request and the quick reply. I’ll try the direct database approach, until the feature is added. 🙂
Forum: Plugins
In reply to: [WP Super Cache] Preload taxonomy archivesI have the same issue – pages for custom taxonomies are not cached when cache preloading occurs (manual or scheduled).
Did did find a solution (other than visiting each page yourself)?
Yuffie89 – FWIW, I installed iThemes Security on a new site, and within 24 hours it had prevented several invalid login attempts and one brute force attack. This freaked me out enough to risk upgrading from 3.6.6.
I created a full backup, plus made my own copies of .htaccess and wp-config.php. I read through this post, http://wordpress.org/support/topic/better-wp-security-is-officially-ithemes-security?replies=29, plus several of its links. Armed with the phone number of my web host in case something went terribly wrong, I pressed the “update now” option.
This went fine! I rechecked all settings and adjusted a few to be more stringent. All is great and my site is working with no issues.
I don’t use many plugins, so maybe that is a factor. But I just thought you’d like to hear this success story. Good luck with your upgrade!
I have been waiting also – for the same reason.
Yuffie89 was your upgrade successful?