BAC
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] Form Submissions Quit TrackingThank you so much Ron! Astounding level of support.
- This reply was modified 7 years, 8 months ago by BAC.
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] Form Submissions Quit TrackingHave tried again, sorry about that.
Also sent you a hangout contact request.
Cheers!
BenForum: Plugins
In reply to: [Event Tracking for Gravity Forms] Form Submissions Quit TrackingJust sent, thanks.
Forum: Plugins
In reply to: [Event Tracking for Gravity Forms] Form Submissions Quit TrackingI’m seeing the same issue here. Using cloudflare to add analytics. Have tried both Tag Manager and GA settings: energi.uk.com.
Any ideas?
Cheers,
BenForum: Plugins
In reply to: [WP Broadbean] XML Feed Parsing ErrorsUpdate:
I managed to solve this issue. We are using a feed designed for a different plugin and the XML is receivedURLENCODEDwith a peskyXML=preceding the XML content, whichsimplexml_load_string()choked on.The simple fix was to
urldecodethe XML string, thenitrimout"xml=".Working (simplified) code:
$wpbb_xml_content = trim(file_get_contents( 'php://input' )); $wpbb_xml_content = urldecode($wpbb_xml_content); $wpbb_xml_content = ltrim($wpbb_xml_content, "xml=");I also added
LIBXML_NOCDATAto thesimplexml_load_string()param.$wpbb_params = json_decode( json_encode( simplexml_load_string( $wpbb_xml_content,'SimpleXMLElement', LIBXML_NOCDATA ) ), 1 );Cheers,
BenForum: Plugins
In reply to: [Relevanssi - A Better Search] Not working in WP 3.7yeah, 3.7 broke the plugin.
@thomashardy, that’s incredibly diligent and helpful of you to post back with that update. Thank you.
+1.I would have a look at using LocalStorage rather than cookies, might be easier. All major browsers support LocalStorage.
simple example here, which autosaves the data as the user types: http://www.thomashardy.me.uk/using-html5-localstorage-on-a-form
Maybe look wrapping the keyUp in timeout function to add a small delay before each update.
Test LocalStorage in chrome or safari’s resources inspector.
Hope this helps.Just to add to this, there are 2 side effects for me I need to resolve.
A) I have no way of targeting child taxonomy archives. If I land on a parent and click a child term link, WP still thinks I am on a parent term archive. I need to style child tax archives.
B) Google will only see users refreshing the same canonical URL even though the user is visiting multiple pages (tax archives). I’m fairly sure this is not an optimal signal.
This is a real headache for me. If anyone has any ideas, would really appreciate some help on this!
Thanks
BenForum: Plugins
In reply to: [Query Multiple Taxonomies] Query Multiple Taxonomiespotential answer your questions about indenting child tex terms, try adding to your Register Custom Taxonomy function the following (untested)
'hierarchical' => true, 'rewrite' => array( 'hierarchical' => true )bac
If you have “Redirect ugly URL’s to clean permalinks. (Not recommended in many cases!)” in the Permalink section selected, try deselecting it.
just to add, this is a custom post type archive.
as is: http://gmhplanning.co.uk/publication/
However search results archive is working as expected. http://gmhplanning.co.uk/?s=nec+training&submit=
Sorry to drag up an old post but its the same issue. Plugin loading page content.
Infinite Scroll Version 2.0b2.110713
Forum: Plugins
In reply to: [WPlupload] [Plugin: WPlupload] Plupload on the front endSorry for the delay.
> What other usage cases can you think of, where WPlupload on front-end might be useful?
There would be quite a number of uses for upload on the front end and compatibility with a form plugin (ie CF7).
1. CV/Resume) upload for job posts.
2. Scanned files for proof of identity (needed before getting a job in the UK).
3. Upload images/photos
4. Signed / scanned documentsCheers
BACForum: Plugins
In reply to: Upgrading to W3 Total Cache 0.9.2.4 breaks website.try setting page cache to basic and delete the .htaccess rules created by w3 total cache and let it re-install them. worked for me.