johnaq
Forum Replies Created
-
Should this have been fixed by now? I have a problem to do with escaped html. Not sure if it’s due to this (if not, happy to start a new topic). After quite a bit of troubleshooting (down to a minimal install) I’ve identified that the issue was introduced in SiteOrigin 2.29.16
I’m using Reuseable Content Blocks to allow me to create SO layouts that I can deploy with a shortcode and it previously worked fine. Now certain text blocks are rendering as escaped html – so I see unrendered <p> <b> tags in my content onscreen.
Even on the same page, some widgets (e.g. Siteorigin Editor and Arbitrary Text) render formatted text as expected, but others (Accordion, Custom HTML, Enhanced Text) show html-tags/escaped-html. SO versions prior to 2.29.16 render fine. I don’t even need to re-save the page when I rollback versions
- This reply was modified 3 months, 1 week ago by johnaq.
Thanks, update is working:)
A strong suspect seems to be the ‘WordPress Media Library Folders’ plugin. Are you using that @ewebjojo? It apparently registers a post type:
ID: mgmlp_media_folder
Name: PagesI’ve deactivated and tried to clean up traces of both WPMLF and WPJM plugins, but even though only one ‘Pages’ post type now appears in WPJM settings, the issue remains.
Forum: Plugins
In reply to: [Simple Lightbox] How to troubleshoot server issue?The faulty links all have the following attributes: data-slb-active data-slb-asset data-slb-internal.
I did attempt to find any jquery, theme and plugin conflicts as per the instructions, but found nothing irregular – and they are all the same as the site that is working.
I hope that helps narrow it down a little more
Thanks for your help
I didn’t have any success exporting and importing, but having inspected the database, the serialized team member data is not being correctly handled by the migration plugin, so I have posted the issue on that forum.
Thanks
Forum: Plugins
In reply to: [Contact Form DB] Submissions are being saved but not displayingI had single curly quotes in my field name…
Building more ‘native’ online content…
Forum: Plugins
In reply to: [Contact Form DB] Submissions are being saved but not displayingAfter a long process of elimination it seems that the culprit is curly quotes in the field_name column. Yes, I did copy my text from MS Word.
It didn’t appear at first because it was on a un-required question.
Also, FWIW it’s a bit fiddly to use PHPMyAdmin to edit the database because cf7dbplugin_submits doesn’t have a unique column.
I can work around, but hopefully it’s a simple fix for the future.
Thanks for a great plugin and excellent support
Forum: Plugins
In reply to: [Contact Form DB] Submissions are being saved but not displayingIt give me the all the expected results I am not seeing in WP admin. No error!
Forum: Plugins
In reply to: [Contact Form DB] Submissions are being saved but not displayingThe name is “Hong Kong Roundtable Survey” it is the longest form name in the list. It is also the only multi-page form I’ve created, FWIW.
I’m using Caldera 2.0.4.1 forms by the way. I’ve changed the name to ‘hk’ and submitted a new entry – still nothing
Thanks
that’s the one, thanks
Forum: Plugins
In reply to: [MiwoFTP - File & Folder Manager] Blank white pageI am seeing the same thing…
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Automatically create related itemsHi Jim
No need to apologise, thanks for time and help!
You’re right, I’m no PHP expert, so was keen to explore all options through Pods itself.
My first impression was that I could achieve what I was after (automatically creating a related registration from an event page) by being able to set the default value of the related registration field and hiding it from the UI using Pods Admin. I’m still not sure why this doesn’t work, and what ‘set via parameter’ does.
Anyway, I have managed to achieve what I wanted in a Pods template using Pods::form() as follows…
$regPod = pods( 'registration' ); $thisEventID = $obj->id(); $formFields=array('email', 'event' => array( 'default' => $thisEventID, 'type' => 'hidden' )); echo $regPod->form($formFields);
I hope that all makes sense
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Automatically create related itemsIs there now way to achieve this using ‘Set Default Value’. It seems like a lot of trial and error to figure out what works.
Where can one learn about ‘via Paramater’
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Automatically create related itemsI’m slowly pulling together an understanding of what magic tags work (and – just as importantly – where) really wish I could find a definitive list/reference.
So it seems like if I could set the default value of my the ‘event’ field in the relationships pod to {@ID} then I’d be good to go but this doesn’t seem to work from within the shortcode Registration form on an Event page.
BTW, I really have no idea what Set Default Value by Parameter does
I hope that all makes sense
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Automatically create related itemsThanks for the reply Jim.
I’m using a shortcode to create the form. It’s a very bare bones set up at the moment.
I guess my question is how do “create a ‘hidden’ field in the form that is set to the related event”? Is that by setting a default value? What would the magic code be for that?