settoloki
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Basic Contact Form] Undefined index: scf_input_subject$scf_input_name = isset($scf_options['scf_input_name']) ?: null; $scf_input_email = isset($scf_options['scf_input_email']) ?: null; $scf_input_subject = isset($scf_options['scf_input_subject']) ?: null; $scf_input_captcha = isset($scf_options['scf_input_captcha']) ?: null; $scf_input_message = isset($scf_options['scf_input_message']) ?: null; $scf_strings = array( 'name' => '<input name="scf_name" id="scf_name" type="text" size="33" maxlength="99" value="' . $value_name . '" placeholder="' . $scf_input_name . '" />', 'email' => '<input name="scf_email" id="scf_email" type="text" size="33" maxlength="99" value="' . $value_email . '" placeholder="' . $scf_input_email . '" />', 'subject' => '<input name="scf_subject" id="scf_subject" type="text" size="33" maxlength="99" value="' . $value_subject . '" placeholder="' . $scf_input_subject . '" />', 'response' => '<input name="scf_response" id="scf_response" type="text" size="33" maxlength="99" value="' . $value_response . '" placeholder="' . $scf_input_captcha . '" />', 'message' => '<textarea name="scf_message" id="scf_message" cols="33" rows="7" placeholder="' . $scf_options['scf_input_message'] . '">' . $value_message . '</textarea>', 'error' => '' );
Forum: Fixing WordPress
In reply to: Insert Into Post ErrorThere is no error message on screen, it just doesn’t do anything. I get the message “Security check failed” when looking at the ajax response using the developer tools in Chrome.
Forum: Fixing WordPress
In reply to: WordPress 3.5 Image upload problemI have also noticed that the jQuery to the media uploader is returning success: true after an upload is made.
Just the system isn’t seeing that or displaying any images.
I’m going mad here. May be time to change to Joomla
Forum: Fixing WordPress
In reply to: WordPress 3.5 Image upload problemI just tried disabling all my modifications, and still not working.
Does anybody have any idea on what may be causing this?
Forum: Fixing WordPress
In reply to: 404 error with paginationI magically fixed it for that one page /blog/ still does the same when clicking a tag but I can live without that feature and move development away from wordpress as it’s just too easy to break.
Thanks everybody for your help
Forum: Fixing WordPress
In reply to: 404 error with paginationI’m using the default permalink option of
https://hw-lee.com/sample-post/
although I have tried others including the default none nice name setting.the blog page is not set I do however use a custom static front page.
the post per page setting is set to 2 for purpose of testing.
None of these settings when tried differently offer a solution.
My next step is to write custom scripts to use the loop differently, though I would prefer to use the wp default options, unless I really have to – it’s looking like I have to but it’s truly head banging stuff trying to work out why it won’t just work. It has put me off using WordPress as the main development back-end for all the sites we create, have started to look at Joomla
Forum: Fixing WordPress
In reply to: 404 error with paginationahh this is something I had in the past, tried it several ways in the array $args and in the query string
query_posts('posts_per_page=2&paged=' . $paged);
No luck I’m afraid, but thank you for a fast response, it’s appreciated.
I have also found that on a static homepage you need to name this page and not paged, if that helps out anybody else with the same issue.
Though this doesn’t answer my issue (I have tried page too just in case.)
-T