JMunce
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Tag rather than all posts on front page listThis method works. Thanks
Forum: Fixing WordPress
In reply to: Can't edit date of posts suddenlyLol. OK, myyyyy bad. Thanks for pointing that out. Should have posted this tomorrow though, on April 1!
Forum: Fixing WordPress
In reply to: Can't edit date of posts suddenlyNope. The date option is still there, but when I select Feb 31 instead of March 31, I get the date highlighted in red, and this message: Whoops, the provided date is invalid.
It’s across several sites at least. I’m not at the point where I want to disable all my plugins to test that aspect, as this can cause issues with WordPress as well.
Forum: Plugins
In reply to: [AddToAny Share Buttons] How to change what's in the expand?Right, but it puts whatever you prioritize at the top of both the displayed icon floating share bar AND the top of the hidden list of share options.
Ah, so it does.
I didn’t understand that the settings were referring to two different bars.
Thanks
Forum: Fixing WordPress
In reply to: How to upload a folder (javascript app) to WordPress?I just dropped it into the html folder at the root of the site, and it worked. I just had to change a couple of location pointers (just removing slashes from the beginning of the location pointer).
Thanks, though.
Search engines. Sometimes its now showing an image from the page that isn’t the featured image (or even in the article) beside the title in search.
Perhaps there’s a meta tag I can put around these sections to stop this from happening?
Forum: Hacks
In reply to: Call javascript in footer the right wayOk, I appreciate the information, but I’m still back to my original problem, which is I don’t know how to use this information when it comes to actually putting it in as code on my functions.php and on my page template.
Would it be possible to see an example of working code? From there, I would have a basis for understanding all the other points.
Forum: Hacks
In reply to: Call javascript in footer the right wayHi bcworkz,
In my case it is a theme that is ‘not so good,’ I guess, because I am coding it and learning things like this as I progress. Yes, I read somewhere that it must call wp_footer and then include all the other calls in the parenthesis?
Forum: Hacks
In reply to: Call javascript in footer the right wayHi bcworkz,
In my case it is a theme that is ‘not so good,’ I guess, because I am coding it and learning things like this as I progress. Yes, I read somewhere that it must call wp_footer and then include all the other calls in the parenthesis?
Forum: Hacks
In reply to: Call javascript in footer the right wayHi bcworkz.
Thank you, the enqueue and register scripts were what I was thinking would be suggested. There are examples there of use, but unfortunately not an example of how that code looks when you want to load javascript in the footer.
Forum: Hacks
In reply to: Call javascript in footer the right wayWill this prevent javascript from loading in the header?
Forum: Plugins
In reply to: [AddToAny Share Buttons] How to get normal colors back?Thank you
Forum: Plugins
In reply to: [AddToAny Share Buttons] Working on some pages, not on others?Thank you,
For those experiencing this issue, do this:
Add this line of code underneath your functions buttons code:
<?php if ( function_exists( 'ADDTOANY_SHARE_SAVE_KIT' ) ) { ADDTOANY_SHARE_SAVE_KIT(); } ?>
Forum: Fixing WordPress
In reply to: New theme – images don't respect column boundariesResolved, people can add this:
img.alignright { float: right; margin: 0 0 1em 1em; }
img.alignleft { float: left; margin: 0 1em 1em 0; }
img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; }
.alignleft { float: left; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }