tee05
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar files in sub directoryget_template_part(‘sidebar/sidebar-home’);
Forum: Fixing WordPress
In reply to: Sidebar files in sub directoryThank you this time it worked!
I think may have made a typo before (the folder name is ‘sidebars’ with an s at the end not ‘sidebar’).
Thanks again for your help.
Forum: Fixing WordPress
In reply to: Sidebar files in sub directoryThanks for your response.
I tried the code above but it did not work and also tried it in a number of combinations but still did not work.
Any other suggestions?
Forum: Fixing WordPress
In reply to: Code reverts to ''' in header.phpYes, I think your right. I have recreated the header file and uploaded it through FTP. The editor is disabled so I’m hoping this will work.
Forum: Fixing WordPress
In reply to: Code reverts to ''' in header.phpI always use FTP to edit the files and I haven’t had issues with it in the past (no one else edits the files expect me this why I was thinking it might be hacked?). When the PHP syntax error appeared I noticed through the WP editor all the ‘ were converted to '. So I disabled the editor by adding – define(‘DISALLOW_FILE_EDIT’, TRUE); in the wp-config file just in case if it’s being hacked somehow.
It’s very strange I haven’t had this issue before with WordPress.
Forum: Fixing WordPress
In reply to: Code reverts to ''' in header.phpI have studied the link you provided and it was helpful but it doesn’t solve my issue. It’s not about ‘get_bloginfo()’. The problem is the quotation mark – ‘ – is automatically converted to ‘'’ code in my header.php file (no other file).
Forum: Fixing WordPress
In reply to: Code reverts to ''' in header.phpThanks Seacoast but I’m still not sure what exactly the issue is but I have for the meantime disabled the file editor in wordpress. (I think it might help security wise.)
If anyone out there has any solutions please let me know thanks!
Forum: Fixing WordPress
In reply to: Code reverts to ''' in header.phpThanks for the info! But I’m not sure I understand. How exactly can I fix the issue? Do I need to change the pre_option_html_type filter through the database to something else? I’ve never had this problem before with any other of my WP sites.
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] You have no Variations added?I’m having the same problem.
After I click ‘Update Variations’ the loading icon appears and nothing else happens. Then I click ‘Update’ (for the product) and I get the message – ‘You have no Variations added.’
Not sure why that’s not working?
Forum: Fixing WordPress
In reply to: wp_list_pages() child_of not workingThank you that helped! Incase anyone else needs this code:
<?php $pages = get_pages('child_of=2&sort_column=post_date'); $count = 0; foreach($pages as $page) { ?> <a href="<?php echo get_page_link($page->ID) ?>"><?php echo $page->post_title ?></a> <?php } ?>
Forum: Fixing WordPress
In reply to: wp_list_pages without <li></li>Great, thanks!
Forum: Fixing WordPress
In reply to: wp_list_pages without <li></li>Thanks for the link, but doesn’t that enable/disable the Heading? I need it to just display the links for example:
<li><a href="#">about us</a></li>
Display as:
<a href="#">about us</a>
Anyone know how to do this using wp_list_pages()?
Forum: Everything else WordPress
In reply to: Can wordpress hold over 300 usersThanks, this really helps.
Forum: Plugins
In reply to: Forum PluginYes, actually I’ve tried wp-fourm plug-in but just found out its not compatible for wordpress version 2.7. I’m looking for a plug-in or any forum that’ll work alongside wordpress ie. PHP-bb or SMF? Any suggestions?
Forum: Fixing WordPress
In reply to: Index and Blog pageOh ok thanks, I didn’t think it would be so complicated and it is a bit late now to transfer everything. Isn’t there any easier way?