doubledcreative
Forum Replies Created
-
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Thermal Printer Not WorkingThe print issue still hasn’t been fixed. I’ve downloaded and installed the ‘latest’ version of Restropress-Auto-Print-Mac.dmg and installed it but it still prints the PDF code.
The desktop all also doesn’t tell you what version it is so there isn’t a way of actually knowing if it’s the latest one.
The time it is taking to get this fixed is not ideal. I have clients waiting to use this.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Thermal Printer Not Working#1749 – I’ve added the above to the support request as well.
This is pretty urgent to get sorted as the client needs to open click and collect services this week. Everything else works fine, it’s just we can’t print receipts which means the whole setup is useless at the minute!
A second for this. It’s a vital feature that is needed.
Forum: Plugins
In reply to: [Vebra Properties] A few problems with the quicksearch and searchI changed the area search from radio to a dropdown via vebra_shortcode.php lines 11 from
function vp_get_areas() { global $wpdb; global $vp_searchvars; $table_name = $wpdb->prefix."vebraproperties"; $sql = "SELECT DISTINCT area FROM $table_name"; if ($result = $wpdb->get_results($sql)) { foreach ($result as $varea) { if ($vp_searchvars['area']==$varea->area) echo "<input type='radio' name='area' value='".$varea->area."' checked='checked'>".$varea->area."<br />"; else echo "<input type='radio' name='area' value='".$varea->area."'>".$varea->area."<br />"; } } }to
function vp_get_areas() { global $wpdb; global $vp_searchvars; echo "<select name='area'>"; echo "<option value=''>Any</option>"; $table_name = $wpdb->prefix."vebraproperties"; $sql = "SELECT DISTINCT area FROM $table_name"; if ($result = $wpdb->get_results($sql)) { foreach ($result as $varea) { if ($vp_searchvars['area']==$varea->area) echo "<option value='".$varea->area."' selected='selected' />".$varea->area."</option>"; else echo "<option value='".$varea->area."' />".$varea->area."</option>"; } } echo "</select>"; }This stopped it auto refreshing the search when selecting a property area.
Latest version works we in FF, Chrome and Safari but not IE.
Forum: Plugins
In reply to: [Plugin: Simple Post Thumbnails] Can’t get it to work, sorry… i’m newbieHere is the code with including linking to the post.
<a href="<?php the_permalink() ?>"><img alt="<?php the_title(); ?>" src="<?php echo p75GetThumbnail($post->ID, null, null); ?>" style="float:left;margin:0 10px 0 0;" border="0" /></a>Forum: Plugins
In reply to: [Plugin: Simple Post Thumbnails] Can’t get it to work, sorry… i’m newbieAnswer here: http://ww.wp.xz.cn/support/topic/303066