Dharma
Forum Replies Created
-
Forum: Plugins
In reply to: [Clean Login] Need to prepend function names??
Forum: Hacks
In reply to: Need help with creating verifiable couponsI think I figured out a solution.
I downloaded a simple QR code WP plugin and figured out how to generate a QR code via Google.
So when a coupon is purchased, I can have the site create a unique number in a DB table that also stores the customer’s email address and whether or not the coupon has been used. The QR code will store a URL with the unique number in a $_GET variable.
Then when the coupon is presented, it can be check with a smartphone that goes to the page that tells whether the coupon has already been presented and also updates the entry.
I haven’t tested it, but it sounds plausible. What do y’all think?
Forum: Plugins
In reply to: [Advanced Custom Fields - Location Field add-on] Multiple Locations?I would like multiple locations and a way to combine it with other custom fields that can display when a marker is clicked.
Forum: Fixing WordPress
In reply to: Screen Options not savingI’m also having problems with it. I go the Edit Screen of a Page and the ACF fields have been deselected on the Screen Options. I reselect them. They reappear. I update the page. But when I come back to it 15 minutes later, it’s back to hiding the ACF fields.
Forum: Plugins
In reply to: [Firelight Lightbox] Bones Theme problemI’m also having a problem all of a sudden. Also using the Bones theme.
I got the same error message.
I’m having the same problem, but on Hostgator. Any ideas?
Forum: Fixing WordPress
In reply to: Shortcode executing in Edit Page screen on SaveHi Josh,
Yes, I did. And I just discovered the source of the problem. While I have discovered a workaround, I don’t know exactly what was triggering it.It turns out the problem wasn’t in my shortcode function at all. I had a separate function that was using the ‘save_post’ hook in order to paginate single posts in my custom post type.
The pagination function code can be viewed at https://pastebin.com/sFe6v2RR.
I would love to learn what it is in this code that’s rendering the shortcode. Otherwise, I’m happy with my workaround.
My workaround involved using the $template global variable to determine the template file being used and only to execute the pagination function if the template is for the single custom post type.
Hope this helps someone who runs into a similar situation. Peace out!
Forum: Plugins
In reply to: How to embed a template file in a plugin?Thanks for sharing that! I was just wondering how to do that!
Forum: Plugins
In reply to: [SocialGrid] [Plugin: SocialGrid] WordPress 3.1 Can't Move Nav Menu ItemsI have the same problem.
Forum: Themes and Templates
In reply to: Mystique side bar and page width HELP!Is it possible to have sidebar#1 on the main blog page and have sidebar#2 on other pages?
On the page.php template I replaced
<?php get_sidebar(); ?>
with
<?php include ('sidebar2.php'); ?>
but it’s not displaying anything. The Mystique settings are currently set at 2-column.
Thanks!