Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all 8245 articles
Browse latest View live

raizans on "Hacking WooCommerce price slider for unfixed dates"

$
0
0

Hello,

I'm repurposing the WooCommerce plugin to make pages for a historical object exhibit, and I want to be able to filter objects by date of creation. I thought I might use the price slider to do that.

There is no problem when an object has a fixed date like 1783. The problem is that some objects have date ranges, e.g., 600 C.E. – 800 C.E.

Is there a way to hack the price slider to handle this? For example, if someone adjusts the sliders to search for objects from 700 C.E. to 1000 C.E., they should see objects that were made from 600 C.E. – 800 C.E.

Thank you!


herculesnetwork on "how to apply condition for print values ​​of an array"

$
0
0

how to apply condition for print values ​​of an array

hello staff wordpress.org
I need help from you again,

this function shuffle numbers,

function gen_num()
{
$caracteres = "012345678910111213141516171819";
$mistura = substr(str_shuffle($caracteres),0,15);
print $mistura;
}

I needed a condition to print or not the numbers at the posts, and the @leglesslizard User helped me. It works perfectly, the big problem down was that each new access to posts, or refresh the kapok, a new number / value was generated, and this could not happen, I needed to write permanently on those values ​​in the posts and below the solution but can not apply in arrays!

function gen_num()
{
global $post;
$mistura = get_post_meta( $post->ID, 'my_custom_meta', true );

if ( '' == $mistura ) {
$caracteres = "012345678910111213141516171819";
$mistura = substr(str_shuffle($caracteres),0,10);
update_post_meta( $post->ID, 'my_custom_meta', $mistura );
}

print $mistura;
}

I am now trying to make arrays and I can not!

function shuflenames()
{
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
echo $input[$rand_keys[0]] . "\n";
echo $input[$rand_keys[1]] . "\n";
}

my failed attempt to apply condition with arrays:

function shuflenames()
{
global $post;
$mixnames = get_post_meta( $post->ID, 'my_custom_meta', true );
if ( '' == $mixnames) {
$input = array("Neo", "Morpheus", "Trinity", "Cypher", "Tank");
$rand_keys = array_rand($input, 2);
update_post_meta( $post->ID, 'my_custom_meta', $mixnames );
}
echo $input[$rand_keys[0]] . "\n";
echo $input[$rand_keys[1]] . "\n";
}

but the words change as the condition does not exist. every new access words are changed, they are not actually written in the posts

Thanks to all, Best Regards.

James on "Taxonomies and XML Output"

$
0
0

I'm getting ready to build a RV site that needs to generate an XML output file to go to RVTrader. RVTrader has a specific set of requirements for the XML output. According to them, nobody has built anything using WordPress to work w/ their API. That is what I'm wanting to do.

Looking at the core functionality, it seems that using custom taxonomies to populate the data into the DB would be the easiest for the end user. This would allow a simple match between the tables and the XML entities.

Here's a sample output of what they need...

<Inventory>
<Rv>
<Awnings>0</Awnings>
<Class>Fifth Wheel</Class>
<DealerIdentifyer>McMahons Colton</DealerIdentifyer>
<Description>2002 FLEETWOOD Sea Breeze 2331 Triple Slide 5th Wheel, Focused on aerodynamic and tasteful design throughout and fashioned with lighter interiors for the fresh look of today,
</Description>
<EngineMake />
<EngineType />
<FuelType>DIESEL</FuelType>
<Length>33</Length>
<LevelingJacks>Y</LevelingJacks>
<MakeName>Fleetwood</MakeName>
<Mileage />
<ModelName>Sea Breeze 2331 Triple Slide 5th Wheel</ModelName>
<Condition>U</Condition>
<NumAirConditioners />
<Phone>4067527683</Phone>
<Price>29900</Price>
<SelfContained>Y</SelfContained>
<SleepingCapacity />
<Slideouts />
<StockNumber>US04208</StockNumber>
<WaterCapacity />
<MfrSerialNumber />
<Year>2002</Year>
<ExteriorColor />
<InteriorColor />
<Status>I</Status>
<UniqueID>b1ffc3bd23871f5e8824b12ceebd4082</UniqueID>
<ItemUrl>http://somesite.com</ItemUrl>
<City>Kalispell</City>
<StateCode>MT</StateCode>
<ZipCode>59903</ZipCode>
<CountryCode>US</CountryCode>
<Photo1>http://www.gardnerrv.com/image_1.jpg </Photo1>
<Photo2>http://www.gardnerrv.com/image_1.jpg </Photo2>
<Photo3>http://www.gardnerrv.com/image_1.jpg </Photo3>
<Photo4>http://www.gardnerrv.com/image_1.jpg </Photo4>
</Rv>
</Inventory>

I'm thinking custom taxonomies is the best approach for matching up the data. From there, I can create a custom script to generate the XML output.

