ssdesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I modify the output as below:So when I do the paging, I want only the content part to be updated and nothing else.
Can this be done in any other way?
Forum: Fixing WordPress
In reply to: How can I modify the output as below:I am Ajaxing my wordpress template.
So far so good, I have been able to Make most of the things Ajaxed except for the Paging part.
Forum: Themes and Templates
In reply to: Dinstinguish first item from wp_list_pages()Hi,
You might find this useful:http://www.liewcf.com/blog/archives/2005/05/wordpress-navigation-bar/
Maybe you can look at the code and study it to find a solution to your problem.
Hope that helps.
Forum: Themes and Templates
In reply to: Loading Content section using Ajaxok i got it.
I had to add:
<?php require(‘../../../wp-blog-header.php’); ?>to the content which I seperated in another file.
Forum: Themes and Templates
In reply to: Next Previous for Recent Postno I will actually like to create a AJAX slider to move to past posts.
Thats where I need to know how to query other posts like recent posts.
Forum: Plugins
In reply to: How to PING from my Plugin Options pageThis is a plugin for someone who have their own ping service and people subscribe to it.
The content on a users log will be updated using this plugin and not a post, hence the need to ping from the plugin page.
Hope this will justify my need 🙂
Forum: Plugins
In reply to: How to PING from my Plugin Options pageI am creating a plugin which will have form data to be filled in the OPTIONS page of that plugin.
When the user submits and Saves the data in the OTPIONS page, I want to ping sites informing of the new change.
The default PING option in wordpress is available only when you SAVE a POST.
Hence I did a workaround, I called the PING function from within my plugin options page and its working fine 🙂
Thanks for droping in to help.
Forum: Plugins
In reply to: plugins not workingAre you getting any error while activating?
Which browser are you using?
Forum: Requests and Feedback
In reply to: custom XML outputYes, I am a strong advocate of this and after writing my custom XML output, it was so easy to port wordpress to Flash.
I am sure others will find alternative usage of haveing a raw XML output.
Can we really add this feature? I can share my experience if people are interested.
Forum: Plugins
In reply to: Dynamic OPTIONSmutube,
Had one more question, if u want, I can post a seperate topic.
Can we add some code in the plugin so that when you activate it, automatically a PAGE is created in WordPress?
Forum: Plugins
In reply to: Dynamic OPTIONSExcellent, this really worked.
Thanks and I will add credits to you when I finish this piece of work.
Forum: Plugins
In reply to: Dynamic OPTIONSok,
Now in my existing code, I am doing this:To add default options:
add_option(‘wphr_qualification’, __(‘your qualification’, ‘wphr’));To update options:
update_option(‘wphr_qualification’, $_POST[‘wphr_qualification’]);To get options:
$wphr_qualification= stripslashes(get_option(‘wphr_qualification’));Now in the case of dynamic content as discussed above, how should I re-write my code to utilise values from:
$options[‘qualifications’]=$qualifications;
Any suggestion?
Forum: Plugins
In reply to: Dynamic OPTIONShi mutube, I will try this.
Looks like it should work.
Thanks.
Forum: Plugins
In reply to: Dynamic OPTIONSsorry for that miss type. I was refering to get_option
This means that I can not create a plugin where the form fields are not determinate?
I need to pre-define everything in code.
Am i right?
Forum: Themes and Templates
In reply to: blix theme problemHi,
I figured it out.The poblem was the way BLIX theme has been visualised.
The designer of the theme expected the user to have a sidebar on all pages, even on a single post page and hence the PHP code for ‘header’ had this line:
<body><div id=”container”<?php if (is_page() && !is_page(“archives”)) echo ” class=\”singlecol\””; ?>>
Which means that for anything apart from a PAGE which is NOT ARCHIVES the DIV class will be ‘container’.
Which I had to modify to:
<body><div id=”container”<?php if (is_page() && !is_page(“archives”) || is_single()) echo ” class=\”singlecol\””; ?>>Now it works fine.
Hope this analysis will help someone else as well.