luckdragon
Forum Replies Created
-
Forum: Hacks
In reply to: Creating a second admin rolewouldn’t it be easier to just install the role manager plugin?
Forum: Fixing WordPress
In reply to: my site has been hackedI guess I’m confused, looking at that site, how can you tell it’s been hacked?
it looks to me almost like your permalinks aren’t working properly
Forum: Hacks
In reply to: Plugins and Page URL Different from Permalink (AJAX)they get changed when you click one of the links for your ajax processing, right?
you probably have
<a href='#' onclick='javascript:function'>or something similar. try changing it to<a href='javascript:void(0)' onclick='javascript:function'>Forum: Fixing WordPress
In reply to: Redesigning with a WordPress themeyou goto the admin section of WP, then you click on appearance -> themes
you’ll notice a tab that says “Install Themes” click it, then you’ll notice a link that says “Upload”, click it, it will ask you to select the file (the zip file for your desired theme), select it, then upload it.
once it’s uploaded, it will auto-install, then ask you if you want to preview it, or activate it.
if you activate, it becomes the default theme
first off, you have to find where that auto-text is generated.
Forum: Fixing WordPress
In reply to: Insert to Database from form submitwouldn’t it be easier to do:
global $wpdb; $field = array(); $field['templateName'] = $_POST['tmplName']; $sql = $wpdb->insert('wp_templates',$field);Forum: Fixing WordPress
In reply to: HELP!!!it’s because you are using a relative path, and that path is relative to the url, put the full path to the image and it should work everytime
Forum: Fixing WordPress
In reply to: creating a fluid (full-width) header and footerusually, it’s changing the css so that width: ###px gets changed to width:100%
of course, you’ll have to adjust other widths too, but that’s where to start
Forum: Fixing WordPress
In reply to: How to remove page title from Home page onlywhich page title? the title bar page title? or …?
Forum: Hacks
In reply to: Checkbox state won't save in widgetdid you try echoing $_POST to see what’s being sent?
i.e.
echo "<PRE>".print_r($_POST,true)."</PRE>";Forum: Hacks
In reply to: CalculatorPro doesn't work in sidebardoesn’t look like it’s working right on their site either, I entered 144 inches, 12 feet, 12 feet, left it a rectangle, therefore it has no radius, and it tells me 0 cubic feet, last I checked 12x12x12 (144 inches = 12 feet for those that don’t do math well) = 1728 cubic feet.
Forum: Hacks
In reply to: maximum post per page setting, bugyou could always remove the posts_per_page parameter on that particular loop.
Forum: Hacks
In reply to: Checkbox state won't save in widgetlooking at your code, you aren’t passing/setting a value for the checkboxes
i.e.
<input type="checkbox" name="whatever" value="true">
so whether it’s checked or not, it has a value of “” the way you have it setup..if you add a value, then when it’s checked, the value returned is whatever you define, if it’s not checked, then the value returned is “”
Forum: Fixing WordPress
In reply to: Page hyperlinking using custom php filesyep, that’d do it 🙂
Forum: Fixing WordPress
In reply to: Page hyperlinking using custom php fileswhat’s the full error, what file?