coope
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenCool, I found it on the 2014 theme and added it above
<?php wp_footer() ?>Seems to be resolved now.
<script type='text/javascript'> /* <![CDATA[ */ var sharing_js_options = {"lang":"en","counts":"1"}; /* ]]> */ </script> <script type='text/javascript' src='http://cppcooper.com/wp-content/plugins/jetpack/modules/sharedaddy/sharing.js?ver=3.9.4'></script> <script type="text/javascript"> (function() { var request, b = document.body, c = 'className', cs = 'customize-support', rcs = new RegExp('(^|\\s+)(no-)?'+cs+'(\\s+|$)'); request = true; b[c] = b[c].replace( rcs, ' ' ); b[c] += ( window.postMessage && request ? ' ' : ' no-' ) + cs; }()); </script> <?php wp_footer(); ?>Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenNone that I am aware.
I don’t mind adding it manually to my theme. It is probably something I’ve done in one of my functions that somehow inadvertently removed it.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenSure, is there a particular way you’d like me to set things up? Or simply add the buttons back?
edit: the buttons are there, but the javascripting is all the way it was before I started trying to fix the buttons in the theme.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenActually, I’ve replaced all the javascript includes with the javascript files listed on a 2014 themed page. (where the share button worked) Still doesn’t work.
Maybe I am trying too hard to hack a solution here, but it would seem that what you’ve indicated to be the problem is possibly only part of the problem.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenThanks for pointing me in the right direction. I made the wordpress theme btw. The built in jQuery doesn’t seem to fix the issue, and in fact a lot of other working features break if I swap it for mine.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Share Button remains hiddenThe website is at http://cppcooper.com
Here’s a short page: http://cppcooper.com/2016/03/disable-sleep-hibernation-cmd/Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Please do not use !important in plugin cssI found a solution!
Load a replacement style sheet just after wp_footer(). The plugin css is loaded in wp_footer(), ergo if you load a css after it which overrides the definitions in it.. problem solved.Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Please do not use !important in plugin cssI agree completely. I am trying to add a scroll bar, and this seems like the only solution. Just scouring these forums before I commit to it.
Forum: Fixing WordPress
In reply to: Remove p tag *insertion but keep html p tagsI tried doing that, but the template css files I am using have a style for the pre tag hidden away.
I actually found a solution earlier on this forum. I had been looking for the wrong key words the last day and a half. I can’t remember exactly the google search query I made, but it was auto formatting centric instead of specifically regarding the p tag or wpautop and its job.
It is the same idea as
<pre>but with<div>. The thread suggests to enclose all the paragraphs with it, but I found it only worked on a individual basis.