igadgets
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Attributes and Variations doesn't display in the backendSame issue with Attributes and Variations
just2zang contact me i can help you, quinielasmty @ gmail.com
hojackyho can you share your warehouse plugin to see if they can make it work
Forum: Plugins
In reply to: [WooCommerce MercadoLivre] En Méxicoigual me gustaria usarlo para mexico como se puede hacer?
Forum: Plugins
In reply to: [YITH WooCommerce Uploads] The format of the file is not valid – but why?Yo upload PDF change on folder Lib/class.yith-woocommerce-additional-uploads
Line 535 <input type=”file” name=”uploadFile[]” id=”uploadFile” accept=”image/*”/>
change it to this<input type=”file” name=”uploadFile[]” id=”uploadFile” accept=”application/pdf”/>
perfect it works
I got this resposne from my server support
the PUT request is not enabled on the server. According to my Tier II support restful HTTP methods isn’t something that’s activated or anything, it’s just how something calls to the server. But the issue may be that PUT is not enabled. As this account is on a shared server, this cannot be enabled.
is there another option to change settings manually ?
Forum: Plugins
In reply to: [Football Pool] TableHi AntoneH, i almost finish creating the sql query but the problem i have is that i list matches in the same row:
I need this:
/////////////////Game One////////////////////Game Two
Name///Home////Visitor////Score////Home////Visitor///Score
a //////////2 //////////0 //////////10 //////////0 //////////1 //////////0
b //////////0 //////////1 ///////////0 ///////////0 //////////1 //////////0
c //////////1 //////////0 //////////15 //////////0 //////////1 //////////0and what im getting with sql is like this
Nam////Home////Visitor/////Score
a //////////2 //////////0 //////////10
b //////////0 //////////1 //////////0
c //////////1 //////////0 //////////15
a //////////1 //////////0 //////////0
b //////////1 //////////0 //////////0
c //////////1 //////////0 //////////0this is the sql query
SELECT wus.display_name as Name , pre.home_score as Home1 , pre.away_score as Away1 FROM pool_wp_league_users lus Left JOIN wp_users wus
ON lus.user_id=wus.id Left JOIN pool_wp_predictions pre ON lus.user_id= pre.user_id Left JOIN pool_wp_matches mat ON pre.match_id= mat.id where pre.match_id=163
union all
SELECT wus.display_name as Name2 , pre.home_score as Home2 , pre.away_score as Away2 FROM pool_wp_league_users lus Left JOIN wp_users wus
ON lus.user_id=wus.id Left JOIN pool_wp_predictions pre ON lus.user_id= pre.user_id Left JOIN pool_wp_matches mat ON pre.match_id= mat.id where pre.match_id=164