kranzoky
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] Huge Icon after updateFound the issue.
The styles were being cached on the server side of things.
Thanks,
— Kyle
Forum: Plugins
In reply to: [Custom Post Type UI] Huge Icon after updateStill not working.
When I inspect the css for the image in the admin menu for Custom Post Type UI, I can see that the below style is not even being used for the image/icon.
#toplevel_page_cptui_main_menu img {
height: 20px;
margin-top: -2px;
width: 20px;
}Forum: Plugins
In reply to: [Custom Post Type UI] Huge Icon after updateI am still seeing it as well and I just updated the plugin a few minutes ago. I cleared my browser cache as well.
Forum: Plugins
In reply to: [WordPress Popular Posts] Stats and Widget not showing same resultsI actually made the mistake of not adding the minus (-) sign before a category to remove it from results. So it was showing JUST that category instead of removing that one category.
Thanks.
Forum: Plugins
In reply to: [Quick Page/Post Redirect Plugin] Work with WP Super Cache?Thanks Don!
Yeah, it was the caching plugin not getting cleared. Because you could view a recently updated page as a WP admin and it would work fine (since admins don’t get the cached pages), but if you viewed the site logged out, it would not reflect the changes unless the cache was manually cleared.
Also, is there a way to setup the plugin to automatically redirect to the first child? Or do you just have to set that up manually?
Forum: Plugins
In reply to: [GIF Animation Preview] CSS and Javascripts not loadingOkay, it looks like the theme did not have <?php wp_head(); ?> in the header. So that would account for the CSS file not loading. However, the theme does have <?php wp_footer(); ?> in the footer… so why would it not include the js file?
Forum: Plugins
In reply to: [GIF Animation Preview] CSS and Javascripts not loadingCould the reason the CSS/JS files are not loading for the plugin be because I am just loading jQuery using the line below (without using the wp_enqueue_script method and registering it with WordPress):
<script src=”https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”></script>
So the plugin is not aware that jQuery is present?
Thanks.