Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Jef Jones

    (@jefjones)

    Hey laidback53, I also requested a refund due to lack of response but… no response.

    Hi there, thank you for a great plugin! I’m in desperate need of the “currency selection per form” functionality as well. Is there any chance of an eta perhaps?

    Hi,

    Here’s a link to CF7’s support: http://contactform7.com/save-submitted-messages-with-flamingo/

    Open the Additional Settings tab in the contact form editor page, and add lines like these:

    flamingo_email: “[the-email-field]”
    flamingo_name: “[the-name-field]”
    flamingo_subject: “[the-subject-field]”

    Hi,

    I’d love this too. In the meantime, I used a workaround:

    • Create an empty Whistle called ‘Initial’ (or whatever you want)
    • Give it a slug starting with ‘1’ so that it appears at the top of each Whistle Group
    • Assign it to each Whistle Group that you require the default closed state.
    • Add the following CSS to hide the initial open Whistle in each Whistle Group:
    • .whistles-accordion .whistle-title:first-of-type,
      .whistles-accordion .whistle-content:first-of-type
      {
      	border:none;
      	display:none;
      	margin:0;
      	padding:0;
      }

      Cheers,
      Jef.

    Thread Starter Jef Jones

    (@jefjones)

    No sweat. Thanks for the quick response!

    No problem – I had done the same thing as Apg002. Glad I could help.

    Hi. Check this plugin out. Might do the trick: “Easily create fluid, responsive column layouts”.

    http://graphpaperpress.com/plugins/gpp-shortcodes/

    Hi,

    Click on the setting tab for event section and at the top right hand of the page click on “screen options” and choose 2 column.

    Hi noyz319,

    I had the same problem. Fixed it by modifying a patch for the fGallery plugin that also wouldn’t write SQL tables. Copy the code below and paste into a text file. Import the script into your database using phpmyadmin. Good luck.

    DROP TABLE IF EXISTS wp_comms;
    CREATE TABLE IF NOT EXISTS wp_comms (
    id bigint(20) unsigned NOT NULL auto_increment,
    email varchar(255) NOT NULL default ”,
    mobile varchar(64) NOT NULL default ”,
    name varchar(255) NOT NULL default ”,
    title varchar(255) NOT NULL default ”,
    organisation TEXT NOT NULL default ”,
    subscribed char(1) NOT NULL default ”,
    e-commerce char(1) NOT NULL default ”,
    wp-user char(1) NOT NULL default ”,
    time datetime NOT NULL default ‘0000-00-00 00:00:00’,
    PRIMARY KEY (id),
    KEY subscribed (subscribed)
    ) TYPE=MyISAM AUTO_INCREMENT=1 ;”;

    DROP TABLE IF EXISTS wp_comms_groups;
    CREATE TABLE IF NOT EXISTS wp_comms_groups (
    id bigint(20) unsigned NOT NULL auto_increment,
    email varchar(255) NOT NULL default ”,
    mobile varchar(64) NOT NULL default ”,
    name varchar(255) NOT NULL default ”,
    title varchar(255) NOT NULL default ”,
    organisation TEXT NOT NULL default ”,
    subscribed char(1) NOT NULL default ”,
    e-commerce char(1) NOT NULL default ”,
    wp-user char(1) NOT NULL default ”,
    time datetime NOT NULL default ‘0000-00-00 00:00:00’,
    PRIMARY KEY (id),
    KEY subscribed (subscribed)
    ) TYPE=MyISAM AUTO_INCREMENT=1 ;

    DROP TABLE IF EXISTS wp_comms_email_log;
    CREATE TABLE IF NOT EXISTS wp_comms_email_log (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    email VARCHAR( 192 ) NOT NULL ,
    commsid BIGINT UNSIGNED NOT NULL ,
    messageid BIGINT UNSIGNED NOT NULL ,
    bounced VARCHAR( 1 ) NOT NULL ,
    errorcode VARCHAR( 64 ) NOT NULL ,
    datetime DATETIME NOT NULL ,
    INDEX ( commsid , messageid )
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_comms_message_log;
    CREATE TABLE IF NOT EXISTS wp_comms_message_log (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    subject TEXT NOT NULL ,
    message LONGTEXT NOT NULL ,
    type VARCHAR( 1 ) NOT NULL DEFAULT ‘0’,
    datetime DATETIME NOT NULL
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_sms_log;
    CREATE TABLE IF NOT EXISTS wp_sms_log (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT ,
    message TEXT NOT NULL ,
    mobnum TEXT NOT NULL ,
    time VARCHAR( 60 ) NOT NULL ,
    PRIMARY KEY ( id )
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_comms_project;
    CREATE TABLE IF NOT EXISTS wp_comms_project (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    name VARCHAR( 255 ) NOT NULL ,
    project_owner TEXT NOT NULL,
    project_developer TEXT NOT NULL,
    project_client TEXT NOT NULL,
    project_notes TEXT NOT NULL,
    userid BIGINT UNSIGNED NOT NULL ,
    completed VARCHAR( 1 ) NOT NULL DEFAULT ‘0’,
    time DATETIME NOT NULL ,
    INDEX ( name , userid)
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_comms_project_status;
    CREATE TABLE IF NOT EXISTS wp_comms_project_status (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    status VARCHAR( 1 ) NOT NULL ,
    notes LONGTEXT NOT NULL,
    stage int(10) unsigned NOT NULL,
    projid BIGINT NOT NULL ,
    INDEX ( projid )
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_comms_groups;
    CREATE TABLE IF NOT EXISTS wp_comms_groups (
    id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
    name VARCHAR( 255 ) NOT NULL ,
    active VARCHAR( 1 ) NOT NULL
    ) TYPE = MYISAM ;

    DROP TABLE IF EXISTS wp_comms_user_groups;
    CREATE TABLE IF NOT EXISTS wp_comms_user_groups (
    id bigint(20) unsigned NOT NULL auto_increment,
    userid bigint(20) unsigned NOT NULL default ‘0’,
    groupid bigint(20) unsigned NOT NULL default ‘0’,
    PRIMARY KEY (id),
    INDEX ( userid ),
    INDEX ( groupid )
    ) TYPE = MYISAM ;

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