FractalKitty
Forum Replies Created
-
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Annual calendar view?Thank you!
Forum: Themes and Templates
In reply to: Edits not reflecting on the siteI figured it out! A slider plugin that I had installed for a previous theme I was using was the issue! I deactivated & viola!
Forum: Themes and Templates
In reply to: Edits not reflecting on the siteNot really. I am working under strict security terms and the site is not publicly accessible. I am not sure posting the site would help at all since I haven’t even started to add content to it. I started with the child theme and can’t move forward. The site looks identical to a basic twentyeleven theme that hasn’t been touched yet.
Forum: Plugins
In reply to: Tables plugin that allows text resizing!Ummm.. I am not sure how to modify the CSS to apply to only one page! Changes to the CSS are reflected across the site.
But I found what I was looking for. A neat plugin called Websimon Tables. It is by far the most user friendly table plugin!
Forum: Plugins
In reply to: Adding "Popular/Useful Links" to the sidebarFunny I found the answer minutes after posting the question! The answer is in Custom Navigation.
First, create a custom nav in the menu section of the cPanel
Then, use the Custom Navigation widget to select the secondary nav to show up on the sidebar.
Forum: Themes and Templates
In reply to: Editing functions.php breaks the site!Forum: Fixing WordPress
In reply to: Remove "posted in…." from pages.I have been trying to remove the “Posted in” tag for a few days now, I have tried many codes in functions, content-single, and style files but nothing seems to work! I am working in Twenty Eleven Child theme. The code provided above (also see below) is the only one that seems to remove tags from the posts however, it also removes the date tag which I’d like to keep. Can anyone help me with this please?
function twentyeleven_posted_on() {
}Forum: Themes and Templates
In reply to: Editing functions.php breaks the site!I found out on another forum that there is an extra comma on the code. The code now doesnt break the site but I also don’t see any changes. Here is the code:
<?php
function twentyeleven_posted_on() {
printf( __( ‘<span class=”sep”>Posted on </span><time class=”entry-date” datetime=”%3$s” pubdate>%4$s</time>‘, ‘twentyeleven’ ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( ‘c’ ) ),
esc_html( get_the_date() )
);
}php?>
Forum: Themes and Templates
In reply to: Editing functions.php breaks the site!Tried that but its still breaking! ??
Forum: Themes and Templates
In reply to: Adding function.php tp child theme breaks the entire site!Awesome! That worked! Thanks a lot! ??
Forum: Themes and Templates
In reply to: Adding function.php tp child theme breaks the entire site!Ok! Will try that now. Thank you!
Forum: Themes and Templates
In reply to: Adding function.php tp child theme breaks the entire site!Well the only way I know how to create a new file in FileZilla is to copy an old one & rename. In this case I copied the content.php, renamed, and deleted its contents but them the site went offline immediately after that. I’ve tried copying the entire functions.php over to child theme but that also breaks the site.