Dev {Tricks}

  • Home
  • WordPress
  • OJS
  • Oxwall
  • Server and Hosting
You are here: Home / Home

June 8, 2018 by dev 3 Comments

Seller reviews to Buyer | Freelancer reviews to Clients | Samples

Feedback to new Clients / Buyer / Customer

  • Thanks so much! You were an EXCELLENT client to work with!
  • Oh thank you so much, I have much enjoyed helping with the project! Thanks a lot!
  • Thanks a bunch, I really enjoyed working on the project!
  • Thank you so much, I am always happy to help with another challenging project!
  • You’re the BEST. Loved working for you and look forward to working with you again one day! Wishing you all the success in the world
  • I wish you all the success in the world. Thank you for being such a delight to work with! Let me know if you need me for any future projects.
  • Love the project, so it’s hard NOT to have fun with it.
  • Great client. Stay blessed and I am here when you need me.
  • You’re too kind 🙂 This was fun to work with My days are packed with smiles. ..
  • Awesome product by a brilliant client =) Thanks YOU! Look forward to the next set of work!
  • You are a darling client. Creative, polite and a fantastic communicator. Complete pleasure to work with you…and i hope I can be of service to you again in the future!
  • You are a pleasure to work with.
  • It’s easy with a good project
  • Thanks so much, Will…look forward to doing more work for you!
  • Thank YOU again, and I look forward to working with you more!
  • Very detailed and organized information. Thanks!
  • Thanks for the opportunity to work on an interesting project!!!
  • Many thanks for your order. Hope to work with you again.

Feedback to recurrent Clients / Buyer / Customer

  • Thank you so much for being a client for long time now! Thank you again!
  • Thank you so much for being my client for so long! I do appreciate it!
  • Thanks a lot, its always a pleasure working with clients like you and knowing what they need. Thanks again!
  • Thank you so much for still using my service
  • Wonderful client, whom I greatly enjoy working for!
  • It’s always great working with you! Thanks again!
  • Repeated Buyer, had a great experience with him. Recommended

 

Feedback to Fiverr GIG Clients

  • Thank you so much, i really appreciate your positive gig feedback!
  • Thanks a million, I appreciate your feedback!
  • Thank you so much, i appreciate the gig comment!
  • Thank you so much! I appreciate the positive gig comment!
  • Many many thanks, I really appreciate the gig feedback! Good luck with the project!
  • Your feedback means a lot to me , many thanks!
  • Thank you. beautiful review, lol.
  • Thanks again for the gig!
  • Thanks again for the gig! I’m glad you’re pleased!
  • Thanks so much for your kind words! I’m really glad I could help. Best of luck with your writing and future endeavors!
  • Thanks so much! I’m really glad I could help!
  • Thanks for another gig, and best of luck with your project! It’s always great working with such friendly people!
  • Thanks so much! I’m glad you’re pleased, and I look forward to working with you more!
  • Thanks again for the gig! I’m glad I could help and have really enjoyed working with you. Best of luck with your future projects. I am here when you need me.
  • Outstanding Experience with Buyer. I like to work with him. Again Thank for your Order
  • Thanks a million, I have really enjoyed working on this. I appreciate the tip as well 🙂 ! Thanks!
  • So glad you’re loving these. Thank you for the tip!!!
  • Nice experience and great client, Thanks for your order

Feedback to Upwork clients

  • Very good client. Would definitely like to work with him again.
  • Very nice employer with clear instructions and reasonable deadline. A pleasure to work with.
  • He is a great client. Wonderful communication, helpful cooperation. I am looking forward to work with him. Great relationship and wonderful passion!
  • A very good client to work with , wish to work again with him.
  • Nice Client! Wonderful experience working with …
  • …….. is a nice client to work for! Highly recommended!
  • A Pleasure to work with ! Thank you !
  • It was pleasure working with you. I would like to work again.
  • Great Client and very detailed with the requirements.
  • Client is very easy to work with. Gives thorough and clear feedback and instruction.

Feedback to recurrent Upwork clients

  • Always to love work with … . Explain every point clearly when i need and also helps to sort out things related to projects.
  • You have been a trustful client to work with. You have always paid me on time without keeping me waiting.
  • I feel privileged and joyful that your trusting on me has come up with a good result.
  • I truly value your companionship where we build a relationship of trust and cordiality.

