DavidSadler
Forum Replies Created
-
Will –
Here’s the web site page – http://dribanklabs.com/?page_id=17643
If you have problems accessing the web site, send me an email at david(at)sadlerfamily(dot)org. The site has restricted access at this point.
Use WP 4.0 and Bridge Theme. I’m using an iMac at 10.8.5, Safari Version 6.2 (8537.85.10.17.1) and Chrome 38.0.2125.111
Another odd thing I noticed is that the prices shown are truncated in all cases having eliminated the left two numbers so 499.95 comes out 9.95 and 9.95 comes out .95 and so on.
And I believe I have auto p turned off. And all editing is done in “Text” mode.
Thank you very much for the help. I really appreciate it
Forum: Plugins
In reply to: [Clone] clone failureI’m getting 500 server errors or some other error whenever trying WP Clone backups. This is on a GoDaddy hosting plan if that makes a difference along with Bridge/Qoda theme and WP 4.0. I’ve tried several times yesterday and today. Any help out there?
Forum: Plugins
In reply to: [Videopack] How to QuestionKyle – The gallery settings worked. Just what I was looking for. One artifact that I haven’t been able to figure out is that the thumbnail has a bar running across the bottom that I need to get rid of. I looked at it with the developer’s inspector under Safari and it seems tied in with this block of code –
<div class=”kgvid_video_gallery_thumb” id=”kgvid_video_gallery_thumb_2690″ data-id=”2690″ data-width=”480″ data-height=”360″ data-meta=”0″ data-gallery_end=”close” style=”width:200px”><img src=”http://inbiomedtech.com/wp-content/uploads/2014/10/DB_Commerical_020814_thumb14-300×225.jpg” alt=””><div class=”kg-video-js-skin”><div class=”mejs-overlay-button” style=”-webkit-transform: scale(0.5) translateY(-5px); -o-transform: scale(0.5) translateY(-5px); -ms-transform: scale(0.5) translateY(-5px); transform: scale(0.5) translateY(-5px);”><span></span></div></div><div class=”titlebackground”><div class=”videotitle”></div></div></div>
And these classes – kgvid_video_gallery_thumb & kgvid_video_gallery_thumb_2690. The bar changes color when hover is active. Is there some way to get rid of the bar?
Thanks for the help. I appreciate it.
Forum: Plugins
In reply to: [Clone] Can't create Backup: Internal Server errorI have the same problem. I am a WP newbie. I downloaded and install WP Clone and activated it. It then prompted me to create backup. I complied and started that process. The result was a 500 Internal server error. I am using WP 4.0 Enfold 2.4.2 hosted with GoDaddy. Can anyone help?
I need a way to run a test/development site next to the live site.
Thanks
David S.
Forum: Plugins
In reply to: [Google Doc Embedder] gview called using do_shortcodeThanks again Kevin for helping. These versions yielded no errors and a blank page –
echo do_shortcode(‘[gview(file=”‘. $_REQUEST[‘f’] .'”)]’); (quotes around the variable)
echo do_shortcode(‘[gview(file=”‘. urldecode($_REQUEST[‘f’]) .'”)]’);Then I tried – echo ‘[[gview file=”‘. urldecode($_REQUEST[‘f’]) .'”]]’); and it yielded the correct code. Then I went back to the origial – echo do_shortcode(‘[gview(file=”‘. urldecode($_REQUEST[‘f’]) .'”)]’); which yielded a no errors and a blank screen. Then I used the browser de-bugger to inspect the code sent to the page and bingo. The code is encapsulated with <p>…</p>.
I said I’m a newbie when it comes to WP. What would be the correct way to disable the the auto encoding?
Forum: Plugins
In reply to: [Google Doc Embedder] gview called using do_shortcodeThanks Kevin for responding. I’m afraid I didn’t do a good job asking my question.
If I need to bring up gview in a new page for each different document I want to show, how is the best way to do that? I was thinking of having a “Doc View” page that is called with a file name. Then in the Doc View page would the correct code be this –
[insert_php]
echo do_shortcode(‘[gview(file=’. $_REQUEST[‘f’] .’)]’);
[/insert_php]Or, is there a way to call gview in-line using a short code where it launches in a new window – [gview(file=2014/09/Sustainability-Flyer-Draft.docx)], target=”viewer”)] ?
Thanks again