Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic EaselYou could really remove that code you added and USE the jetpack featured image plugin and that should work just fine.
That ^ old code you added was before that plugin came along.
If your comics don’t show up, add the 2nd pre_get_posts filter then see if it comes up
Forum: Themes and Templates
In reply to: [ComicPress] I want my comic displayed differentlyIn comicpress go to the appearance -> customizer and set a background color of the #page to #ffffff (white)
and work from there. You won’t be able to get the look of twogag.com unless you know what you’re doing CSS wise
Forum: Themes and Templates
In reply to: [ComicPress] WPMU Membership and EaselMost membership plugins need to be setup/or written to understand ‘post types’, if they don’t then you need to use the protect by URL section and enable inside comic easel the option for the chapters to be seen in the URL line, then you block inside the membership plugin the specific chapter URL’s
Forum: Plugins
In reply to: [WP Ultimate Search] Invalid argument supplied for foreach()Talked with you on advanced wordpress group on facebook.
The fix is:
private function shortcode_localize($params) { if (!empty($params) && is_array($params)) { echo ' <script type="text/javascript"> /* <![CDATA[ */ var shortcode_localize = {'; foreach ($params as $key => $value) { echo '"' . $key . '":"' . $value . '",'; } echo ' }; /* ]]> */ </script>'; } }Adding an IF statement that checks the $params verifying that it’s not empty and it’s an array.
Forum: Plugins
In reply to: [Comic Easel] Comic not appearing on index.php or single.phpAh yeah that happens when you cut and paste sometimes
Forum: Plugins
In reply to: [Comic Easel] Jetpack – Mobile theme for use with Comic Easellooks like I need to look at the new jetpack coding and test it out, sorry for the delay this post went past me
Forum: Plugins
In reply to: [Comic Easel] Comic not appearing on index.php or single.phpLooked at expound, this is where I would put the do-action in the index.php
<?php if ( is_home() && ! is_paged() ) // condition should be same as in pre_get_posts get_template_part( 'featured-content' ); ?> <?php do_action('comic-area'); // place here for above the blog and sidebar ?> <div id="primary" class="content-area"> <?php do_action('comic-area'); // place here for above blog section ?> <div id="content" class="site-content" role="main">Forum: Fixing WordPress
In reply to: Link it not being addedYour link is actually there
In the page editor, click the [text] tab in the upper right of the editor section and you will see the HTML of your post.
You will notice that the
<a href="yourlink"></a>^ yourlink replaced with your link url you have in there, you will notice that it doesn’t have any text between the
<a href=""> and the </a>..should look like this:
<a href="yourlink">Click here to Join my Team!</a>^ replace yourlink with well .. your link
Forum: Themes and Templates
In reply to: Custom Jquery of a plugin not workingPlugins are made to be self-sufficient. Unless otherwise told. You should contact that plugins author or check the documentation on that plugin to see what you need to do.
Since you’ve opted out of providing information on what that plugin is i’m sure you have your reasons, there’s really nothing anyone can help you with here in the forums without more information provided.
Forum: Themes and Templates
In reply to: [ComicPress] Remove Menubar from ComicPressIt’s an option in the appearance -> comicpress options to disable the menubar
Forum: Themes and Templates
In reply to: [ComicPress] Facebook share not workingUtilize a different plugin, like the jetpack plugin, the share module .. or any other one that creates the og: information
Forum: Plugins
In reply to: [Comic Easel] Duplicate Chapters appearedwp-content/plugins/comic-easel/widgets/
the chapter dropdown widget is the one that i need to fix, but I haven’t found any other cases that have that issue so still looking into it
Forum: Plugins
In reply to: [Comic Easel] Comic Easel-Navigation WidgetYou could utilize this method described in this post to add things to the comic navigation.
http://comiceasel.com/2012/06/19/adding-another-button-to-the-navigation-widget/
Forum: Plugins
In reply to: [Comic Easel] Additional SidebarsThe option to enable the comic sidebars is in the comic -> config
Forum: Plugins
In reply to: [Comic Easel] Make thumbnail widget show side by sideFor those who are playing the home game, it’s
.comic-thumb-wrap { display: inline-block; float: left; }