Best Clients / Buyer / Customer

  • Great client, excellent communication and every task had clear instructions which client provided immediately after accepting the job. Looking forward hearing from Michael again in future.
  • ………. is such a honest, decent and reliable client. He always provide a very detailed scope of work which help me to give the exact estimations. Will continue my service with him for long time.
  • Very caring & professional client, hope to have the opportunity to work with him again.

Filed Under: Marketplace Tagged With: feedback to clients, fiverr, fiverr review, freelancer review, freelancer.com, odesk, people per hours, review to customer, upwork, upwork review

April 8, 2018 by dev 3 Comments

Limit checkbox select

Contact form 7

[checkbox* SelectTree class:SelectTree "Flowering Dogwood" "Red Maple" "Sugar Maple" "Service Berry (Amelanchier Canadensis)" "Service Berry (Amelanchier arborea)" "River Birch" "Elm (Canopy tree)" "Fruitless Sweet Gum (Canopy tree)" "American Linden (Canopy tree)" "American Hornbean (Canopy tree)" "American Hazelhut (Fruit tree)" "Apples (Fruit tree)" "BlueBerry (Fruit tree)" "Pears (Fruit tree)"]

Jquery (Limit select 3)

jQuery(function(){
var max = 3;
var checkboxes = jQuery('.SelectTree input[type="checkbox"]');

checkboxes.change(function(){
var current = checkboxes.filter(':checked').length;
checkboxes.filter(':not(:checked)').prop('disabled', current >= max);
});
});

Filed Under: Contact Form 7, Plugins, Wordpress

March 19, 2018 by dev Leave a Comment

WordPress Codex

Home url: home_url( ‘/’ ); [with echo and sanitization]

Site name: bloginfo( ‘name’ );

Site description: get_bloginfo( ‘description’, ‘display’ );

Navigation Menu: wp_nav_menu()

 

Filed Under: Functions, Wordpress

March 17, 2018 by dev Leave a Comment

How to change default sender name and email

After changing the email address and sender name, add the following code in the functions.php file of your active theme.

<code class="php comments">// Function to change email address</code>
<div class="container">
<div class="line number3 index2 alt2"><code class="php keyword">function</code><code class="php plain">wpdev_sender_email( </code><code class="php variable">$original_email_address</code><code class="php plain">) {</code></div>
<div class="line number4 index3 alt1"><code class="php spaces">    </code><code class="php keyword">return</code><code class="php string">'bdhostit@example.com'</code><code class="php plain">;</code></div>
<div class="line number5 index4 alt2"><code class="php plain">}</code></div>
<div class="line number6 index5 alt1"></div>
<div class="line number7 index6 alt2"><code class="php comments">// Function to change sender name</code></div>
<div class="line number8 index7 alt1"><code class="php keyword">function</code><code class="php plain">wpdev_sender_name( </code><code class="php variable">$original_email_from</code><code class="php plain">) {</code></div>
<div class="line number9 index8 alt2"><code class="php spaces">    </code><code class="php keyword">return</code><code class="php string">'BD HOST IT'</code><code class="php plain">;</code></div>
<div class="line number10 index9 alt1"><code class="php plain">}</code></div>
<div class="line number11 index10 alt2"></div>
<div class="line number12 index11 alt1"><code class="php comments">// Hooking up our functions to WordPress filters </code></div>
<div class="line number13 index12 alt2"><code class="php plain">add_filter( </code><code class="php string">'wp_mail_from'</code><code class="php plain">, </code><code class="php string">'wpdev_sender_email'</code><code class="php plain">);</code></div>
<div class="line number14 index13 alt1"><code class="php plain">add_filter( </code><code class="php string">'wp_mail_from_name'</code><code class="php plain">, </code><code class="php string">'wpdev_sender_name'</code><code class="php plain">);</code></div>
</div>
<div> 

Filed Under: Wordpress, WP Basic Guideline

March 17, 2018 by dev Leave a Comment

How to change default sender name and email using a Plugin

By default, WordPress uses “WordPress” as the name of sender for all outgoing wordpress notification. Changing the default sender name and email using a Plugin is very easy.

  1. First install and activate the plugin WP Mail SMTP by WPForms 
  2. After activation, go to WP Mail SMTP options under “Settings”
  3. Specify the name and email address
  4. You can also test your setting under “Email Test”.

Filed Under: Wordpress, WP Basic Guideline Tagged With: sender email, sender name, smtp

  • « Previous Page
  • 1
  • …
  • 87
  • 88
  • 89
  • 90
  • 91
  • Next Page »
  • Upwork
  • Freelancer
  • Fiverr
  • Guru

www.ojsexpert.com
www.ojsdev247.com

