Jason Bahl
Forum Replies Created
-
Forum: Plugins
In reply to: [OMFG Mobile Pro] [Plugin: OMFG Mobile Pro] Nothing happensWhen you say “Only half of it loads” are you talking about the front end or back-end?
Also, have you reviewed the documentation here: https://omfgmobile.com/documentation/
If you’re still having issues, send me login info to [email protected] and I can login and check things out and see if I can diagnose any issues.
Thanks,
Jason
Forum: Plugins
In reply to: [Secure Custom Fields] [Plugin: Advanced Custom Fields] Repeater last itemYou could use the :last-child in your css to style the last item differently. Some older browsers may not support it though.
You would capture the field value as a variable, then use the variable in the Query args.
For example:
$category = get_field('category_field_name');
Then in your args:
<?php $args=array( 'post_type' => 'post', 'category_name' => ''.$category.'', 'posts_per_page' => '2', );
Hope this helps
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Theme IntegrationI also ran into the “No direct script access allowed” issue. . .
Here’s what I had to change:
In the class.admin.php page there are 3 spots where I changed
OT_PLUGIN_DIR.’/front-end
to
TEMPLATEPATH . ‘/option-tree/front-end
Hopefully that helps minimize someone’s troubles.
I think this plugin is AWESOME and having the ability to have it built in to a theme is even more AWESOME!
I’m also having the same problem. I’m using the PRO version of the calendar from CodeCanyon. The regular version seemed to work well with EventBrite, but not the Pro version, which is a disappointment.
Any help would be great.
Thanks!
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Thank You Pagejust tried:
on_sent_ok: “location.replace(‘https://www.yourdomain.com’);”
and it worked fine for me. (obviously the URL switched out. I’m using contact form 7, version 2.1.2 and wordpress version 2.9.1
However, I tried it 2 weeks ago on another form and it did not work. I updated wordpress in the mean time so it could be that?