DesignLoud
Forum Replies Created
-
Forum: Plugins
In reply to: Woocommerce – Products per rowAnyone able to chime in on this? This is what I thought would work, maybe someone see’s something I am missing…
add_filter('loop_shop_columns', 'loop_columns'); if (!function_exists('loop_columns')) { function loop_columns() { if (is_product_category('verticals')) { return 4; } else { return 3; } } }
Forum: Plugins
In reply to: WooCommerce – Converting Dropdowns to Radio on Single ProductI Got it!!!
I made a post about it here on my blog.. Good luck!
https://designloud.com/tutorials/how-to-add-radio-buttons-to-woocommerce-variations/
Forum: Plugins
In reply to: WooCommerce – Converting Dropdowns to Radio on Single ProductThanks Jan, That is the first I have heard of pastebin but will definitely do that for future posts. I don’t think I am able to edit that earlier post to clean it up and link it so I will remember that next time. Thanks
Forum: Plugins
In reply to: [Woocommerce] Change Order of Catalog page to Ascendingahh yes, you have your order set to decending, mine is set to ascending
Note this line in your code:
$args['order'] = 'desc';
Forum: Plugins
In reply to: [Woocommerce] Change Order of Catalog page to AscendingNevermind, think I nailed it here:
// Change the Default sorting in catalog add_filter('woocommerce_get_catalog_ordering_args', 'am_woocommerce_catalog_orderby'); function am_woocommerce_catalog_orderby( $args ) { $args['date'] = 'meta_value_num'; $args['orderby'] = 'ASC'; return $args; }
Notice the 2nd arg is now ‘orderby’
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopAnother work around could be to use photobucket or something similar to add their own effects, then they could link you to the image and you could proof them on the frame. Photobucket may even have an affiliate program you could benefit from..
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopI would if it were my site, but no, my client didnt want that option.. You could prob accomplish that with some jquery and some effects on a png image. Or check code canyon to see if they have a script you could work with. The company sends proofs to the customers according to what options they select or what comments they leave, you may just want to do that.
Either way good luck! Sounds like a good idea!
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopOr you could use the hooks/filters from WPEcommerce and just hook it in your themes functions file, that would also keep you from losing your work in future plugin updates
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopReally it is just WP-Ecommerce, and I had to modify the plugins checkout page page to include a basic upload form.. As for the IOS workaround, You should not need to worry about that for much longer because they are releasing an updated that will have the ‘broken’ browse button functioning. So if they haven’t already released it then I know they plan to this fall. But the upload feature is pretty much your basic html upload form and then include it in the email.
**If you want to keep it really simple you can just do a redirect to yousendit after the checkout has been completed, then redirect to your thank you page once yousendit has been completed, even add it as an iframe within your site so you can still have your branding but this will keep you from having to edit any of the plugin files and risk losing your work on future updates
Forum: Fixing WordPress
In reply to: WordPress Website has been hacked?Wow, I have been at this all day and it has turned up alot of crazy stuff. So what I have is the ‘Pharma Hack’ but so far from what I’ve noticed is that it is only in the theme files, I have checked the core files and plugins and also the databases and I cant find anything else, but I just fetched as Google bot in webmaster tools and I see what Google fetched and it is still there.. Any more suggestions?
Forum: Fixing WordPress
In reply to: WordPress Website has been hacked?Thanks Michael, I just checked and your right, I see the timthumb script in the theme files. I guess at this point I need to remove that and remove the calls to that script or if I get stuck I will get in touch with woo themes. Thanks for your help!
Forum: Fixing WordPress
In reply to: Looking for suggestions on how to approach this..Wow Thanks Paul, just had the chance to fully check out Gravity Forms and it does exactly what I need it too right out of the box! Thanks again for the recommendation!
Forum: Fixing WordPress
In reply to: Looking for suggestions on how to approach this..Hey Paul, Thanks alot for the input, I have actually used Gravity Forms in the past on a friends site. I know I can create forms and have the form emailed to me but as far as approving and then having it post automatically to a section is where I am getting stuck. Do you think I can accomplish this with Gravity Forms and if so then how? Any help would be much appreciated and I feel like we are on the right track here.
Thanks again for any help
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopPrint shop that puts your photos on canvas, its an ecommerce site that will be linked with the app when that becomes available but they want this workable in the meantime. So ideally someone goes to their site, selects the canvas size, then uploads their image and proceed with checkout. Everything works except the upload form specifically on ios.
Forum: Fixing WordPress
In reply to: Suggestions on Ecommerce Plugin for Print ShopThanks for your reply, and most importantly your suggestion! Unfortunately this is not something my client is willing to negotiate on since the site is built and store is setup, everything is perfect for everything other than IOS platforms which from what I have been reading do not support the html form upload so I am looking for some sort of work around or suggestions on this