Recent Posts

  • To get your email for castamodel.com going to the right place, you need to update your DNS settings.
  • Security and WordPress
  • ROR
  • How do we copy google form to google workspace?
  • Install ImageMagick – Almalinux
  • How to remove /public/ from URL in Laravel
  • How to install Maldet alert?
  • How to Install Maldet and Run a Scan | Maldetect
  • Where is Roundcube location on CWP control panel?
  • How To Add Node.js Projects In aaPanel?
  • SPF/DKIM/DMARC Tools
  • Associative arrays – How to loop over Associative arrays
  • Indexed Arrays. How to loop over Indexed Arrays.
  • PHP Break | Continue
  • For Loop | While Loop | Do…While Loop | Foreach Loop
  • Strict mode in PHP
  • PHP Function Return Types
  • PHP Anonymous Functions (or Closures)
  • PHP Variadic Functions
  • PHP nullable type hints

Categories

  • Affiliate Marketing (1)
  • Customization (4)
    • CSS (2)
  • Email Solutions (23)
    • FrontApp (2)
    • Google Spreadsheet (2)
    • Microsoft Outlook (1)
    • PHP Email Form (3)
    • PolyMail (2)
    • Recaptcha (1)
    • Roundcube (4)
    • Thunderbird (3)
    • WebMail (5)
  • Games (1)
  • How to (87)
  • Joomla (6)
    • Akeeba (1)
    • Fix & Tricks (3)
  • jQuery (4)
  • jQuery Plugins (4)
    • BX Slider (1)
    • Slick (1)
  • Laravel (5)
  • Marketplace (5)
  • Miscellaneous (31)
  • MultiSaaS (1)
  • OJS (56)
    • Crossref (1)
    • Help (37)
    • Installation (10)
      • Issues (5)
    • Plugins (8)
    • Scholar Indexing (2)
    • Theme (7)
      • Templates (7)
        • Frontend (6)
        • legacy (1)
    • Theme Customization (10)
    • Theme Development (14)
    • TPL CSS JS (2)
    • Upgrade (11)
  • OSTAD (17)
  • Oxwall (3)
  • Payment Methods (1)
    • Paypal (1)
  • PC Tips and Tricks (14)
    • MS Office (2)
      • PowerPoint (1)
    • Windows (4)
  • PHP Parse error (2)
  • phpBB (2)
  • Server and Hosting (213)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (28)
      • Almalinux (13)
      • CentOS (17)
      • Debian (21)
      • Ubuntu (19)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (69)
      • AWS (37)
      • Bluehost (37)
      • Cloudcone (26)
      • Contabo (40)
      • Digitalocean (68)
      • Hetzner (3)
      • HostGator (36)
      • Hostinger (8)
      • RackNerd (10)
      • VPSDime (38)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (147)
      • aaPanel (14)
      • CentOS Web Panel (46)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (26)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Uncategorized (19)
  • Wordpress (89)
    • Elementor (2)
    • Find and Fix (11)
    • Functions (5)
    • Genesis (9)
    • Glossary (1)
    • How to (22)
    • Neuron TD (15)
      • Console Error (1)
      • functions (5)
        • register_post_type (1)
        • register_sidebar (1)
        • theme_files (1)
        • theme_supports (1)
      • Image Directory (1)
      • Menu (2)
      • Query (4)
    • Plugins (13)
      • Contact Form 7 (5)
      • Duplicator (1)
      • Essential Grid (2)
    • Softaculous (3)
    • Speed and Security (4)
    • Stock Theme Development (6)
      • Header Footer (1)
      • PHP (1)
      • VC (1)
    • Theme Development (2)
      • Issues (1)
      • Menu (1)
    • Timer Theme Development (3)
    • Update (2)
    • Woocommerce (2)
    • WP Basic Guideline (8)

Important DEV links

  • Premium Themes
    • Themeforest
    • Envato Market
  • Built With (What Theme is That?)
    • What WP theme is that
    • Joomla Template Detector
    • Drupal Template Detector
    • Prestashop Template Detector
    • Shopify Theme Detector
    • Squarespace Template Detector
    • OpenCart Detector
    • WordPress.com Theme Detector
  • Domain/IP history checker
    • Who IS request
    • Hosting Info
  • Check DNS Propagation
    • DNS Checker
    • intoDNS
  • What is my IP
    • What is My IP Address
    • What is My IP
    • IP location
    • What is My IP
    • Porkbun
  • SEO Tools
    • Visitor Traffic
    • Broken Link
    • Website Speed Test
      • SEMrush
      • GTmetrix
      • Pingdom
      • PageSpeed Insights
      • DebugBear
      • keyCDN
  • Photo Image
    • Remove Background 50 Free Preview Image 375 × 666 per month
  • Domain Registrars
    • 123-Reg
    • Porkbun
    • Freenom
    • Namecheap NEWCOM598
  • Hosting Providers
    • Bluehost
    • Hostgator
    • Inmotion
  • Hosting Control Panel
    • CWPpro (FREE)
    • DirectAdmin (Trial 60 Days, One account $2/month)
    • ISPConfig (Free)
  • Webmaster Tools
    • Google
    • Bing
    • Yandex
  • Miscellaneous
    • Time Calculator

 

