Greg Rickaby
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] New Event DB Error after 1.4 UpgradeThat worked for me.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Options to use fullcalendar.min.jswow, thank you!
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Lost all events for current monthGreat, please respond to this thread when it’s done. Thanks.
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Lost all events for current monthI just upgraded to 1.2.0, about 30 seconds ago… just for you
Forum: Plugins
In reply to: [WP Calendar] [Plugin: WP Calendar] Lost all events for current month@faebu They still appear in the widget and using tags, but in the graphical calendar they’re are gone.
@a F – to downgrade, just download and re-upload an older version. You can download older versions here: https://www.ads-software.com/extend/plugins/wp-calendar/download/
And one more… if you don’t want the “Like” button to show up the same place as the connect button:
- Open fbconnect.php
- Scroll to line 525
- Erase:
echo fbc_render_like();
- Save & Upload
Scratch that too…
I just placed:
<?php echo fbc_render_like(); ?>
into a hook and there is the like button for those who aren’t connected.Derrrrr
I deleted:
<div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({appId: '126059490749466', status: true, cookie: true, xfbml: true}); }; (function() { var e = document.createElement('script'); e.async = true; e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js'; document.getElementById('fb-root').appendChild(e); }()); </script>
out of custom_functions.php and POOF the error disappeared.
The issue is now, people must be “Connected” to even see the “Like” button.
Forum: Networking WordPress
In reply to: how to select a theme for multisites different from main siteThis happened to me too. I had to clear Firefox’s cache before the /subdomain/ sites showed up correctly ??
BTW: The default .htaccess rewrite code provided by the network install works fine.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Settings don’t get savedI have the same issue where settings wont save. It happens on sites that are just running disk cache too. I even “empty all cache” to no avail.
Usually, I end up clicking “Save changes” until they do, 10-15 clicks later.
You’re welcome. Also, I find what works best (APC vs. Disk Enhanced) is really trial and error. Rather than think of APC vs. Disk Enhanced, I used them together.
I use APC to cache everything except pages.
From what I understand APC will assemble the pages out of it’s cache (using RAM), then save the files onto the disk. Then the server will serve the page from disk, not requiring APC to work again. (I might be completely wrong in this assumption)
….but…from what I experience….once a page/post is assembled and put into disk cache I find subsequent loads are lightning fast.
I combine all my style sheets (except
layout.css
) on this website: https://www.buzzmontgomery.comIn the Minify/Combine settings of W3T here is my CSS order:
1) wp-content/themes/thesis_17/style.css
2) wp-content/themes/thesis_17/lib/css/ie.css
3) wp-content/plugins/nextgen-gallery/css/nggallery.css
4) wp-content/plugins/wp-polls/polls-css.css
5) wp-content/plugins/wp-calendar/css/fullcalendar.css
6) wp-content/themes/thesis_17/custom/custom.css
7) wp-content/themes/thesis_17/custom/home.css
8) wp-content/themes/thesis_17/custom/ie.cssThis works for me.
Andrew, I run Thesis too. You cannot minify/combine
/thesis_17/layout.css
Here is why:
Thesis re-builds
layout.css
on every page refresh (seriously).When you use the Design Options in Thesis Admin to set your colors and fonts then click the “Big Ass Save Button”, Thesis stores those settings in the database. With every page-view, Thesis runs an object that grabs those database settings and re-builds
layout.css
.You see, Thesis requires you use to use
custom.css
to CANCEL out ID’s and Classes used inlayout.css
, so when you minify/combine stylesheets,default.include.0.css
loads first in the page<head>
andlayout.css
loads last. Thus, makingcustom.css
useless.Here is why:
All browsers read the last style-sheet in
<head>
(normallycustom.css
) and makes it the “most important”, thus things you do incustom.css
“cancel out”layout.css
My experience has been (with Thesis) is to minify/combine all style-sheets (including plug-in style-sheets) with the exception of both
layout.css
andcustom.css
. This will preserve the natural order of things within Thesis and render your site correctly.Hope this helps, and maybe I should write a blog post about it ??
Or you can download the Development ZIP: https://downloads.www.ads-software.com/plugin/w3-total-cache.zip
Forum: Plugins
In reply to: [Plugin: Wordbooker] Fatal Error: mb_convert_encoding()5.3.2