s-d-c
Forum Replies Created
-
Forum: Plugins
In reply to: [Sell Media] Changing the Front End appearancedreamwed I don’t use a custom CSS plugin. I simply use the built-in “Appearance > Edit CSS” then I put all these modifications in there to get it to look the way I wanted…. I’m not using it at all for selling media, only as an image gallery. So the final result for me required a lot of tweaking…
Hope this helps.
/* hide hover overlay on grid pages */ .sell-media .sell-media-grid:hover .item-overlay { display: none; } .sell-media .sell-media-grid:hover .item-inner img { opacity: 1; } /* hide buy and save button and other stuff on single item page */ .sell-media-single-button { display: none; } .sell-media-lightbox { display: none; } li.filename { display: none; } li.filetype { display: none; } li.collections { display: none; } li.keywords { display: none; } /* hide search form items */ #wpas-tax_keywords { display: none !important; } #wpas-tax_collection { display: none !important; } #wpas-meta_sell_media_price { display: none !important; } /* fix Evolve theme menu going under search form */ #post-2987 > div > div.sell-media-search.cf { z-index: 0 !important; } /*fix image gallery black border*/ #sell-media-archive > div > div > div > a > img { padding: 0; }
Forum: Plugins
In reply to: [Facebook Page Photo Gallery] Version 2.0.7 : Only the firstYes this drives me nuts, I’m deleting this plugin and changing to the other one you mentioned.
Forum: Plugins
In reply to: [Calculated Fields Form] Individual value for choices – hidden valueI’m just getting into this plugin.
I figured out you can nest the javascript ternary operators.Let’s say I am using Flat Rate shipping boxes and all the items for this form are identically sized.
1 item = $6.95 shipping.
2 through 8 items (fits in the next box size) = $17.95 shipping.
9 through 16 items (fits in 2 of those boxes) = $35.90 shipping.fieldname8 is a “shipping” or “store pickup” dropdown.
fieldname9 is a ‘total items being shipped’.This works:
(fieldname8==’Store Pickup’?0:1)*(fieldname9==1?6.95:(fieldname9>8?35.90:(fieldname9>1?17.95:0)))