thresholdjlt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broke Link to PDFResolved.
Forum: Fixing WordPress
In reply to: Broke Link to PDFI basically deleted everything from both directories.
I put the Privacy file in one folder at a time until I determined which one the page/link was using.
It is working now. Thanks for everyones input.
Forum: Fixing WordPress
In reply to: Broke Link to PDFI found the problem. I am not sure if I have a redundant folder now. There are 2 form folder in my file manager tree. The first forms folder is under my public_html folder, the second forms folder is two levels deep, public_html/counselorthewoodlands.com/forms.
For whatever reason it is picking up the file from the public_html\forms folder. Is this some sort of inheritance scheme, where it goes to top level first then the lower level forms folder? Maybe I don’t understand how it is accessing the folders. Thought I did.
The site is now picking up the pdf from the higher level folder.
Forum: Fixing WordPress
In reply to: Broke Link to PDFThe file is in the same location as the TCS_Privacy_Notice.pdf file.
Both the original form and the addendum are viewable and readable in the forms directory.
Forum: Fixing WordPress
In reply to: Content Security Policy ConfigurationThank you Saghir.
This is very helpful.
I fixed it my self by adding 2 lines of code in the .htaccess file.
Thanks.
Forum: Fixing WordPress
In reply to: Images not being found from media libaryThanks for getting back to me.
I added it through custom html widget.
I went to appearance, theme, customize. Uptown theme descended from Primer.
I selected the footer I wanted then chose the custom html widget.
I copied my html code.
Forum: Themes and Templates
In reply to: [Uptown Style] Uptown style footerThis problem is resolved. It is my own doing from 4 years ago. I added some additional CSS to make it do this behavior. Go figure. Don’ t fix what ain’t broke.
Forum: Fixing WordPress
In reply to: Modifying Heading in Uptown StyleSorry it took so long to get back.
Here is what I added in my functions.php
// JLT Code Begin
function wpb_widgets_init() {
register_sidebar( array(
‘name’ => ‘Custom Header Widget Area’,
‘id’ => ‘custom-header-widget’,
‘before_widget’ => ‘<div class=”chw-widget”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”chw-title”>’,
‘after_title’ => ‘</h2>’,
) );}
add_action( ‘widgets_init’, ‘wpb_widgets_init’ );// JLT Code End
Here is what is in the header.php
This code occurs after the primer_action()<?php
/* JLT code begin
* For displaying Custom Header Sidebar Widget
*/if ( is_active_sidebar( ‘custom-header-widget’ ) ) : ?>
<div id=”header-widget-area” class=”chw-widget-area widget-area” role=”complementary”>
<?php dynamic_sidebar( ‘custom-header-widget’ ); ?>
</div><?php endif; ?>
This is what is in the additional css, which is added via customize in WordPress.
div#header-widget-area {text-align: right;
}
h2.chw-title {
margin-top: 0px;
text-align: left;
text-transform: uppercase;
font-family: lato;
font-size: small;
width: 130px;
padding: 5px;
}I know this css is not right, but I have tried several other css statements that don’t seem to get me there either.
Like inline block or align bottom, things like that.
Forum: Fixing WordPress
In reply to: Modifying Heading in Uptown StyleThose are the files that I am trying to modify.
Forum: Fixing WordPress
In reply to: Redirect ErrorsI just checked and on those 3 pages, pingdom tell me under the response code section that I have a 301 code, moved permanently.
I also deleted unused pages and the sitemap is up to date now.
Forum: Fixing WordPress
In reply to: Menu Nav CorruptWell, I think I fixed the problem.
I clear the cache first of all in my browser.
Then I went back to my menu items and saved them.
They were showing the correct list.Went back and displayed and seems to be working.
Forum: Fixing WordPress
In reply to: Deleting Blog PostsSteve,
That was too obvious. Thanks again.
Before I trashed that post, I removed the comments sidebar.
Both work great.Trashing that page got rid of the ambiguous looking empty placeholder square for an so to speak empty blog.
One last thing, maybe your already answered my question to this, Can I get rid of the “continue reading button” and just have my blog post show directly?
Is there any benefit to me keeping the “continue reading button” like page load times, etc?Forum: Fixing WordPress
In reply to: Deleting Blog PostsSteve,
Thanks for your speedy reply. The css change works great.
My point was that I don’t want the hello world post to show.
Second, there is a embedded comment for that blog post that I want to get rid of as well.
Example:
Recent CommentsMr WordPress on Blog Post Title
If I click on the Mr Worpress line it is a hyper link. I have no options to delete comments.
Forum: Fixing WordPress
In reply to: Blog – Yoast says I have 0 text on my blog pageThanks for the replies.