varresa
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Organize Uploads By Day?Has there been any news related to this? I need to have my files organized by date, not just month/year.
Thanks!
Forum: Fixing WordPress
In reply to: BDP RSS HelpBump….any ideas? Thanks!!!
Forum: Fixing WordPress
In reply to: Trouble Formatting Top Pages MenuI am having a similar problem again with the top menu. When I add a sub-page to an existing page, the rest of the links on the menu disappear and the search bar again moves off the menu. I have removed the sub-page for now, but could put it back if someone would like to see it broken.
Thanks!
Forum: Fixing WordPress
In reply to: Disappearing pages!I posted this last night but no one responded… hopefully now during the day there might be someone around who is able to help?
Thanks!
RenéeForum: Plugins
In reply to: Need simple text pluginThanks the Welcome Visitor worked perfectly. Question – it only shows up when the “www” is typed in the address – is there anyway to force it to appear for either address?
Thanks!
Forum: Fixing WordPress
In reply to: Trouble Formatting Top Pages MenuPerfect! Thank you so much for checking back in again – I appreciate it!
Forum: Fixing WordPress
In reply to: Trouble Formatting Top Pages MenuIf it helps, here is the original code, which I reverted back to for the time being:
<ul>
<li <?php if(is_home()){echo 'class="first current_page_item"';}?>><a href="<?php bloginfo('siteurl'); ?>/" title="Home">Home</a></li>
<?php wp_list_pages('title_li=&depth=1&'.$page_sort.'&'.$pages_to_exclude)?>
</ul>Forum: Fixing WordPress
In reply to: Trouble Formatting Top Pages MenuThank you for the reply – I replaced with your code from above and got this error in place of my page:
Parse error: syntax error, unexpected $end in /home/tingull/public_html/strawbale/wp-content/themes/terrafirma/header.php on line 53
Any ideas?
Thank you!
Forum: Fixing WordPress
In reply to: All Consuming Code ProblemThanks again. I have been trying to fix these errors, but I have searched in about 15 different php files and I can’t find where these ‘div” errors are located. Can anyone point me in the right direction?
Here’s one I’m looking for:
Error Line 150 column 39: document type does not allow element “div” here; missing one of “object”, “applet”, “map”, “iframe”, “button”, “ins”, “del” start-tag.
<div id=”ajax-comments-notification-70″></div><div id=”ajax-comments-70″ class=”
My page is: https://varresa.org As you can see, the bottom block is misaligned, perhaps due to a ‘div’ error?
Forum: Plugins
In reply to: (2) All Consuming Widget QuestionsSorry – I did not think this is the same question. Before, I was using just plain old consuming javascript in the sidebar, but when I wasn’t getting anywhere with that, I changed directions and decided to use the widget – which caused a different problem.
Forum: Fixing WordPress
In reply to: All Consuming Code ProblemThanks… I deleted a plug-in that was causing a lot of those errors. Down to 20 now – it seems nearly all those errors left are on blog entries where I inserted an image or a link using the WYSIWYG editor in WP… how could I prevent this from happening?
Forum: Fixing WordPress
In reply to: Links Visible/Not VisibleThank you for your replies – can I have a little more info on the template tags? Below is that I currently have in my sidebar.php file. I tried changing this code a couple times based on in the info in the template tags link above, but I couldn’t get it to specifically apply to the 3 categories I am trying to manipulate. Instead, it would just put ALL my links in one long list down the side. What should I replace this with (below)? Thanks!
<?php /* If this is the frontpage */ if ( (is_home()) && !(is_page()) && !(is_single()) && !(is_search()) && !(is_archive()) && !(is_author()) && !(is_category()) && !(is_paged()) ) { ?>
<?php
$links_list_exist = @$wpdb->get_var("SELECT link_id FROM $wpdb->links LIMIT 1");
if($links_list_exist) {
?>
<div class="sb-links">
<ul>
<?php get_links(); ?>
</ul>
</div>
<?php } ?>
Forum: Fixing WordPress
In reply to: Newbie question – sidebar moved on it’s own???That put me on the right track – thank you! I have a follow-up question now…
The problem was that block-quote in my post, which by the way, I thought looked really cool. Now I didn’t do anything with the CSS at all. All I did was type a sentence and then highlighted it, and clicked the “Indent” icon on the WP post and it automatically made it a block-quote. That is what messed up the sidebar. So, I’d still like to have those blockquotes in my posts (right now I just have that post marked as Private)… how do I put a block-quote in a post so that the CSS tells it what to look like, rather than pushing the Indent button?
Thank you so much!
Forum: Fixing WordPress
In reply to: Newbie question – sidebar moved on it’s own???The same exact thing happened to me and I have yet to figure it out. A friend of mine who is a web designer and also uses WP tried to fix it and changed some things in my CSS file. She got the side bar back in the right place, kind of… it’s okay when I have 3 short posts – but whenever I add a new post of a different length it throws off the placement of the sidebar. She hasn’t had time to try to really fix it, so I put the original CSS file back and once again, the sidebar went down to the bottom. So I put her modified one back, since it is better than it being on the bottom.
Here is my site: https://varresa.org/
I have never used anything other than the WP admin to post to my blog. I don’t believe my blog problem stems from anything to do with copying from Word, etc. Maybe we can figure this out together?
Thanks!
Forum: Fixing WordPress
In reply to: Links on SidebarMoshu –
I checked out the link you sent, but didn’t see anything that made sense to me. I did find a <?php get_links_list(); ?> in my sidebar.php code, but I don’t know what to add to that to exclude 2 category IDs. I tried a few things, but I just got parse errors.Any more specifics?
Thanks!
Renée