jarednova
Forum Replies Created
-
Forum: Plugins
In reply to: [Timber] Getting Hooks Back in Conjunction With TimberHey! Sorry, just getting back from holiday break.
If you use
{{post.content}}in your twig theme file, it will fire all the normal filters attached to the_content (which _should_ include the one from Crayon Syntax Highlighter). This differs from{{post.post_content}}which will output directly from what’s stored in the DB.Give that a shot and let me know if it works…. If this plugin is doing something funny there are ways to manually trigger a function
Forum: Plugins
In reply to: [Timber] Using Timber with other pluginseasy. Just had to do this last week on a client project:
add_shortcode( 'custom_form', 'custom_form_run' ); function custom_form_run($attributes){ $content = Timber::compile('my-form.twig', $attributes); return $content; }… by the way I’m using:
w3tc_pgcache_flush_url(‘blog’);
w3tc_pgcache_flush_url(‘/blog/’);
w3tc_pgcache_flush_url(‘/blog’);
w3tc_pgcache_flush_url(‘http://localhost/blog’);
w3tc_pgcache_flush_url(‘http://localhost/blog/’);… but none give me back anything
I’ve tried every combo I can think of, but no luck. @fredericktownes, help!!!!!
Forum: Plugins
In reply to: [Timber] Plugin could not be activated because it triggered a fatal error.Not sure on which version requires it — I’ve already added a better warning when that happens that will be in the next release
Forum: Plugins
In reply to: [Timber] Plugin could not be activated because it triggered a fatal error.Hey Bruice! Can you check your PHP version? Timber uses some closures (http://php.net/manual/en/functions.anonymous.php) which were introduced in PHP 5.3
Forum: Plugins
In reply to: [Timber] Something wrong in the TimberTerm.get_link() functionCan you confirm that this solved yr issue? I’d like to resolve this thread. Thanks!
Forum: Plugins
In reply to: [Timber] Something wrong in the TimberTerm.get_link() functionThat makes sense. I was able to replicate the problem on my side and then apply your suggested fix. You can download the updated code on GitHub:
https://github.com/jarednova/timber
… let me know if it works for you and I’ll update the WordPress.org files and close this issue. (and while you’re there please Star the project on GitHub!)
Thanks!
– Jared
Forum: Plugins
In reply to: [Timber] Something wrong in the TimberTerm.get_link() functionSo it’s working for me without the change you show above. Can you show me how you’re calling the .get_link method from within your Twig template?
Forum: Plugins
In reply to: [Timber] Something wrong in the TimberTerm.get_link() functionHey wolfkang,
Thanks for the heads-up (glad you’ve been using!) I’ll take a look at this first-thing tomorrow and see what’s going on.
Forum: Requests and Feedback
In reply to: Twig for template system?Hey Dryer, check out:
http://wordpress.org/plugins/timber-library/
… does exactly what I think you’re looking for. I think if we get usage on a plugin like this we can get momentum on getting ideas like this into core.
Forum: Everything else WordPress
In reply to: WordPress.org: "1 reply" following submission of pluginSure thing, thanks!
Forum: Everything else WordPress
In reply to: WordPress.org: "1 reply" following submission of pluginno, I just tried checking my spam folder too but didn’t see anything. Is there anyway to view the reply on the web, or should I try re-submitting?
I tried downgrading to Gravity Forms 1.6.12 (which was current as of the last SF add-on release) but still the same issue. Help!
Same issue for me. I’ve verified that I’m using the latest version of both GravityForms and the Salesforce add-on. Should I downgrade Gravity Forms to a prior version that’s verified to work?
I’m guessing that we’re hitting an internal page that’s supposed to return JSON or something, but it’s getting a 404. Any guidance, Zack?
Thanks!