jamesfroud
Forum Replies Created
-
Forum: Plugins
In reply to: [db-form] Still under develop?I’ve created a new topic with documentation that might help you and others 🙂
Forum: Plugins
In reply to: [db-form] 404I’ve created a new topic with documentation that might help you and others 🙂
Forum: Plugins
In reply to: [db-form] 404Hi Plotz,
Available shortcodes are shown below:
input
mail
hidden
textarea
radio
select
checkbox
submitThe above need to be used inside the [db-form] shortcode.
I’ve just downloaded the plugin and making notes on how to use it (plus some gotcha’s additional steps needed), as I’m going to use it in a project (seems ideal for me too – but needs a few extra bits added), so if you need a hand or get stuck let me know 🙂
Forum: Plugins
In reply to: [db-form] Still under develop?Hi korsakow,
Available shortcodes are shown below:
input
mail
hidden
textarea
radio
select
checkbox
submitI’ve just downloaded the plugin and making notes on how to use it (plus some gotcha’s additional steps needed), as I’m going to use it in a project, so if you need a hand or get stuck let me know 🙂
Forum: Themes and Templates
In reply to: [i-transform] Utility Barif you use the editor under Themes and open..
custom_functions.php
go to line 9
it should read
$services = array ('facebook','twitter','pinterest','flickr','feed','instagram','googleplus');you can add “,’cart'” to the end of it (cart is the closed genericon I could find…but looks ok)
so it’ll become…
$services = array ('facebook','twitter','pinterest','flickr','feed','instagram','googleplus','cart');Save that file…
now open …
options.php
go to line 276 this should be just below
$options[] = array( 'name' => __('Google plus', 'itransform'), 'desc' => __('', 'itransform'), 'id' => 'itrans_social_googleplus', 'std' => '', 'type' => 'text');add this:
$options[] = array( 'name' => __('Amazon Store', 'itransform'), 'desc' => __('', 'itransform'), 'id' => 'itrans_social_cart', 'std' => '', 'type' => 'text');save this file.
Now if you go to Theme -> Theme Options and click on Social Links you should see Amazon Store and be able to add a link there.
Forum: Themes and Templates
In reply to: [i-transform] Incorrect Stylesheet loaded at 1024×768 resolutionsome more information if it helps..
if you add
console.log("width: " + $(window).width() + " height: " + $(window).height()); alert("width: " + $(window).width() + " height: " + $(window).height());at line 57 of js/functions.js just after
/* scripts to run on document ready */ jQuery(document).ready(function($) {you can see the width and height
I get width: 1009 height: 645 in Firefox and Chrome.
Also tested it on iPad mini..
Portrait –
width: 768 height: 927
Landscape –
width: 768 height: 519 (which seems to be a bit off to me..sure width should be 927?)
If in styles.css you change
@media (max-width: 1069px) {to
@media (max-width: 1009px) {It fixes it for 1024×768 resolution on PC, I’ve not tried it on a higher one yet, but I can do when in a few hours (not at a better spec machine!)