Kirk Wight
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Able] Theme translation doesn't workHello,
I believe I’ve found the problem, looks to be a bug with the theme itself. I’ll do further testing, generate a new version, and let you know when it’s available (should be in the next 24hrs). Thanks for your patience!
Forum: Themes and Templates
In reply to: Debut Press75 Full Width ScreenHello,
I’m the author of the free theme available on wordpress.org called Debut. The theme you’ve posted about (with the same name) is a premium theme by Press75; you’ll need to contact their support for help with that theme: http://press75.com/view/debut/
Regards,
KirkForum: Themes and Templates
In reply to: [Debut] trouble with Firefox 19.0.2Hello,
Follow these instructions to solve your issue:
- In the Admin, go to Appearance > Editor
- About half-way down, you will find a line that says “top: 1.8em;” (it only shows up once, you can just search the browser page too)
- Change it to read “top: 100%;”
- Save the file by clicking the “Update File” button
Thanks, this will be addressed in the next release.
Forum: Plugins
In reply to: [Groups] Pagination broken with GroupsI have the same problem, with the latest version 1.3.8 and WordPress 3.5. I’ve posted to the above itthinx.com page also, but to summarize for others:
“The number of post returned per page seems to be based on total number of posts, not the total number a user can see, throwing off the pagination. If “Settings > Reading > Blog pages show at most” is set to 10 posts, and the first ten posts returned by the query are not viewable by the user, then a blank page will be displayed. If posts 11-13 are viewable, however, http://mysite.com/page/2/ will show them. Likewise, if pagination is set at 10 posts, and 3 posts are not viewable to the user (restricted by Groups), that user will only see 7 posts for that page (rather than the first 10 viewable posts).”
Forum: Themes and Templates
In reply to: [Straight Up] Facebook Like buttomThat sucks. My only suggestion is to start with their instructions again from scratch on a different site; maybe you’ve missed a detail. You can also post on their developer support forum: https://developers.facebook.com/support/
Good luck!
Forum: Themes and Templates
In reply to: [Straight Up] Facebook Like buttomI see what you mean, but can’t tell what’s causing it to be cut off. You’re right, overflow:hidden would do it, but the only overflow:hidden declaration I have in Straight Up is for paging navigation (which doesn’t affect your issue).
Does it behave the same with a default theme, such as Twenty Twelve?
Forum: Themes and Templates
In reply to: [Straight Up] Facebook Like buttomI have no idea what’s going on in all that; do you have a demo site I can see it on?
Forum: Themes and Templates
In reply to: [Straight Up] Facebook Like buttomWhere are you getting the Like button from? Is it in Jetpack, another plugin, or an embed code from Facebook or somewhere else?
If it’s a chunk of code, please post it to pastebin and also let me know where you’re including it in the theme.
Forum: Fixing WordPress
In reply to: Files and pages still present, but site not workingThe default Bluehost page suggests something has happened to your index.php or something… But absolutely start with Esmi’s solutions, in that order, to narrow it down.
Forum: Themes and Templates
In reply to: [Debut] Making words boldHi,
Bold is working on the theme, it’s just not as heavy as you may expect. The default font has a weight of 300, so I’ve made the “bold” 400 (subtle, but there).
For a more typical, heavy bold, you have a few options:
- Change line 287 of style.css from 400 to 700. You’ll have to do this every time you update the theme.
- Make a child theme, and put the above changes in that, so that they’re not overwritten by theme updates.
- If you’re using the Jetpack plugin (and I highly recommend it), add the code under Appearances > Edit CSS in your admin. These changes will also persist through theme updates.
For options 2 or 3, the code block to use would be:
b, strong { font-weight: 700; }Forum: Plugins
In reply to: [Groups] Import and exportMeaning just the standard wp_postmeta table I assume?..
Great, thank you!
Forum: Plugins
In reply to: [Groups] Import and exportI just noticed the plugin uses its own tables – can I assume things will work fine, as long as these tables are restored along with posts using the same IDs?
Forum: Themes and Templates
In reply to: [Debut] Failed to Install Page Navigation functionIt works as expected in my own tests. Be sure that chunk of code is replacing
<?php debut_content_nav( 'nav-below' ); ?>in the various templates (eg. index.php, archive.php).Weird; I was sure I tried that combination with globalizing $publicize_ui, but apparently not 🙂
I just hooked off of
admin_head-post.phpinstead so that it kicks in for the edit page, and I’m good. Thanks!I’m trying to remove Publicize from the submit box only for one custom role, while keeping it for regular users.
We have members of our organization that are allowed to edit their own five locked-down posts (that make up a detailed profile). THe whole Publicize thing is just causing confusion, and since we’re not supporting it with our members in any way, I just want to remove it (preferably through
post_submitbox_misc_actions).Any ideas?