belaray
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downI figured it out.
problem was a pluggin
WP-AmazonForum: Fixing WordPress
In reply to: Page Attributes Options do not drop downAny pros out there who could give me a hand?
Please??? I’d really like to get this up and running correctly again.Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downNothing seems to be working.
Do you think I should try a fresh install, and then import the saved database?Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downWhen I say ‘re-install’ I really mean re-upload.
Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downOne again – Thank you.
My database is backed up – yes.
I tried to re-install ALL FILES on the most recent d/l of wordpress 2.8.4 (which is what the blog is using)
The re-install seems to work because the file date has been changed to today.I did not re-install the wp-content folder – but all other files were moved……Did not fix the problem ;-(
I tried to change theme to the default classic theme…..Did not fix the problem ;-(
Any other ideas?
Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downThanks again MichaelH.
So just to be 100% sure I understand, I can re-upload all files, and this will not disturb my database functionality, etc?Forum: Fixing WordPress
In reply to: Page Attributes Options do not drop downThanks for the reply MichaelH!
The mouse icon changes to the ‘directional’ look as if I could drag it..but it doesn’t move.Thank you for the link on uploading files… that is what we were thinking of doing, but I didn’t know if I should focus on some specific files or not.
Forum: Themes and Templates
In reply to: Trouble with WordPress Default 1.61. Thank you! I’m there on problem 1!!!
2. Not quite there on question 2…
What you have described in more detail is what I have done… but it does not seem to work. I have tried each of the following changes to my SIDEBAR.PHPA:
-
<?php
wp_list_pages(‘sort_column=menu_order&title_li=’); ?>B:
-
<?php
wp_list_pages(‘sort_column=menu_order&title_li=<h2>’ . __(‘Prose’) . ‘</h2>’ ); ?>C:
<?php
wp_list_pages(‘sort_column=menu_order&title_li=’); ?>But with each of these changes, I see NO change on my sidebar??? Do I need to make a change to the header.php??
Thanks again
Forum: Plugins
In reply to: WordPress Mobile Plugin Page DisplayOne other thing…
I just tried my mobile page on a motorola sidekick – and the “regular” (non-mobi) page was displayed.The mobi page has come up on both a pda and blackberry without fail.
Forum: Themes and Templates
In reply to: Trouble with WordPress Default 1.6Kafkaesqui,
Thank you thank you! Off to a great start here! Take a look:
https://belaray.com/blog/?p=15Two questions:
1. My background is not showing as it should (see https://belaray.com/blog)
This is what I read:
In the style section of header.php, there’s an if/else statement to set which background image to use for #page. Change this so there is only one #page referencing “/images/kubrickbg.jpg” (or whatever image you may have change it to).This is what I have:
<?php
// Checks to see whether it needs a sidebar or not
if ( !$withcomments && !is_single() ) {
?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg-<?php bloginfo(‘text_direction’); ?>.jpg”) repeat-y top; border: none; }
<?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>https://www.belaray.com/office.jpg”) repeat-y top; border: none; }
<?php } ?>2. You suggested: Did you also adjust (or add) the ‘sort_column’ parameter of wp_list_pages() to sort on menu_order?
I’m not sure what this means. The only wp_list_pages I can find is in sidebar.php
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>Many many thanks for your help!