askyeshua
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] No Upcoming Events Notification on List ViewThanks Jaime. I was afraid that was the case. Will look into the month view.
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic EaselHey Frumph, any luck with this?
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic EaselThanks guys! Jeremy, I have enabled the plugin and the images are showing up correctly on regular blog posts(but not on comic posts). Frumph as per your suggestion setup code as follows to functions.php:
add_filter('pre_get_posts', 'ceo_mobile_query_add_comics'); function ceo_mobile_query_add_comics($query) { if ( $query->is_home() && $query->is_main_query() ) { $query->set('post_type', array('post', 'comic')); } return $query; }Which works well when displaying all the comics, but not single comic posts. Since this code is outdated, any other ideas how I can get it to work?
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic EaselI removed all the code and made sure the featured image plugin is enabled. However, the comics do not show up. Just regular Blog posts(with any images that may be in the blog post) are being displayed.
So as per your suggestion I went ahead and re-added the 2nd pre_get_posts filter ONLY in the functions.php. So this shows up perfectly on loading the home page – with all comics listed with their images . But when I click on an individual comic, the image does not show up. Am I missing something?
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic EaselThanks for the help guys! Jeremy, just double checked, and there is no extra plugin I am usinf for the Featured Images.