JanjaWat1
Forum Replies Created
-
It’s the wp members plugin, that allows you to add custom registration fields to the woocommerce registration page. I did what was in this video
(https://www.youtube.com/watch?v=Dn0ZFv4Rugw)
and it worked on my test site but when going live I added the security plugin it stopped adding the shipping address to the fields.It has to do with the security somehow. Probably because it’s trying to prohibit modifying the database?
Forum: Plugins
In reply to: [Contact Form 7] Textfield size and maxlength not workingYeah, same thing here for a while now. I ended up doing it in the css but it would be nice if it was working.
.wpcf7-form textarea {width:200px;}
Awesome, thank you so much. Perfect!!!
Forum: Plugins
In reply to: [Custom Post Type and Taxonomy GUI Manager] Delete Custom TaxonomyIs there any update on this post? I have created a post type by accident and need to remove that one. Can it be removed in the database? If so, where would I look?
Thanks
Forum: Everything else WordPress
In reply to: Membership Area- restrict to 2 computersHi Andrew,
I didn’t purchase a plugin yet.I’m looking for a free or paid membership plugin that does that. Or a way to restrict how many computers can access a membership area.
I’m looking for advice how to go about this or where to find any information. Maybe somebody has worked with something that worked already.
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Cart for responsive themes?Well, yes…. I played and played with media queries and firebug until I had it arranged properly. My problem was to find the exact class for that part. But I would much rather just work with Tribulant then this. Tribulant Shopping Cart Plug-in is pretty good with it out of the box but for a few tweaks.
I did things like this for the mobile view:
.wpsc_category_details img { display:block; margin-top:-20px; }
.wpsc_description {min-width:260px; width:100%; }
div.productcol { margin-top:20px;min-width:260px; width:100%; }
div.productcol .product_form {margin-left:-230px;width:280px;}
div.productcol .wpsc_description p {float:left; margin-left:-230px;width:260px; margin-top:0px; display:block; }Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Cart for responsive themes?https://vistawebdesign.info/test6/products-page/checkout/
this is the url…
Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Display categoriesTry to make your categoy images 550px wide, it will then put it below.
But also there is an option in the settings-store-presentation, that should let you put it in a list.Thanks, Jason. I didn’t even think about giving it the class of custom background. I’ll have to try that.
Since the design I was trying to do is responsive, the background per page is not going to work anyway.
The other plug-in you mentioned sounds great. I will check that out. Thanks ??Forum: Fixing WordPress
In reply to: xml flash photo galleryHey Guys, I’m not sure if you have solved this by now, but here’s how I did it.
Install and activate the Kimili Flash Embed Plug-In, upload your flash into a folder in your root (in my case a folder called flash in the wp-content folder) and insert it like this:[kml_flashembed movie="/wp-content/flash/main.swf" base="/wp-content/flash/" height="600px" width="750px" /]
Hope that works for you too.
JanjaForum: Fixing WordPress
In reply to: How to embed swf file that loads content from xml fileHello Vinicius,
thanks for your explanation for the xml issue. I’m trying the same thing but I’m not sure where to put this code:
xmlobject.load(“https://path/to/the/xml/file.xml”)The fla file I’m using does not seem to have a actions layer.
Do I have to add that to the swf file?
Can I load the flash with this propperty like this?<div id="slide"> <script type="text/javascript"> swfobject.embedSWF('https://vistawebdesign.info/flash/main.swf', xmlobject.load('https://vistawebdesign.info/flash/data.xml'), 'slide', '700', '550', '9.0.0.0', '', { folderPath: 'https://vistawebdesign.info/wp-content/flash/' }, { scale: 'noscale', wmode: 'transparent', allowScriptAccess: 'always', allowFullScreen: true }, { }); </script> </div>
Thanks Janja