superpotion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Some images do not show dimensions in media libraryI opened the images in Photoshop and saved them for web and everything is back to normal.
It appears that WordPress is sometimes unable to determine the image dimensions, and this is causing indeterminate behavior.
It is reasonable to suspect that the problem originated with the image itself. However, Photoshop did not report any image corruption, and in both MacOs and Windows, the size was correctly reported in the Finder and Navigator, respectively.
Forum: Plugins
In reply to: [Jazzy Forms] How to add 3/4 and 2/3 width elementsSorry, this doesn’t work – I’m still missing a bit. I’ll post and update when I have the time to find it.
Forum: Plugins
In reply to: [Jazzy Forms] Dynamic Price Range: how to?Using f_area as the variable, you probably want the cost output calc to look something like this:
if(f_area<=25,495,if(f_area<=50,695,if(f_area<=75,895,if(..and so on ..))))But if you look at it another way, your client is charging a base price of 295 plus 200 per 25 sq.ft. Or even simpler, 295 plus 8 per sq.ft, which makes the cost output calc really simple:
f_area*8+295Forum: Reviews
In reply to: [WP CSV] Works with Sell Media Plugin – A lifesaver!Paul,
I am using the latest version (1.4.4) with WP-3.7.1. There are almost 4000 rows and just 2 columns (id and keywords). However, each row has a list of up to 12 keywords and the total number of keywords is around 10,000. I found that processing around 500 rows at a time worked perfectly.
Denis
Forum: Plugins
In reply to: [Sell Media] Bulk upload of data fieldsI found a plugin that does the job perfectly!
See WP CSV – http://ww.wp.xz.cn/plugins/wp-csv/
Forum: Plugins
In reply to: [Sell Media] Bulk upload – Cannot select more than one licenseErrata: in last post, for “base pricing” read “price group”.
Forum: Plugins
In reply to: [Sell Media] Bug with Item Price Calcs.Sure Zane – http://africanwildlifephotos.co.za
1. Choose any image.
2. Select a size, say L
3. Select a license, say Commercial
4. Price shown will be $20
5. Select Size XL
6. Price shown is $16.48 (should be $40)Forum: Plugins
In reply to: [Sell Media] Bulk upload of data fieldsThanks, I’ll live dangerously and do it with SQL.
Forum: Plugins
In reply to: [Sell Media] Bulk upload – Cannot select more than one licenseActually, I’ve learned how to do this. After uploading the media and clicking “Sell all selected images” you are returned to the bulk upload screen. Once the small thumbs are displayed, choose the base pricing, license type and category and click “Save”. Then, if you would like to apply another license type, simply select it and click the save button (which now reads Saved!) once more.
Some inline instructions or a more intuitive interface would be great for new users.
Forum: Plugins
In reply to: [Sell Media] Lightbox shows incorrect item countApologies Zane, I posted on Github too.
Forum: Plugins
In reply to: [Image Widget] Custom CSS Code/ClassWas looking for this too. Found these plugins (among many) that will do the trick:
Forum: Fixing WordPress
In reply to: Footer wrapping to two linesThere is probably something in the code for the footer sidebar that counts the widgets and forces a new row by inserting the clear class after counting 3.
Forum: Fixing WordPress
In reply to: Macbook air and visual editorAre you running the latest versions of Safari and Chrome? There were issues with TinyMCE (the visual editor that wordpress uses) on macbook air about a year ago, and browser updates generally solved the problem.
Forum: Fixing WordPress
In reply to: How to integrate/install phpbb3 forum to wordpress?You are probably looking for a bridge. There are a few plugins that do this, search the plugin repository with “phpbb bridge”.
Forum: Fixing WordPress
In reply to: 404 Errors and Better WP Security404 errors are generated when the server cannot find the requested page. Also called dead links or page-not-found errors. You need to find where the dead links are coming from. Either internally – you have links or menu items that link to deleted pages, or you’ve changed your site and other sites like search engines are referring to non existant pages. In the former case, find the dead links on your site and fix them. In the latter case, implement a 404 redirector. Either edit the .htaccess file directly, or use a plugin to do it for you: search plugins for ” 404 redirect”.
To find internal dead links I would usually search directly in the database using phpMyAdmin. But if you’re not comfortable with that, try the Velvet Blues plugin.