Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter john470fc

    (@john470fc)

    Okay, so I’ve added #logo a {color: black;} to custom CSS and that worked. Question is, why did this suddenly change in the first place, and should there be an actual option theme somewhere?

    Thread Starter john470fc

    (@john470fc)

    So, there is a README in the plugin directory which has to be the smallest README I have ever seen. Not much insight to your support structure there? Then we have the “Support” link within the WordPress plugin itself. Still no real clarification about your support offerings. So, I can only assume you refer to the “header” post of this “support” forum. This tells me that any support will cost me $50. Is that correct? Is this your usual response to potential clients? From my own experience, we have developer forums where anyone can post anything and bug reports are welcome. Indeed, others on this very forum seem to have more positive responses. “I know it is confusing” is not a good answer, so perhaps it’s time for some clarification?

    I’m looking to implement the same here. So I can use the following hook to populate an array with the data from the form;

    add_action( ‘caldera_forms_submit_complete’, ‘slug_process_form’, 55 );
    function slug_process_form( $form ) {

    //put form field data into an array $data
    $data= array();
    foreach( $form[ ‘fields’ ] as $field_id => $field){
    $data[ $field[‘slug’] ] = Caldera_Forms::get_field_data( $field_id, $form );
    }

    //get embedded post ID.
    $embeded_post_id = absint( $_POST[ ‘_cf_cr_pst’ ] );

    /** DO SOMETHING WITH $data here **/
    }

    Followed by something like;

    wp_set_object_terms( $embeded_post_id, $data[5], ‘taxonomy’ );

    Where ‘taxonomy’ is some defined taxonomy, and $data[5] assumes some sort of field order. And I’m just using ‘caldera_forms_submit_complete’ as the Run Action (no args).

    However, I think I’m missing something here :-/

    Thread Starter john470fc

    (@john470fc)

    Hi Jim, thanks for your quick rely!

    I had seen that constant posted in another forum somewhere, but I did’t quite understand the logic. However, now I’ve read your documentation a couple of times (I must have overlooked that small part), I have what I need working. And without any php in the template (which I know you try to discourage).

    Many thanks!

    Thread Starter john470fc

    (@john470fc)

    Hello Denzel,

    Thanks for that ??

    I did spot the “Typography” section, and I guess changing the vales in there is the same as updating style.css.

    My problem is that which ever header font I use in the editor it looks the same when published.

    I think generally the range is H1=36px, H2=24px, H3=21px, H4=18px, H5=16px, H6=14px, so the theme is slightly different, but that wouldn’t explain why they all look the same when published.

    I have the same problem. The feed items are “retrieved”, but there is no content in the wordpress post, just the “powered by” signature. The RSS feed works fine with other agregators such as “RSS Post Importer”. I have tried enabling the template with the {content} tag added and also disabling the template. Neither way works.

Viewing 6 replies - 1 through 6 (of 6 total)