cdodge
Forum Replies Created
-
Forum: Plugins
In reply to: [SEO Ultimate] All numbers have been taken out of Title tags? Only 0's remainHello,
I would just like to say thank you so very much with the latest updates – they have fixed my problem wonderfully.
Your support for this plugin is phenomenal and you are very punctual.
Bugfix: Title tag issue with $ sign when followed by a number 0-99 (Pre-parse the title replacement text to escape the $n backreferences because of preg_replace issue
Forum: Plugins
In reply to: [SEO Ultimate] All numbers have been taken out of Title tags? Only 0's remainThat was quick! & I appreciate it 🙂
Wow, thanks a bunch for such a quick response and great suggestions.
Strangely enough, I woke up this morning and everything was working perfectly without a hitch.
I initially had some trouble installing everything, as the plugin was automatically choosing my php.ini file without giving me a choice. I then just ended up deleting that and then it automatically chose my php5.ini which seemed to work, so maybe there was a moment of complication there.
Either way everything looks good, thanks for support!
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] How to get values from checkboxHello everyone,
I have just spent a good 3 hours trying to solve this and I have found a solution that has worked perfectly for myself. I will try to explain as best I can and its not necessarily the best solution, but it works.
You will need to use the following code for each checkbox field you have in order to fully populate all selected checkbox values –
YOUR_FORM_ID = the ID of the Gravity Form You have created
ACF_FIELDNAME = the exact Advanced Custom Fields Field Name of Your Checkbox Field Type.
ACF_FIELD_KEY = The Field Key of your checkbox Field Type in Advanced Custom Fields. (To get the Field Key open up Custom Fields and go to “Screen Options” at the top of the screen and select “Show Field Key = Yes”Paste the following into functions.php
add_action("gform_after_submission_YOUR_FORM_ID", "acf_post_submission", 10, 2); function acf_post_submission ($entry, $form) { $post_id = $entry["post_id"]; $values = get_post_custom_values("ACF_FIELDNAME", $post_id); update_field("ACF_FIELD_KEY", $values, $post_id); }Forum: Fixing WordPress
In reply to: Save Draft not working after update to 3.7Hey Morten,
I found this thread by searching WordPress 3.7 not savings drafts. I had the exact same thing happening where I would safe a draft, get a blank post.php page and having nothing save.
I dunno if this will help you, but I fixed this by disabling my W3 Total Cache plugin.