habitcreature
Forum Replies Created
-
Yawn
> I am really eager to help, I rarely see unsatisfied users of Toolset and Types, hence I think maybe there were some misunderstandings and eventually you have had a bad experience with Support too, which I am eager to fix as well.
Beda,
Yes, maybe you rarely see unsatisfied users of Toolset and Types because they have no clue what’s going on behind the wordpress interface.
I think you missed the gist of my comment. I KNOW how to write CPTs from scratch etc.
Thanks so much for your attention. I won’t be available to continue this conversation.. Good luck!
Hi Beda,
I remember you from the toolset forums intended for paying customers. You provided excellent support once for me when I was learning the toolset plugin. Anyway..
Yes, I was referring to the WYSIWYG blocks repeating the_content() in the sidebar widgets and footer widgets.
I wrote up a quick article on my blog about the performance of toolset.
http://letuschasethesun.com/theme-from-scratch-vs-wp-types-toolset/Here were the results:
With toolset —
Load time: 1.95s, Memory: ~58MB, SQL Queries: 93
The original load time was really 3-4seconds! The 2seconds here is after I turned off some toolset features.NO TOOLSET —
Load time: 0.62s, Memory: ~25MB, SQL Queries: 40Not to mention other important runtime performance improvements.
- This reply was modified 8 years, 6 months ago by habitcreature.
Forum: Reviews
In reply to: [WP Instagram Widget] Will use againNo prob. Put in a git pull request for some missing documentation about a filter.
Forum: Plugins
In reply to: [Theme My Login] Redirect after redirectHi Jeff,
Thanks for responding!
A custom function in functions.php has
wp_redirect( site_url( '/donate/login' ) );..Should I append
/?redirect_to=https://a.url.here? so that it’swp_redirect( site_url( '/donate/login/?redirect_to=https://a.url.here' ) );or does tml have a hook for this in any way? New to programming!
Thanks! Deactivating “mixed content fixer” seemed to work for one page load.
After further hunting, turns out adding a single line of “RLimitMem 512000000”, in the .htaccess file under my public_html dir fixed it.
For anyone else looking at this thread, the following worked for me.
In your wp-config, the following must be set to false.define( 'DISALLOW_FILE_MODS', false ); define( 'DISALLOW_FILE_EDIT', false );If the above are set to true, then this plugin will throw a fit.
Forum: Fixing WordPress
In reply to: Code works on my desktop, but not on other desktops.Try
Omitting the photo of spring thats loaded but hidden:body .cover { background: transparent url("../img/spring.jpg") no-repeat scroll 0% 0% / cover; }Move from .cover to body:
background: url("http://angeladorland.nl/wordpress/wp-content/uploads/2015/11/home-bg.png") fixed; background-size: cover;
Note: I changed “background-image” to “background”.
See example hereForum: Hacks
In reply to: Wall of code for form and $_POSTTurns out the second form needs its own nonce. DUH.