Categories

  • Affiliate Marketing (1)
  • Customization (4)
    • CSS (2)
  • Email Solutions (23)
    • FrontApp (2)
    • Google Spreadsheet (2)
    • Microsoft Outlook (1)
    • PHP Email Form (3)
    • PolyMail (2)
    • Recaptcha (1)
    • Roundcube (4)
    • Thunderbird (3)
    • WebMail (5)
  • Games (1)
  • How to (87)
  • Joomla (6)
    • Akeeba (1)
    • Fix & Tricks (3)
  • jQuery (4)
  • jQuery Plugins (4)
    • BX Slider (1)
    • Slick (1)
  • Laravel (5)
  • Marketplace (5)
  • Miscellaneous (31)
  • MultiSaaS (1)
  • OJS (56)
    • Crossref (1)
    • Help (37)
    • Installation (10)
      • Issues (5)
    • Plugins (8)
    • Scholar Indexing (2)
    • Theme (7)
      • Templates (7)
        • Frontend (6)
        • legacy (1)
    • Theme Customization (10)
    • Theme Development (14)
    • TPL CSS JS (2)
    • Upgrade (11)
  • OSTAD (17)
  • Oxwall (3)
  • Payment Methods (1)
    • Paypal (1)
  • PC Tips and Tricks (14)
    • MS Office (2)
      • PowerPoint (1)
    • Windows (4)
  • PHP Parse error (2)
  • phpBB (2)
  • Server and Hosting (213)
    • Billing and Management (10)
      • Blesta (5)
      • Boxbilling (2)
      • WHMCS (5)
    • Email (10)
      • Postfix (3)
    • Error and Fix (17)
    • FTP (2)
    • Linux Distribusion (28)
      • Almalinux (13)
      • CentOS (17)
      • Debian (21)
      • Ubuntu (19)
    • Mail Server Solusion (7)
      • iRedMain (6)
    • MySQL (12)
    • Providers (69)
      • AWS (37)
      • Bluehost (37)
      • Cloudcone (26)
      • Contabo (40)
      • Digitalocean (68)
      • Hetzner (3)
      • HostGator (36)
      • Hostinger (8)
      • RackNerd (10)
      • VPSDime (38)
    • Security (21)
      • SSH (8)
    • VPS Management (72)
    • Web Control Panel (147)
      • aaPanel (14)
      • CentOS Web Panel (46)
      • cPanel (33)
      • CyberPanel (7)
      • DirectAdmin (96)
        • Find & fix (38)
      • ISPConfig (17)
      • KeyHelp (7)
      • Plesk (26)
      • Webmin (25)
        • Usermin (2)
        • Virtualmin (13)
      • WHM (18)
  • Uncategorized (19)
  • Wordpress (89)
    • Elementor (2)
    • Find and Fix (11)
    • Functions (5)
    • Genesis (9)
    • Glossary (1)
    • How to (22)
    • Neuron TD (15)
      • Console Error (1)
      • functions (5)
        • register_post_type (1)
        • register_sidebar (1)
        • theme_files (1)
        • theme_supports (1)
      • Image Directory (1)
      • Menu (2)
      • Query (4)
    • Plugins (13)
      • Contact Form 7 (5)
      • Duplicator (1)
      • Essential Grid (2)
    • Softaculous (3)
    • Speed and Security (4)
    • Stock Theme Development (6)
      • Header Footer (1)
      • PHP (1)
      • VC (1)
    • Theme Development (2)
      • Issues (1)
      • Menu (1)
    • Timer Theme Development (3)
    • Update (2)
    • Woocommerce (2)
    • WP Basic Guideline (8)
  • Home
  • WordPress
  • OJS
  • Oxwall
  • Server and Hosting

Copyright © 2025 · Executive Pro Theme on Genesis Framework · WordPress · Log in