alkafy
Forum Replies Created
-
For both 1. and 2., you’ll need to look in to creating a page template for this page specifically.
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates
It’ll take a bit of HTML and CSS knowledge on your part, but using a copy of page.php in your theme’s folder as a starting point should help.
As for 3. – other options I’d consider are more advanced and might break Kickstarter’s TOS.
Instead of embedding the project in your site, have you considered opening Kickstarter in a new window instead?
Here’s an introduction to iframes: http://www.w3schools.com/tags/tag_iframe.asp
Forum: Fixing WordPress
In reply to: How to remove WP Polls CSS from HeadAdd this to your functions.php:
remove_action('wp_head', 'poll_head_scripts');Also, it adds in polls-css.css. Would you like that removed?
Edit: If so, add this to functions.php as well:
add_action('wp_print_styles', 'polls_deregister_styles', 100 ); function polls_deregister_styles() { wp_deregister_style( 'wp-polls' ); }Try adding a semi-colon after “Everything’s Chimpy!”
A note: I’ve had to hack this plugin a lot more in the 3 months since I posted the above comment. I don’t believe the author maintains it any more and you might not want to use it unless you can maintain it yourself if problems arise.
Forum: Plugins
In reply to: [Plugin: AJAX Report Comments] One SuggestionShould solve your multiple-submission issue, though I didn’t make Report Reason required. I might revisit this some time in the future and add that as an option. For now, this is a quick-n-dirty solution.
Also, all of this plugin’s javascript now loads in wp_footer(). You may want to make sure your theme supports it.
Forum: Plugins
In reply to: [Plugin: AJAX Report Comments] One SuggestionIt takes a while for it to do anything after the button click, yeah. The simple solution would be to hide the textarea and button as soon as it’s clicked instead of waiting for server response, then showing it again if there’s an error. I’ll keep you informed.
Forum: Plugins
In reply to: [Plugin: AJAX Report Comments] One SuggestionI haven’t yet, but I plan to soon. Should be fairly simple. Hopefully I can get to it next week some time.
Forum: Fixing WordPress
In reply to: Have live date and time updated in sidebarPHP won’t be able to give you a “live” clock; only a snapshot, as you mentioned. Look into Javascript clocks, like this tutorial: http://www.elated.com/articles/creating-a-javascript-clock/
Forum: Fixing WordPress
In reply to: HELP!!!!!!! I can’t log into wp-admin! Broken site :(Try placing:
<?php update_option('siteurl','http://www.runningbums.com'; ?>
in your theme’s functions.php.Forum: Fixing WordPress
In reply to: WordPress Default Gallery – IssueYou might also want to check your wp_options table for any references to your previous domain. The easiest way would be to export the table via phpmyadmin and doing a search for your old domain in a text editor.
Forum: Fixing WordPress
In reply to: WordPress Default Gallery – IssueDid you give the plugin a shot? For every picture or thumbnail, there is meta associated with it in the database. That plugin will delete all database data for those attachments and reinsert it. If the files exist, refreshing that data might work.
Forum: Fixing WordPress
In reply to: WordPress Default Gallery – IssueForum: Fixing WordPress
In reply to: Add more image sizes@aesqe – Thank you for sharing. Exactly what I needed.
Forum: Plugins
In reply to: [Plugin: Sidebar Login] FF3 – Recognizes Login Success only after RefreshAdded Line 388:
if (substr($pageURL,-1)==’/’) $pageURL = substr($pageURL,0,-1);
if (!strpos($pageURL,’rn=’)) {
$rand = (!strpos($pageURL,’?’)) ? ‘?rn=’.rand(0,99) : ‘&rn=’.rand(0,99);
$pageURL .= $rand;
}Above:
if ($url != “nologout”) {
$pageURL .=’#login’;
}Appears to work, but caching problems are always tricky…
Edit: Typo.
Forum: Plugins
In reply to: [Plugin: Sidebar Login] FF3 – Recognizes Login Success only after RefreshHa! I got it.
Login form submission sends me to http://www.example.com/#login when on index.
Without a filename or $_GET variable, Firefox doesn’t recognize the form submission as a page request and doesn’t refresh the DOM, even though the server still seems to receive the request. It’s the same as clicking a link with an anchor – the page simply moves (or doesn’t move if #login is near the top of your page.)
I’ll be hacking the plugin to insert a $_GET variable – possibly with a random int to force refresh.
Hope this helps other folks running into this quirk.