My questions are....

Am I on the right track?
Is there something already available that can do something like this?
If not, is there something that might save me some time?
Are there any special considerations I should keep in mind?

relborg on "How to change Ninja forms upload directory"

$
0
0

hi

could anyone perhaps help me with the correct code to change the default upload directory which is set in the ninja forms activation.php file from line 27.

the the file upload directory is set with the following code:

$base_upload_url = wp_upload_dir();
$base_upload_url = $base_upload_url['baseurl'].'/ninja-forms';
$opt['base_upload_url'] = $base_upload_url;

$base_upload_dir = wp_upload_dir();
$base_upload_dir = $base_upload_dir['basedir'].'/ninja-forms';
$opt['base_upload_dir'] = $base_upload_dir;

i would like to change the default file upload directory, to wp-content/plugins/s2member-files

lovelywanz on "Is there any user based discount solution?"

$
0
0

I've been searching for an user based discount plugin/solution for a long time.All the discount plugins are role based, they're not suitable for my situation. I'm running a site with hundreds of retailer and normal customers. retailers are created from back-end, each retailer has an individual discount rate.It is impossible to setup hundreds of roles.

fedego on "Stuck to delete a #Div"

$
0
0

Hello there,

nice to be in wp forum...
i recently have to update a website, and im really stuck in a problem so i can't figure how to solve..

I have a premium theme called Black Label that use a "supersized" slideshow in each page, i always cover that with a background image but the page slow down so i try to cut the #supersized div on the code but with :not() css selector not work fine.

so i manage to make a hook or jqery to cut down the #supersized loading div but i try all things and still come up on the page, how code i need to remove(removefilter?), not load a specific <div id=xx> into some pages?

thanks for the help i will really appreciate it

Theme example:

http://themeforest.net/item/black-label-fullscreen-video-image-background/full_screen_preview/336949

joel324 on "Updating Cc 2016 (ICQ:337752) Sell Cvv Valid Us Ca Uk Eu Au Fr Jp.. All country"

$
0
0

Gmail : johncrawford981 @gmail.com
Yahoo: johncrawford981
ICQ: 337752
--------------------------------------------------------------------------
Sell CVV - DUMPS WITH PIN (US,CA,UK,AU,FR,EU,JP...) ATM cash, Cvv Fullz Info GOOD Balance
New Hacked stuffs available...
I have shop New 2015 for:
I'm Seller for: CC, CVV "Fullz - DOB - SSN" US,UK,CA, EURO,AU, Italian,Japan,France,...all cc. Account Paypal verify, Shop Admin and CC fullz info, CC DOB, Dump, Banklogin, Pri sock....
Selling Dumps With Hacked Track 1 Track 2 , Best Dumps For Sale From Old Vendor!!!
We glad to present our dump selling service ( Track 2 ,Track 1 + Track 2 )
Sell best stuff : SMTP, Rdp, Mailer, Email Leads, Cpanel, webmail, Shell, Email and Password , SSH Tunnelier
*** Please Contact me ***
--------------------------------------------------------------------------------
***** sell info fullz with SSN and DOB *****
demo info fullz death with SSN and DOB:
richard h dailey | united states | 5213 delematre rd | ohio | monroeville | 01 | mar | 1947 | 293405285 | smith | 44847 | 4193591412 |
price list for info fullz with SSN and DOB:
200 info = 160$
500 info = 350$
1000 info = 600$
***** Track 1 & 2 *****
Tracks 1&2 CHINA = 45$ per 1
Tracks 1&2 HONGKONG = 45$ per 1
Tracks 1&2 US = 50$ per 1
Tracks 1&2 UK = 70$ per 1
Tracks 1&2 CA + AU = 70$ per 1
Tracks 1&2 EU = 80$ per 1
I Will check with high balance

*** SAMPLE DUMPS / TRACK ½ ***
Track1:B4315734018577532^LIKLIKADZE/GRIGOLI ^1711221175030000000000342000000?
Track2;4315734018577532=17112211750303420000?
PIN: 2311
Track1:B4315715000193388^LIVINGSTONE/IAN ^1702201144590000000000836000000?
Track2:4315715000193388=17022011445908360000?
PIN: 8107
-------------------------------------
*** Sell Creadit Card (CVV) Online Good Payment FOR sHOPPING ONLINE ***
Format is:
Card Number | Exp. Date | CVV/CVV2 | First Name | Last Name | Street |
City | State | Zip Code | Country | Phone | Type Of Card | Bank Name |

