Title: cin5050's Replies | WordPress.org

---

# cin5050

  [  ](https://wordpress.org/support/users/cin5050/)

 *   [Profile](https://wordpress.org/support/users/cin5050/)
 *   [Topics Started](https://wordpress.org/support/users/cin5050/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cin5050/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cin5050/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cin5050/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cin5050/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cin5050/favorites/)

 Search replies:

## Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] cannot download woocom from wordpress](https://wordpress.org/support/topic/cannot-download-woocom-from-wordpress/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cannot-download-woocom-from-wordpress/#post-7190897)
 * I 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 software
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] cannot download woocom from wordpress](https://wordpress.org/support/topic/cannot-download-woocom-from-wordpress/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/cannot-download-woocom-from-wordpress/#post-7190896)
 * [https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip](https://downloads.wordpress.org/plugin/woocommerce.latest-stable.zip)
   
   not working as well
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPF-jqGrid] custom fields formatting options?](https://wordpress.org/support/topic/custom-fields-formatting-options/)
 *  [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/custom-fields-formatting-options/#post-6989059)
 * [http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules](http://www.trirand.com/jqgridwiki/doku.php?id=wiki:common_rules)
 * [http://www.trirand.com/jqgridwiki/doku.php?id=wiki:predefined_formatter](http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPF-jqGrid] parsererror Status: 'OK'. Error code: 200](https://wordpress.org/support/topic/parsererror-status-ok-error-code-200/)
 *  [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/parsererror-status-ok-error-code-200/#post-6985874)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPF-jqGrid] custom fields formatting help](https://wordpress.org/support/topic/custom-fields-formatting-help/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/custom-fields-formatting-help/#post-6913848)
 * TABLE_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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPF-jqGrid] Record Types – adding a drop down menu to "add record"](https://wordpress.org/support/topic/record-types-adding-a-drop-down-menu-to-add-record/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/record-types-adding-a-drop-down-menu-to-add-record/#post-6855588)
 * I found the documentation for installing the modules on this page [http://www.trirand.com/jqgridwiki/doku.php?id=wiki:how_to_install](http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPF-jqGrid] Record Types – adding a drop down menu to "add record"](https://wordpress.org/support/topic/record-types-adding-a-drop-down-menu-to-add-record/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/record-types-adding-a-drop-down-menu-to-add-record/#post-6855587)
 * I’ve read the form editing documentation found here [http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing](http://www.trirand.com/jqgridwiki/doku.php?id=wiki:form_editing)
 * and It involves uploading a plugin for jqgrid, the plugins are found here
    [http://www.trirand.com/blog/?page_id=6](http://www.trirand.com/blog/?page_id=6)
 * Does your wrapper support these plugins?
    Know of any good tutorials or documentation
   for installing the jqgrid plugins?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253318)
 * [dma.php](http://pear.php.net/package/Net_GeoIP/docs/latest/__filesource/fsource_Net_GeoIP__Net_GeoIP-1.0.0NetGeoIPDMA.php.html)
 * maybe something like this would work
    <?php $geoip = new geoip(‘dma.php’); ?>
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253298)
 * Defiantly 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253296)
 * How was this resolved? It still doesn’t work
    Don’t give up that ez
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253287)
 * DistanceNearest
    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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253283)
 * [http://developer.ebay.com/DevZone/finding/CallRef/findCompletedItems.html#Request.itemFilter](http://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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auction Affiliate] Geographical IP Targeting issue](https://wordpress.org/support/topic/geographical-ip-targeting-issue/)
 *  Thread Starter [cin5050](https://wordpress.org/support/users/cin5050/)
 * (@cin5050)
 * [11 years, 9 months ago](https://wordpress.org/support/topic/geographical-ip-targeting-issue/#post-5253281)
 * yes 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.

Viewing 13 replies - 1 through 13 (of 13 total)