cin5050
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] cannot download woocom from wordpressI was able to download the plugin on my other computer
when I tossed the plugin into the pulgins folder I received this message from winscp(my ftp client).E:\woocommerce\assets\js\admin\product-ordering.js
cannot open file
System Error. Code: 225.
Operation did not complete successfully because the file contains a virus or potentially unwanted softwareForum: Plugins
In reply to: [WooCommerce] cannot download woocom from wordpresshttps://downloads.www.ads-software.com/plugin/woocommerce.latest-stable.zip
not working as wellForum: Plugins
In reply to: [WPF-jqGrid] custom fields formatting options?https://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules
https://www.trirand.com/jqgridwiki/doku.php?id=wiki:predefined_formatter
these 2 pages should tell you all of the options available for jqgrid’s input types and format options
here are some examples pay attention to the separators. Remove any you don’t need.
db_name::field_name::options:{},rules:{},formats:{}|leave the pipe separator off the last line to parse.
my_awesome_database::months::edittype:'select', editoptions:{value:{'Select':'Select','January':'January','February':'February','March':'March','April':'April','May':'May','June':'June','July':'July','August':'August','September':'September','October':'October','November':'November','December':'December'}}| my_awesome_database::Comments::edittype:'textarea',editoptions: {rows:"5",cols:"250"}| my_awesome_database::Amount::align:'right', formatter:'number', formatoptions: {decimalSeparator:',', thousandsSeparator: '.', decimalPlaces: 2, defaulValue: 0},editoptions:{title:'Hello I am hover text'}| my_awesome_database::Date::align:'center',formatter:'date',formatoptions:{srcformat:'Y-m-d H:i:s',newformat:'Y-m-d'},editrules: {required: true, date: true}
These are just some examples of what you can do and how I have used it,
I am still trying to figure out how to get Y-m-d to m/d/Y format myself.Good luck sir.
Forum: Plugins
In reply to: [WPF-jqGrid] parsererror Status: 'OK'. Error code: 200I was getting this error when my sql-db did not reflect what was being input.
I was getting it alot when my column was varchar (3) and I input a string of 4 or more. you may need to extend the number of allowed characters or adjust the data type.
some other threads for jqgrid suggest it is a json issue but you may try this first. I was able to resolve my issue without touching json
just check your db and be sure you are filling in the collumns correctly
Forum: Plugins
In reply to: [WPF-jqGrid] custom fields formatting helpTABLE_NAME::FIELD_NAME::edittype:’select’, editoptions:{value:{1:’One’,2:’Two’}}|
Here is the working code for anyone who needs it in the future!
Just replace table_name and field_name with your own.enjoy!
Forum: Plugins
In reply to: [WPF-jqGrid] Record Types – adding a drop down menu to "add record"I found the documentation for installing the modules on this page https://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install
about half way down, you can find it easily if you search the word “module”
hope this helps someone in the future, I am going to assume that your plugin indeed does support these modules, thanks again, moving forward.
Forum: Plugins
In reply to: [WPF-jqGrid] Record Types – adding a drop down menu to "add record"I’ve read the form editing documentation found here https://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing
and It involves uploading a plugin for jqgrid, the plugins are found here
https://www.trirand.com/blog/?page_id=6Does your wrapper support these plugins?
Know of any good tutorials or documentation for installing the jqgrid plugins?Forum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issuemaybe something like this would work
<?php $geoip = new geoip(‘dma.php’); ?>Forum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issueDefiantly I am looking into DMA district marketing areas that eBay supports for the US and Canada.
This logic seems to support the features I’m looking for.Forum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issueHow was this resolved? It still doesn’t work
Don’t give up that ezForum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issueDistanceNearest
Sorts items by distance from the buyer in ascending order. The request must also include a buyerPostalCode.how do I include buyer postalcode
'eSortOrder' => array( 'name' => 'eSortOrder', 'id' => 'eSortOrder', 'tip' => 'The order in which items will be displayed.', 'buyerPostalCode' => '77055', 'type' => 'select', 'options' => array( 'BestMatch' => 'Best Match', 'EndTimeSoonest' => 'Items Ending First', 'StartTimeNewest' => 'Newly-Listed Items First', 'PricePlusShippingLowest' => 'Lowest First', 'PricePlusShippingHighest' => 'Highest First', 'LocalPickupOnly' => 'Local Search', 'DistanceNearest' => 'distance nearest', ),
`foreach ($array as $LocalPickupOnly => $value) {
buyerPostalCode($77055);
}`IDK I couldent get this to work but im thinking you need to do something like this… my php is just sad lol
Forum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issuehttps://developer.ebay.com/DevZone/finding/CallRef/findCompletedItems.html#Request.itemFilter
I found sortOrder DistanceNearest
“Sorts items by distance from the buyer in ascending order. The request must also include a buyerPostalCode.”affiliate.geoTargeting
any thoughts? I’m about to try to work these into your function below. my php is rusty but I’ll see what I can do with this.//Client IP - used for Geographical IP Targeting $params_out['aClientIP'] = $_SERVER['REMOTE_ADDR']; $this->request_parameters = $params_out; //Hash URL data to get aHash $this->aHash = md5(serialize($this->request_parameters)); if($page = $this->get_pagination_page()) { $this->request_parameters['ePage'] = $page; } }
Forum: Plugins
In reply to: [Auction Affiliate] Geographical IP Targeting issueyes that is correct, both are solutions I am looking forward to. I appreciate the quick response. I’ll let you know if I find away to set this up. I’m going to look at it tonight.