LIST PRICE :
==> CHINA:
(visa,master) = 10$
(bin) = 9$
(dob) = 18$
(fullz) = 25$
==> HONGKONG:
(visa,master) = 10$
(bin) = 9$
(dob) = 18$
(fullz) = 25$
==> Us:
(visa,master) = 6$
(amex,discover) = 7$
(bin) = 9$
(dob) = 18$
(fullz) = 25$
===> UK:
(visa,master) = 18$
(amex,discover) = 20$
(bin) = 25$
(dob) = 35$
(fullz) = 40$
===> CA:
(visa,master) = 20$
(amex,discover) = 25$
(bin) = 30$
(dob) = 35$
(fullz) = 42$
===> AU:
(visa,master) = 18$
(amex,discover) = 20$
(bin) = 25$
(dob) = 35$
(fullz) = 45$
===> Eu,Mx,Nz,Fr,Ger,Itali,Spain,sweden,Denmark,
(visa,master) = 16$
(amex,discover) = 22$
(bin) = 22$
(dob) = 26$
(fullz) = 35$
************ min 10 pcs ********
Transfer(CHINA,HONGKONG,Eu,Uk,Asia,Canada,Us,France,Germany,Italy and very Easy to cashout African
****COST :
_ (MTCN) 3000$ = 450$
_ (MTCN) 5000$ = 650$
_ (MTCN) 9000$ = 1000$
_ (MTCN) 12000$ = 1800$
_ (MTCN) 15000$ = 2500$
_ (MTCN) 18000$ = 3000$
_ (MTCN) 20000$ = 3800$

All our cc are checked before sending.
We guarantee that our cc are good with good balances !!!

RULE 1: I never sell the same CC, CVV to more than a person.
RULE 2: I don't share CC, CVV for test free.

****** Gift card (Itune,google) 100$ = 25$(line 05 pcs) (pay for game and sell app)
acc Itune min 500$ = 100$ (pay for game and sell app)

joel324 on "Shopping Cvv, Dumps (ICQ:337752) Sell Cvv Fresh US , CA, INTER, UK, EU, GER, ASI"

$
0
0

Gmail : johncrawford981 @gmail.com
Yahoo: johncrawford981
ICQ: 337752
----------------------------------------------------------------
Genuine sell CVV here (UPDATE BULK SHOP US CA UK CA AUS FRANCE TURKEY ITALYA )

_ I need serious Business , because i update a lot tools everyday for sale

_ I want sell cc,Bank account,Account paypal,Tranfer and Software...

_ And I Need Good Buyer For Business Long Time With Me

_ I am very willing to provide cvv for those who need to use every day,bulk and cheap
-----------------------------------------------------------------------
Selling Mail Pass 10$/1000 mail pass
Selling Full info [ Name | DOB | Zipcode | State | City | Address | Phone | Mail | SSN | ] = 30$/1000 info

************* With CVV *******************
- Us (Visa,Master) = 5$ per 1
- Us (Amex,Dis) = 7$ per 1
- Us Bin 10$ , US Dob 15$
- Us fullz info = 25$ per 1
--------------------------------
- Uk (Visa,Master) = 10$ per 1
- Uk (Amex,Dis) = 12$ per 1
- Uk Bin 15$ , UK Dob 20$
- Uk fullz info = 30$ per 1
--------------------------------
- Ca (Visa,Master) = 10$ per 1
- Ca (Amex,Dis) = 12$ per 1
- Ca Bin 15$ , CA Dob 20$
- Ca fullz info = 30$ per 1
--------------------------------
- Au (Visa,Master) = 12$ per 1
- Au (Amex,Dis) = 15$ per 1
- Au Bin 17$ , AU Dob 20$
- Au fullz info = 30$ per 1
--------------------------------
- Eu (Visa,Master) = 20$ per 1
- Eu (Amex,Dis) = 23$ per 1
- Eu Bin 25$ , EU Dob 30$
- Eu fullz info = 40$ per 1
--------------------------------
- RDP = 20$
- SMTP = 25$ ( All Country )
- Italy = 20$ per 1 (fullz info = 35$)
- Spain = 20$ per 1 (fullz info = 35$)
- Denmark = 25$ per1 (fullz info = 35$)
- Sweden = 20$ per 1 (fullz info = 35$)
- France = 20$ per 1 (fullz info = 35$)
- Germany = 20$ per 1 (fullz info = 35$)
- Ireland = 20$ per 1 (fullz info = 35$)
- Mexico = 15$ per 1 (fullz info = 30$)
- Asia = 15$ per 1 (fullz info = 30$)
- And many country orther...let me know if have i sell sell for you.

==== EGift Card ====

Selling Amazon Gift Card all balancer
Selling Itunes Gift Card
Seliing Ebay , Mayc , BestBuy , Newget Egift Card

==== Paypal ====

-Selling Acc Paypal | Have Card | Have Bank | Mail Die = 3$/1acc
-Selling Acc Paypal | Have Card | No Have Bank | Mail Die = 1.5$/1acc
-Selling Acc Paypal | Have Card | Have Bank | Mail Live = 8$/1acc
-Selling Acc Paypal | Have Card | No Have Bank | Mail Live = 6$/1acc
-Selling Acc Paypal | Have Card | Have Bank | Balance = 25% total amount on acc

==== Dumps Track 1 & 2 ====

- Dumps,Tracks 1&2 Us = 70$ per 1
- Dumps,Tracks 1&2 Uk = 80$ per 1
- Dumps,Tracks 1&2 Ca = 100$ per 1
- Dumps,Tracks 1&2 Au = 100$ per 1
- Dumps,Tracks 1&2 Eu = 110$ per 1

I Will check with high balance
sample track 1&2 with pin
DUmps
B5111961527836645^KRISTI MCQUIRT^1312101263000000000000000000000?;5111961527836645=13121012630000000000
B5424180503431014^BRAUN/DANIEL E ^120910100000023501000000582000000?;54241805034310 14=1209101235010582
Track1=5232556061018719WYATT/ROBERTSON1007101171410000271000000
Track2=5232556061018719=10071011000042400000
pin: 5678,5432,5187,5505,and other many pin

*** Usa :101
- Visa Classic, MasterCard Standart =80$
- Visa Gold | Platinum | Business, MasterCard Gold | Platinum = 130$
- American Express - $80 ( WITHOUT SID )
- Discover = $80
*** Canada: 101 201
- Visa Classic, MasterCard Standart = 125$
- Visa Gold | Platinum | Business, MasterCard Gold | Platinum = 130$
*** EU, UK: 101 201
- Classic/Standart = 130$
- Gold/Platinum = 150$
- Business/Signature/Purchase/Corporate/World = 180$
*** Other countries: 101 201
- MasterCard| Visa Classic = 130$
- Visa Gold|Platinum|Corporate|Signature|Business = 150$
*** ASIA/AUSTRALIA/Exotic: 101 201 121
- MasterCard| Visa Classic = $130
- Visa Gold|Platinum|Corporate|Signature|Business = $150

==== RDP - VPS Services ====

Selling RDP Ser ( US,EU,Sing ) = 15$ / month ( 40$ / 3 month )
Selling VPS Ser ( US,EU,Sing ) = 30$ / month ( 80$ / 3 month )

==== Business Regulations ====

I promise CCV very good and fresh all with good price
If CCV not good i will change ( within 1 hours)
Accept payment by perfectoney ( PM , WMZ , BTC or WU )
With CCV US min sell 5
Thanks for read
Hope you are better customer and we can to work a long time.


joel324 on "Agency Offers Cvv-Dumps (icq:337752) Sell Cvv Us Ca Uk Au Eu - Sell dumps with"

$
0
0

Gmail : johncrawford981 @gmail.com
Yahoo: johncrawford981
ICQ: 337752
----------------------------------------------------------------
- Selling Mail Pass 5$/1000 mail pass
- Selling Full info [ Name | DOB | Zipcode | State | City | Address | Phone | Mail | SSN | ] =
30$/1000 info
- Selling CCN US , Inter for Shipper and Offer or credit report
===Sell Cvv Good All Country====
- Selling CVV US all type
- Selling CVV CA [ random - bin - VBV - dob - full ]
- Selling CVV UK [ random - bin - VBV - dob - full ]
- Selling CVV AU [ random - bin - VBV - dob - full ]
- Selling CVV EU
**List CVV EU I Have**
- CVV ITALY [ random - bin - dob ]
- CVV GER [ random - bin - dob ]
- CVV Sweden [ random - bin - dob ]
- CVV Spain [ random - bin - dob ]
- CVV France [ random - bin - dob ]
- CVV Japan [ random - bin - dob ]
- CVV Denmark [ random - bin - dob ]
- Selling CVV Asia
- CVV Singapo
- CVV Malaysia
==== EGift Card ====
- Selling Amazon Gift Card all balancer
- Selling Itunes Gift Card
- Seliing Ebay , Mayc , BestBuy , Newget Egift Card
==== Paypal ====
-Selling Acc Paypal | Have Card | Have Bank | Mail Die = 3$/1acc
-Selling Acc Paypal | Have Card | No Have Bank | Mail Die = 1.5$/1acc
-Selling Acc Paypal | Have Card | Have Bank | Mail Live = 8$/1acc
-Selling Acc Paypal | Have Card | No Have Bank | Mail Live = 6$/1acc
-Selling Acc Paypal | Have Card | Have Bank | Balance = 25% total amount on acc
==== Dumps Track 1 & 2 ====
DUMPS WITH PIN

...::::UNITED_STATES:::...
-DEBIT CLASSIC :$20/1
-CREDIT CLASSIC :$20/1
-CREDIT PLATINUM:$25/1
-DEBIT BUSINESS:$25/1
-DEBIT STANDARD:$25/1
-CREDIT CONSUMER CARD:$25/1
-CREDIT PREMIER:$25/1
-NA STANDARD: $25/1
-CREDIT STANDARD:$25/1
-DEBIT PLATINUM:$25/1
-DEBIT PREMIER:$25/1
-CREDIT GOLD:$25/1
-DEBIT GOLD PREMIUM:$25/1
-CREDIT WORLD CARD:$25/1
-CREDIT SIGNATURE:$25/1
-CREDIT SMALL CORPORATE :$30/1
...:::CANADA:::...
-CREDIT STANDARD:$30/1
-DEBIT PREPAID:$25/1
-CREDIT PLATINUM:$30/1
-CREDIT GOLD:$30/1
-CREDIT INFINITE :$30/1
-CREDIT CLASSIC :$25/1
-NA STANDARD : $30/1
-CREDIT BUSINESS:$30/1
-CREDIT GOLD PREMIUM:$30/1
...:::AUSRIA:::...
-DEBIT ELECTRON:$35/1
-CREDIT CLASSIC:$30/1
-CREDIT CORPORATE PURCHASING :$35/1
.:KOREA,_REPUBLIC_OF:.
-CREDIT PLATINUM:$35/1
...:::EUROPEAN_UNION:::...
-CREDIT PLATINUM :$35/1
...:::PUERTO_RICO:::...
-DEBIT CLASSIC:$35/1
...:::JAPAN:::..
-CREDIT CLASSIC :30/1
-CREDIT PREMIER:$35/1
...:::THAILAND:::...
-CREDIT PREMIER :$30/1
...:::TURKEY:::...
-CREDIT CLASSIC :$30/1
...:::JORDAN:::...
-CREDIT PREMIER :$35/1
...:::HUNGARY:::...
-CREDIT GOLD:$40/1
...:::TAIWAN,_PROVINCE_OF_CHINA:::...
-CREDIT PLATINUM :$40/1
-CREDIT INFINITE:$45/1
-CREDIT GOLD:$45/1
...:::FRANCE:::...
-DEBIT BUSINESS : $40/1
-CREDIT PREMIER :$40/1
...:::VENEZUELA,_BOLIVARIAN_REPUBLIC_OF:::...
-CREDIT GOLD : $45/1
...:::ITALY:::...
-DEBIT PREPAID :$30/1
...:::BRAZIl:::...
-DEBIT ELECTRON :30/1
...:::COLOMBIA:::...
-DEBIT CLASSIC :30/1
...:::INDIA:::...
-DEBIT PREMIER:$35/1
...:::ECUADOR:::...
-CREDIT CLASSIC:$40/1
...:::NETHERLANDS:::...
-CREDIT BUSINESS
...:::MEXICO:::...
-CREDIT PLATINUM
...:::BELGIUM:::...
CREDIT STANDARD
...:::SOUTH_AFRICA:::...
-CREDIT CORPORATE CARD:$40/1
...:::CYPRUS:::...
-CREDIT STANDARD:$40/1
...:::GERMANY:::...
-CREDIT CLASSIC:$40/1
...:::HONG_KONG:::...
-CREDIT PLATINUM :$35/1
###############################################
Proof DEMO LAST TIME SELLING DUMPS WITH PIN GOOD BALANCE
DUMPS WITH PIN
-JAPAN
B4541148282107007^Mamiko/Kobayashi^25072100000000000221000000 ;4541148282107007=2507210000000221000;PIN:5447
-TURKEY
B4155650149958727^FATIH/GUCER^17101103410400000211000000;4155650149958727=17101103410400211000;PIN:9889
-INDIA
B6593182112368584^laleh/babanazari^15012017313800000123000000;6593182112368584=15012017313800123000;PIN:5778
-BRAZIL
B4901060071109496^dias/maria/luiza/nogueria^17071010550603000121000000;4901060071109496=17071010550603121000;PIN:6030
-INDONESIA
B4158469878712212^ika/sri/purnamaningsih^17012201274000000213000000;4158469878712212=17012201274000213000;PIN:7252
-HUNGARY
B5542040007316003^Artur/Beke^15091101088000000987000000;5542040007316003=15091101088000987000;PIN:1027
-TAIWAN,_PROVINCE_OF_CHINA
B4067701731557109^Wei-Chun/Chang^19011014045400000988000000;4067701731557109=19011014045400988000;PIN:2405
- CANADA
B4530920124710013^Bibliotheque^17032206128000000547000000;4530920124710013=17032206128000547000;PIN:3377
-VENEZUELA,_BOLIVARIAN_REPUBLIC_OF
B5412474300815295^Rafael/Cort^19081011050000000578000000;5412474300815295=19081011050000578000;PIN:1050
-AUSTRALIA
B4072209014479002^Priya/Selva-Nayagam^18082010000000000112000000;4072209014479002=18082010000000112000;PIN:5081
-FRANCE
B4974903419054100^guihard/pascal^18021104400000000091000000;4974903419054100=18021104400000091000;PIN:0004
-ECUADOR
B4568890000178269^Ernesto/Sierra^17081010901762200321000000;4568890000178269=17081010901762232100;PIN:2267
-Pakistan
B6273770006050836^nusrat/jokhio^18122010000000112000000;6273770006050836=18122010000000112000;PIN:7100
-NETHERLANDS
B5528850001859800^Pieter/Guelen^17112100000000000953000000;5528850001859800=17112100000000953000;PIN:5371
-SOUTH_AFRICA
B5221182034692226^Western/Cape^15011010000000000549000000;5221182034692226=15011010000000549000;PIN:7463
-HONG KONG
B4009750000123060^ WAI-LUN/YIP^18091100000000000141000000;4009750000123060=18091100000000141000;PIN:2221
==== RDP - VPS Services ====
- Selling RDP Ser ( US,EU,Sing ) = 15$ / month ( 50$ / 3 month )
- Selling VPS Ser ( US,EU,Sing ) = 30$ / month ( 80$ / 3 month )
==== Business Regulations ====
- I promise CCV very good and fresh all with good price
- If CCV not good i will change ( within 1 hours)
- Accept payment by (BTC or PM or wmz )
- With CCV US min sell 5
- Thanks for read

joel324 on "SELL CC , CVV FRESH AND GOOD UK,CA (icq:337752) BANK LOGIN / WU TRANSFER / ACCOU"

$
0
0

Gmail : johncrawford981 @gmail.com
Yahoo: johncrawford981
ICQ: 337752
----------------------------------------------------------------
Online 24/24 Selling CVV + Track 1/2.Dumps with PIN + Transfer WesternUnion + Bank Logins + ATM Skimmer ....
... SMTP + RDP + MAILER + Account PayPal + MRS 205/206 + Shipping ( Laptop + Iphone + Ipad + BlackBerry ...

…………………………..
USA Dumps :

US Classic/Standart – $30
US Gold/Platinum – $35
US Purchasing/Signature – $45
US Bussines/Corporate – $45
US MC World – $50

…………………………..
EURO Dumps:

EU Gold/Classic – $70
EU Corporate/Purchasing – $90
EU Platinum/Business – $120
EU Infinite – $150
EU 201 - $80 / EU 101 - $100

…………………………..
CA Dumps :

CA Standart/Classic $50
CA Gold/Platinum $60
CA Corporate/Signature/Business $80
CA 201 - $40 / CA 101 - $50
CA INFINITE , MC WORLD – $100
…………………………..

Other countries: 101/121 BRAZIL , AUSTRALIA , CHINA , JAPAN , UK , etc ...
MasterCard Visa Classic – $80
Visa Gold Platinum Corporate Signature Business ? $100
INFINITE , BLACK AMEX , MC WORLD – $200
ATM CARDS PLASTIC ....YESCARDS....... ATM
Send By DHL 2days . Price 300€ or 320$ upfront 150€ or 150$ .
Sure and u past me ur post code . After 2 days sure but before i past tracking ………

…………………………. Dumps Pin/Track 1&2 .…………………………

- Tracks 1&2 US = 60$ per 1
- Tracks 1&2 UK = 70$ per 1
- Tracks 1&2 CA / AU = 80$ per 1
- Tracks 1&2 EU = 90$ per 1

United States|JPMorgan Chase Bank N.A.|Visa|PLATINUM|101|Track 1/Track 2|

Track2=5466160067866044=1406101103010555
Track1=B5466160067866044^LYONS/WILLIAM^14061010000000000103010555000000

5423201104769585=15071060000012430037
Chile | N/A | SANTIAGO | BANCO SANTANDER CHILE | MASTERCARD | STANDART

4966711001306493=13081060000019290035
Chile | N/A | Santiago | BANCO SANTANDER-CHILE | VISA | GOLD/PREM | CREDIT |

4500030105441897=14092010003026090201
Canadian Imperial Bank of Commerce CREDIT GOLD/PREM Canada Toronto Ontario ON

Track2=4658591937313000=14022212730000000011 => United Kingdom: PIN 3463
Track2=5404500019100759=13052210000002047000 => United Kingdom: PIN 9832

Track2=4852450003907464=10050114065434000000 => United States : PIN 5845
Track2=4185506003290033=11144281300469401011 => United States : PIN 6846

Pin: 5678,5432,5187,5505,and much pin other

…………………………. Transfer WesternUnion .…………………………
Transfer: US,UK,CA,AU,EU,France,Germany,Italy and very easy to cashout African .
Price :
- 500$ = 5000$
- 400$ = 4000$
- 300$ = 3000$
- 200$ = 2000$
- 120$ = 1500$
* Give me your western union info and payment me fees transfer .
* Then i will do transfer for you .
* After about 15 mins you'll have MTCN to cash money .

………………………………..

UK Normal with DOB $20
UK with BINS with DOB $30
UK Normal $12
UK with BINS $25
UK Amex $20
………………………………..

FULLZ FRANçAISE
MASTER 25$/1
Visa 25$/1
100% valide
………………………………..

US visa $4/1
US master $4/1
US amex $7/1
US discover $7/1
………………………………..

UK visa $15/1
UK master $15/1
UK amex $20/1
UK discover $20/1 Switch
………………………………..

CA visa $12/1
CA master $15/1
CA amex $17/1
………………………………..

AU visa $15/1
AU master$17/1
AU amex $20/1
………………………………..

US FULLZ $30/1
UK FULLZ $35/1
CA,AU,UK FULLZ 35$/1
………………………………..

EU visa $17/1
EU master $19/1
EU amex $25/1
EU Many country : GER,Italy,France,Spain,New Zeland,Mexico,Japan...etc...
………………………………..
SOME BINS :
USA: 517805,488893,492536,408181,542432,482880,374355,374372...
CA : 450003,450008,451242,450060,549198,533833,519123,544612...
UK : 4547,5506,5569,5404,5031,4921,5505,5506,4921,4550...
AU : 543568,450605,494053,450606,456475,521893,519163...
FR : 497847,497831,497841,497849,497820,497825,497833...
GER: 492942,490762,530127... And others bins for others country

……………………………….. RULES BUSINESS ..………………………………

Never give test free & demo & Screenshot . First deal is trust me => Don't trust no contact .
I only accept WesternUnion (WU) & PerfectMoney (PM) & WebMoney (WMZ)
Replacement is within 24hrs of purchase and replacement is once per order
I send you your stuff immediately after payment confirmation or money pick up
Western union (WU) minimum is 100$.Order US CVV Dumps 5 pieces Minimum.

eralpsahin on "Where does the actual data stored by add_post_meta"

$
0
0

Hello,

I am pretty new to Wordpress API, loving it btw, I have a small project, adding a like button to the end of every post, pressing it makes user like the post, button changes to dislike, pressing again makes user dislike the post.

Without the knowledge of Wordpress API, I planned to create a table in which I will store the post-id and user-ids. Plugin will know by querying the table if the user has already liked the post. But on the internet I found a lot of examples of like buttons, not creating a custom table and using update_post_meta, and if I understood right update_post_meta does not alter any table in the database or insert new rows. Because I tried some of the plugins which uses update_post_meta and after liking a post, my wp_posts and wp_postmeta tables does not change at all.

My question is where exactly is post_meta stored, where does wordpress store the new custom field 'like_count' if I do this;
update_post_meta($post_id, 'like_count',1);

dahlsdatatahira on "Just update the value of a key in options-array?"

$
0
0

Hi,

in wordpress we have a function called get_option( $option, $default );. I use this to call the option ws_plugin__s2member_options which is an array. Here i do change the value of the key custom_reg_fields and save it into a variable. With the following code i do "replace" this value ($outall contains the new value):

foreach(  $options as $k=>&$v ){
   if( $k == "custom_reg_fields"){
      $v=$outall;
   }
}

When i do a print_r($options['custom_reg_fields']); i do get my new value as output on my page. But in my database i still have the old one. I know that there is a function called update_option( $option, $new_value, $autoload ); in wordpress. But this i giving me just the option to update the whole options-array. But i do need to update just the value of the key custom_reg_fields which is in the arrayws_plugin__s2member_options. Has somebody an idea how to solve this?

Thanks in advance!

Shrinivas on "How to add on page setting box (meta box) with a plugin?"

$
0
0

Hello,

Is there a way to add on page setting box (meta box) to the pages so that user can configure plugin right from the page?

Currently our wordpress plugin has settings page, but we want to add meta box to the pages with a checkbox option. How to achieve this? How to set and get the saved data with such meta boxes?

Thanks in advance

kmuth on "Login Redirect"

$
0
0

Hi all,

I am trying to incorporate a very lightly styled (via the Custom Login Page Customizer plugin) into my site, and I'm having a problem with user redirects after login.

Specifically, I need users logging in from a specific page to return to that page following login. I need users logging in from the home url to return to the home url. No one but admin should be directed to /wp-admin/.

I've inserted the following code into the functions.php file of my child theme:

function my_login_redirect( $redirect_to, $request, $user ) {
	//is there a user to check?
	if ( isset( $user->roles ) && is_array( $user->roles ) ) {
		//check for admins
		if ( in_array( 'administrator', $user->roles ) ) {
			// redirect them to the default place
			return $redirect_to;
		} else {
			return home_url();
		}
	} else {
		return $redirect_to;
	}
}

add_filter( 'login_redirect', 'my_login_redirect', 10, 3 );

This does the trick, for the most part. Except that when a user logs in from a page other than the homepage--say, from the comments section of a post--she's now kicked back to the home url, rather than to the page or post she was trying to reach. I would like her to be redirected to the referring url.

Requisite disclaimers: I'm new to this. Not a practised coder. Know next to zero PHP.

Site: http://knowtheory.org

Theme: Zerif Lite

Jimbola on "Change page template based on layout in Site Origins Page Builder"

$
0
0

I am using Site Origins Page Builder to create a pre-built layout using the code;

function mytheme_prebuilt_layouts($layouts){
    $layouts['home-page'] = array(
        // We'll add a title field
        'name' => __('Default Home', 'vantage'),    // Required
        'description' => __('Default Home Description', 'vantage'),    // Optional
        'widgets' => array( ... ),
        'grids' => array( ... ),
        'grid_cells' => array( ... )
    );
    return $layouts;

}
add_filter('siteorigin_panels_prebuilt_layouts','mytheme_prebuilt_layouts');

Is there a way to change the page template that is used based on the name of the layout that has been selected?


ernestortiz on "How to change the user description on-the-fly"

$
0
0

It is hard to use a filter/hook/action to change on-the-fly the user description; it means not to change/save it on the database but (for example) add some extra description, or change the user description given some kind of users. Any help/idea will be appreciated, a lot.

Taro on "Search result based on menu category"

$
0
0

Hi All,

i'm looking for two pieces of code that can help me with the following:

I got posts and pages with a custom menu. These posts/pages got a custom template activated. The templates contains the menu for the specific posts and pages. This way i can order pages/posts in two different categories.

Now i like to change the search function; the search output should be based on the active custom menu category.

I named menu 1: Benelux and menu 2: International

1: First peace of code needs to be for the searchform.php
The code should look at the current active menu(category) and the search result should be based on the active menu.

If the menu is for example "Benelux" then the search result should only display pages/posts from the custom taxonomy that i made <input type="hidden" name="location" value="benelux" />
Or if the active menu is "International" then display pages/posts from the custom taxonomy <input type="hidden" name="location" value="international" />

I found the following code to get the menu category...not sure if this is useful..

(wp_nav_menu( array(
    'menu' => 'benelux'
) )

2: Second peace of code is needed for the search.php (header).
Because if the output should work correctly than we also need to change the menu for this search result page. Default the search.php uses the main menu.

So the following code needs to see if the pages/post contain taxonomy benelux or international and change the menu accordingly.

It would just be really awesome if this is possible.

Greatings,
Taro

brveljkovic on "Custom Menu Widget Hack"

$
0
0

hi all,
how can I change the default effect for submenu items display on this widget. I would like sub menu to be displayed on click not on hover as it is very annoying when you have multiple parent items with sub menus.
Where I can change from hover to on click? Where is default code for this widget?
thank you!

iqrakhan on "Special characters in url"

$
0
0

Hi,
I am creating a plugin, in which I need to add a special character in the URL, is there any way to do that ?
Any help will be appreciated.

Thanks

dgellis on "Plugin to Add to query_vars Stopped Working"

$
0
0

Hi Folks,

I'm searching this forum and not getting anywhere. This plugin no longer functions as it should. The code is slightly sanitized to remove the name of my customer, but other than that, this is the plugin I'm using:

An example URL would be http://customer.site.dev/acceptance/?req_info=ZZZZZ

The req_info query_var is no longer passed to $wp_query->query_vars in the acceptance page.

<?php
/**
 * @package CUSTOMER Filters
 * @version 1.0
 */
/*
Plugin Name: CUSTOMER Filters
Plugin URI: http://www.ieworks.net
Description: Custom plugin to add URL filters to CUSTOMER web site
Author: Darren Ellis
Version: 1.0
Author URI: http://www.ieworks.net
*/

function customer_filters( $public_query_vars ) {
    $public_query_vars[] = 'req_info';
    return $public_query_vars;
}

add_filter('query_vars', 'customer_filters');
?>

I think this broke when I upgraded to 4.4.2, but I didn't test this after the upgrade, so I am not exactly sure when it broke.

I've searched this forum and found lots of examples that would indicate that my code is good.

I've tested on TwentyFifteen and gotten the same results: No req_info in query_vars.

php56w-5.6.19-1.w7.x86_64
nginx version: nginx/1.8.1

Did something in 4.4* change the way plugins work?
Did something in 4.4* change the way add_filter works?

Anyway, I'd appreciate any assistance. Thanks so much!

Darren

Viewing all 8245 articles
Browse latest View live




Latest Images