uwiuw
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Help! Under spam attack, Need Help ASAP.Forum: Fixing WordPress
In reply to: Page update date not workingups! you have answered it (i should refresh this page before submit a new answer) ??
Forum: Fixing WordPress
In reply to: Page update date not workingI am using WordPress as a CMS rather than a blog, and have the following code in “footer.php”:
I’m little bit confused. Are you sure it’s locate in the footer.php ?
just post yours theme code per file to wordpress.pastebin.ca. Put the link here then i will check why it’s not working. But to make it easy, please just put index.php, footer.php, and single.php
how about it ?
Forum: Themes and Templates
In reply to: Exclude sidebar on specific pageI’m sorry i give wrong solution. so try change your code to
if (!is_front_page() OR !is_home() ) {
<?php get_sidebar(); ?>
}
Maybe you can earn more from Conditional Tags
btw, what’s your meaning of the startpage ?
Forum: Fixing WordPress
In reply to: How To Get Random Posthei, using cache is smart solution. but what happen when we have to show dynamic recent comment in front page. As you know it, this widget will show comments on a post.
Forum: Fixing WordPress
In reply to: Page update date not workingare put ‘the_modified_date’ in a loop ?
Forum: Fixing WordPress
In reply to: Where do plugins or themes store data?where plugins or themes store their data ?
i believe the plugin usually store them in wordpress option (mysql table name wp_options). a plugin / themes developer encourage to save their plugin setting in this table.
I would assume it wouldn’t be in the plugin directory itself?
Else, future upgrades might cause a problem??no, if the developer follow the right direction.
Forum: Themes and Templates
In reply to: Exclude sidebar on specific pagemaybe this help
if (is_front_page()) {
<?php if($post->ID != ‘958’){ ?>
<?php get_sidebar(); ?>
<?php } ?>}
or combine it with
is_home()
Forum: Fixing WordPress
In reply to: Shortcode not loading on postscan you give your website link ?
a page built – “Our Work”, separate from the home page
btw, can you explain more about your sentece?
is it, a page create on the domain but not as part of wordpress instalation (which create page from dashboard)
Forum: Fixing WordPress
In reply to: Duplicate comment formswow, that’s weird ??
btw, check you single.php, do you have any function call
comments_template()
or something ? just comment it to
//comments_template()
Forum: Installing WordPress
In reply to: After new database, no changes or posts can be madei never experience this kind of thing. Every time i export / import, its always end well. maybe there’s always an exception.
Btw, if you don’t mind, can you create new user / new categories / new tags, etc. Just to see if this only happen to post and pages only.
Then if you able to log to your cpanel, please check the phpmyadmin, to see if your database in good condition and there’s no corrupt table or something.
Forum: Installing WordPress
In reply to: After new database, no changes or posts can be madei have browse your site without javascript. and it’s find. i can move from one page to another.
i have try to https://itsalltech.com/2010/02/27/sprint-drops-palm-pixi-price-to-50/ and the page show normaly.
so can you give more detail information ?
Forum: Fixing WordPress
In reply to: Problem with head.phpi’m sorry i can help you more then this. maybe others able to help you
Forum: Fixing WordPress
In reply to: Excluding page globallythe echo parameter will store the pages into variabel, rather then display it. ??
echo
(boolean) Toggles the display of the generated list of links or return the list as an HTML text string to be used in PHP. The default value is 1 (display the generated list items). Valid values:* 1 (True) – default
* 0 (False)taken from wp_list_pages
Forum: Themes and Templates
In reply to: HELP! Parse error – locked out of siteIf there is a better solution please let me know!!!!!
Right now, you can log to your ftp, download the themes, edit it in your computer, then upload it again.
btw, if you want to develop your own themes, then please do it in local server or somewhere you access your file easily.