Jef Jones
Forum Replies Created
-
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?
Forum: Plugins
In reply to: [Contact Form 7] Flamingo – what fields can flamingo catch?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]”Forum: Plugins
In reply to: [Whistles] Can you close all accordions on initial page visit?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.Forum: Plugins
In reply to: [Widget Content Blocks] ShortcodesNo sweat. Thanks for the quick response!
Forum: Plugins
In reply to: I need a Lightbox that works with twenty twelve themeNo 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”.
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.
Forum: Plugins
In reply to: WP Campaign Monitor – does it work with version 2.1 plus?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 EXISTSwp_comms(
idbigint(20) unsigned NOT NULL auto_increment,
emailvarchar(255) NOT NULL default ”,
mobilevarchar(64) NOT NULL default ”,
namevarchar(255) NOT NULL default ”,
titlevarchar(255) NOT NULL default ”,
organisationTEXT NOT NULL default ”,
subscribedchar(1) NOT NULL default ”,
e-commercechar(1) NOT NULL default ”,
wp-userchar(1) NOT NULL default ”,
timedatetime NOT NULL default ‘0000-00-00 00:00:00’,
PRIMARY KEY (id),
KEYsubscribed(subscribed)
) TYPE=MyISAM AUTO_INCREMENT=1 ;”;DROP TABLE IF EXISTS
wp_comms_groups;
CREATE TABLE IF NOT EXISTSwp_comms_groups(
idbigint(20) unsigned NOT NULL auto_increment,
emailvarchar(255) NOT NULL default ”,
mobilevarchar(64) NOT NULL default ”,
namevarchar(255) NOT NULL default ”,
titlevarchar(255) NOT NULL default ”,
organisationTEXT NOT NULL default ”,
subscribedchar(1) NOT NULL default ”,
e-commercechar(1) NOT NULL default ”,
wp-userchar(1) NOT NULL default ”,
timedatetime NOT NULL default ‘0000-00-00 00:00:00’,
PRIMARY KEY (id),
KEYsubscribed(subscribed)
) TYPE=MyISAM AUTO_INCREMENT=1 ;DROP TABLE IF EXISTS
wp_comms_email_log;
CREATE TABLE IF NOT EXISTSwp_comms_email_log(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
emailVARCHAR( 192 ) NOT NULL ,
commsidBIGINT UNSIGNED NOT NULL ,
messageidBIGINT UNSIGNED NOT NULL ,
bouncedVARCHAR( 1 ) NOT NULL ,
errorcodeVARCHAR( 64 ) NOT NULL ,
datetimeDATETIME NOT NULL ,
INDEX (commsid,messageid)
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_comms_message_log;
CREATE TABLE IF NOT EXISTSwp_comms_message_log(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
subjectTEXT NOT NULL ,
messageLONGTEXT NOT NULL ,
typeVARCHAR( 1 ) NOT NULL DEFAULT ‘0’,
datetimeDATETIME NOT NULL
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_sms_log;
CREATE TABLE IF NOT EXISTSwp_sms_log(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT ,
messageTEXT NOT NULL ,
mobnumTEXT NOT NULL ,
timeVARCHAR( 60 ) NOT NULL ,
PRIMARY KEY (id)
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_comms_project;
CREATE TABLE IF NOT EXISTSwp_comms_project(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
nameVARCHAR( 255 ) NOT NULL ,
project_ownerTEXT NOT NULL,
project_developerTEXT NOT NULL,
project_clientTEXT NOT NULL,
project_notesTEXT NOT NULL,
useridBIGINT UNSIGNED NOT NULL ,
completedVARCHAR( 1 ) NOT NULL DEFAULT ‘0’,
timeDATETIME NOT NULL ,
INDEX (name,userid)
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_comms_project_status;
CREATE TABLE IF NOT EXISTSwp_comms_project_status(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
statusVARCHAR( 1 ) NOT NULL ,
notesLONGTEXT NOT NULL,
stageint(10) unsigned NOT NULL,
projidBIGINT NOT NULL ,
INDEX (projid)
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_comms_groups;
CREATE TABLE IF NOT EXISTSwp_comms_groups(
idBIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
nameVARCHAR( 255 ) NOT NULL ,
activeVARCHAR( 1 ) NOT NULL
) TYPE = MYISAM ;DROP TABLE IF EXISTS
wp_comms_user_groups;
CREATE TABLE IF NOT EXISTSwp_comms_user_groups(
idbigint(20) unsigned NOT NULL auto_increment,
useridbigint(20) unsigned NOT NULL default ‘0’,
groupidbigint(20) unsigned NOT NULL default ‘0’,
PRIMARY KEY (id),
INDEX (userid),
INDEX (groupid)
) TYPE = MYISAM ;