Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Center navigation widgetLooks like you found it
.comic-nav { width: auto; }
?
Forum: Plugins
In reply to: [Comic Easel] 2 link issues in the comic archivelots of bug fixes to make it work with wordpress 4.1 was needed, especially the customizr .. still need to do final round of coding to finish that off than it will take about a month to go through the review process with the wordpress theme review team to be put up (they slow)
Forum: Plugins
In reply to: [Comic Easel] 2 link issues in the comic archiveyes, consider it fixed, can get recent ver from github and try it out
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel plugin@30seven was the original OP of this help post (@atardiff took it over)
and would like to help them get this all fixed up as well if they respond
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginAs for the comic blog post on the home page, because customizr uses a class to organize and display the post content with actions inside of it, figuratively building the post section as it goes there’s no real easy way besides copying the html output and remaking it in wordpress functions creating in essence a function to mimic how it’s doing it.
.. and i’m not that up on how to do that myself, little above my league.
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginerm
if (function_exists('ceo_pluginfo')) { add_action('__before_main_container', 'ceo_display_comic_area', 5); add_action('__before_main_container', 'ceo_display_comic_post_home', 5); }but yeah
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginit would actually be:
add_action('__before_main_container', 'ceo_display_comic_area', 5); add_action('__before_main_container', 'ceo_display_comic_post_home', 5);and i’m home now, trying to find __loop in the code to find where it’s function for displaying a post is
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginYou shouldn’t need the comic blog widget if you added the do_action(‘comic-blog-area’)
What that function does if the theme can find add_theme_support(‘post-thumbnails’) and post-formats it should pull up the the content.php or content-comic.php file for the theme if those files are in the root of the theme.
If they are not, you can create them yourself and put them in your child theme.
Heading out the door can help you more in a couple hours with that.
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginLooking back (and it’s been awhile), I now remember why I created these functions:
https://github.com/Frumph/comic-easel/blob/master/functions/library.php#L19
to save and restore the $wp_query; totally forgot them on the comic-blog-area section but have them on the comic-area
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginThe troubling thing about both instances of it, I have\
wp_reset_query();At the end which should have reset that value as well; or you think it should have.
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginfile: functions/displaycomic.php
file: functions/injections.phpRemove this text:
$wp_query->in_the_loop = true;Wherever it is found inside both of those files.
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel plugind4z_conf totally get what you’re saying now, going to remove the force of in_the_loop in those two injection areas
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginNo, that means I need to look at the comic-blog-area function to make sure it’s not setting itself into the in-the-loop as well,
okay, found it
https://github.com/Frumph/comic-easel/commit/e0a13511dc3291d6bd386a3782998d49ce1aa4c6
removed it, basically removed the force of the $wp_query in the loop, if you can mimic that in that file and see if it works after re-adding the blog action
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel pluginYeah it does a wp_reset_query afterwards the problem now is that i would need to find out if that will make it generate a larger overhead, but shouldn’t be that much of a big deal.
Forum: Themes and Templates
In reply to: [Customizr] Integrating comic easel plugin..which are now gone for some reason, guess he commented out those lines I told him to? need response.