knittingand
Forum Replies Created
-
Forum: Plugins
In reply to: [Media Cleaner: Clean your WordPress!] Question, not a problemThank you for the clarification and fast reply. Yes, that is exactly what was confusing me!
Well isn’t that the way it always goes! I fixed it as soon as I asked for help.
I turned off site accelerator in Jetpack and now it’s working fine.
Forum: Fixing WordPress
In reply to: Parent Pages MissingJust adding: I turned on the classic editor plugin and added the correct parent to the page.
Went back to gutenberg and the url was now correct but it was listed as having “No Parent”
Went back to the classic editor plugin and the correct parent page was still there.
I’ll have to use classic editing until this is fixed.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Related Posts not ShowingOK, isn’t this always the way it works? As soon as I said they weren’t showing, they turned up!!!!
Forum: Fixing WordPress
In reply to: Force urls to lowercase when redirectingI have found a plugin to help with the capitalisation problem, just looking for a solution to the trailing slash problem.
Forum: Plugins
In reply to: [CC Child Pages] No pagination linksI found the error.
In the cc pagination css there’s an error in the float clear that caused the pagination to disappear behind the links and thumbnails
It says
ccpages_nav { display: block; clear: all; text-align: center; }whereas it should be
clear:both;Forum: Plugins
In reply to: [CSS & JavaScript Toolbox] Unrecoverable syntax error?@wipeoutmedia Thanks for the clarification.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpressCan’t believe I didn’t think of this before! I enclosed it with a div and hid it using css. The script still works perfectly.
Thank you everyone for your help. I wouldn’t have been able to make it work without help.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpress@prashantvatsh Thanks.
I have a few scripts and need a lot of control over where they show on the site with over 2,000 posts and pages so I think, though it looks messy on the one page, that might be the way I have to leave it for now.
Forum: Plugins
In reply to: [MaxGalleria] Maxgalleria not totally removed upon deleting the plugin@alanp57 Thanks. I shouldn’t have a problem with doing that.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpress@bcworkz Unfortunately that breaks the code.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpressThanks very much @prashantvatsh and @diondesigns
It’s working almost perfectly now.The only problem now is that
add_action('wp_footer','ps_custom_js_mitts'); function ps_custom_js_mitts(){ ?>Is showing at the bottom of the page when viewed
- This reply was modified 7 years, 6 months ago by knittingand.
- This reply was modified 7 years, 6 months ago by knittingand.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpressI tried
jQuery(document).ready(function($) {but I get the same error on other lines now. Code is definitely in the footer.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpress@prashantvatsh OK, I sorted it out and tried it but I’m still getting the same errors.
I checked it out in Chrome’s console and it says
Uncaught Type Error: $ is not a functionon the line
$(document).ready(function() {Edited to add:
And when I changed it tojQuery(document).ready(function($) {I got the same error on other lines
- This reply was modified 7 years, 6 months ago by knittingand.
- This reply was modified 7 years, 6 months ago by knittingand.
Forum: Developing with WordPress
In reply to: Javascript works in html but not wordpress@prashantvatsh I’m trying it now but the last line is giving me a syntax error.
With the }, it says that’s wrong but without it says unexpected EOF
I’m using CSS JS Toolbox, since I already had that installed for my other javascripts.