Frumph
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type Permalinks] NoticesThat issue is resolved, however new issue:
If taxonomy doesn’t exist for comic post type:
http://dev.frumph.net/comic/%chapters%/comic-post-type-jetpack-auto-publish-to-facebook-twitter/
if custom post type has multiple taxonomies:
http://dev.frumph.net/comic/new-chapter/child-of-new-chapter/motion-comic/
Those are two problems.
Works fine if 1 taxonomy is set to custom post type. Otherwise bad.
Forum: Plugins
In reply to: [Comic Easel] Redirect for Next Comic and Next in Chapter?You can call the function directly to return the url LINK of it and use it in your code.
$prevlink = ceo_get_previous_comic_in_chapter_permalink(); $nextlink = ceo_get_next_comic_permalink();Link will either be false, or the URL
Forum: Plugins
In reply to: [Custom Post Type Permalinks] Noticesfix soon, lots of people I have requested to use plugin are now broken especially the extra / in the permalink breaks things
Forum: Themes and Templates
In reply to: [Easel] Static Content at the top of my blogOr, you could add a text widget to ‘above header’ sidebar and put it there.
Forum: Themes and Templates
In reply to: [Easel] Blog Post UsernameUse Jetpacks Edit CSS module, then add this to that. (if you are not using a child theme)
.post-cat { display: none; }Go to your wp-admin users profile and create yourself a nickname.
Forum: Themes and Templates
In reply to: [Easel] How to make the header fill the entire page width?The jetpack plugin has an “Edit CSS” ability or you can use a child theme and add it to the child theme’s style.css
Forum: Themes and Templates
In reply to: [Easel] Want to delete margin in top of pages and posts in EaselThis was handled on my forums for the theme. It was a simple mixup of the end user trying to comment out some sidebars. and the //’s were showing.
Forum: Themes and Templates
In reply to: [Easel] Want to delete margin in top of pages and posts in EaselAs I replied on my forums, you are not giving enough information, a screen cap or link to your site to see what is occurring would be necessary.
It’s possibly some text that is there that is the same color as the background, who knows; more information is needed.
Forum: Themes and Templates
In reply to: [Easel] News pages all showing same posts – won't go past page 2.. the code is meant to override the wordpress setting 😉 hence it was a bug that was fixed in newer versions heh.
Glad to hear it though!
Forum: Themes and Templates
In reply to: [Easel] News pages all showing same posts – won't go past page 2..the option for setting how many posts to display on the home page is in the appearance -> Easel Options, however ver 3.1 probably had a bug in it which was eventually fixed by ‘doing the coding right’ ;/
In the version you have, I probably had it where the loop itself in the index had the count in it, which was wrong, it broke the loop sql for some people…
So instead in the newest versions it’s done from inside the functions.php pre_get_posts action on init, which makes everything work as supposed to.
Problems with upgrading to the latest on the repo or from the github?
Forum: Themes and Templates
In reply to: [Easel] Scripts not runningIf you disable plugins, then enable them one by one you can find the one that creates it.
Forum: Plugins
In reply to: [Comic Easel] bug when translating custom post slug with wpml.. It’s not that easy to swap between slugs between languages as you think it would be with wpml
the problem will be that you can ‘change’ the slug in the comic->config so that it’s not necessarily a static thing.
I can add this to the comiceasel.php file:
'custom_post_type_slug_name' => __('comic','comiceasel'),which denotes that the ‘default’ is modifiable; .. but then it is taken as a variable to be used as the slug and I don’t think any translator can touch it at that point..
changing the slug too will wreak havok, because after the slug is changed you need to redo the rewrite rules each and every page load and that is phenomenally a bad idea
Forum: Themes and Templates
In reply to: [Easel] Scripts not runningAlso in your source of your actual page there is this:
<p><code><div id="jd-calendar" class="mc-main calendar month all" aria-live='polite' aria-atomic='true'><div class="my-calendar-header">^ this is the first part of the .entry that I see
…it has ‘code’ in front of the div which is causing an validation error`
Forum: Themes and Templates
In reply to: [Easel] Scripts not runningviewing the source of your site, in the head is this:
<script type='text/javascript'> /* <![CDATA[ */ var objectL10n = {"validationError":"There was an error processing your request","requiredField":"This field is required","enterValidAddress":"Please enter a valid email address","success":"Your message has been sent successfully!"}; /* ]]> */ </script>It’s probably important .. maybe your plugins are not all configured?
Forum: Themes and Templates
In reply to: [Easel] How can I remove the header image on a page?find the body classes specific for that page by viewing the source of the page and looking in the <body class=” section
then you use css
body.page-id-# #header { display: none; }