I AM LISTENING TO
|
WAS ICH LIEBE
  • Englisch
  • Deutsch


BLOG FILTER



Some options to get those translatable strings out of your templates. I will be adding new things, as I discover them :)

  1. xgettext-templateHandlebars & Swig
  2. gettext-twig – {% trans „string here“ %}
  3. rtwix – Ruby based TWIG translations extractor
  4. twig-po – Extract translation keys from twig templates and move them to PO
  5. Twig-Gettext-Extractor –  tool which extracts translations from twig templates

Enjoy coding …

readmore
31. Oktober 2015

Timber , TWIG & PoEdit

Timber / Twig templates are normally not recognized by Poedit. Its just a matter of tweaking the C/C++ extractor within the settings panel.

Add TWIG to the filetypes: *.c;*.cpp;*.h;*.hpp;*.cc;*.C;*.cxx;*.hxx;*.twig

Gettext calls, like {{__(„Points Conversion Rate“, „wplms-extras“)}} in Timber, are being extracted from your templates after that.

Easier than using the gettext extractor :)

ADDING GETTEXT FUNCTION TO TWIG

 

Enjoy coding …

 

readmore

I am currently working on a WPLMS enhancement for a customer, that allows to simplify the payout of instructor commissions. The whole system runs on the MyCred Points System and students pay for courses with Points. The problem is how to easily payout the instructor commissions via PayPal.

There is currently no addon for MyCred available that does that magic, so I build one myself.

At the moment the payment process via PayPal is completely manual, due to budget constraints. I am basically generating a custom „Send Money“ link that prefills the PayPal email and amount to send.

The interface itself handles the payout sessions, tracks the instructor balance, paid and unpaid points.

Here some images to illustrate the admin dashboard:

wplms_points_payout

This list the instructors and their point balance and allows to start the payment process.

wplms_points_payout2

Payout sessions make sure, that only one session can be started per instructor, as the instructor could earn new points during the process. The points converted can be changed, allowing you to payout a fixed amount of points.

Its a 3 step process. Login at PayPal. Open the „Send money“ dialog and send money to instructor. Confirm that you manually send the money and than register the payment and payout points in the system.

wplms_points_payout3

The session can be cancelled at any point. You can also leave the session open and continue at a later point.

wplms_points_payout4

On the frontend I added an interface to the BuddyPress Profile, that allows the instructor to track his payouts and balance.

wplms_points_payout5

The whole setup could be updated using PayPal Adaptive Payments, to make the whole process completely automated. Something to consider for the future :) Pretty happy with the manual process so far and it will be a great help for my customer to keep track of the commission payouts.

The whole setup is currently targeted for WPLMS, but can easily be adapted to other setups using the MyCred Points System.

Enjoy coding …

 

 

readmore

HyperDB is a plugin for spreading your websites load across several servers and databases. Its currently used in production on WordPress.com.

  1. Partitioning, separate your data and spread it across multiple servers.
  2. Replication, master / slave setup for security.
  3. Failover, if one database fails, the other takes over.

Just started experimenting with it :)

HyperDB

readmore

Since version 5.6PHP is verifying peer certificates and host names by default when using SSL/TLS. This is causing problems on some servers / websites, where the config has not been setup correctly. If you can not fix the setup yourself, make sure to talk to your server host to fix that issue.

For PHPMailer (Github) there is a workaround:

This should only be a workaround until your configuration has been fixed. You are suppressing certificate verification and compromising your security!

As WordPress is using PHPMailer as its main email library, this can be tweaked by using the phpmailer_init hook:

Add this to your themes functions.php.

BASIC PHPMAILER SETUP

And here is how phpmailer->smtpOptions should be used,  on a properly configured server:

SSL changes in PHP 5.6: http://php.net/manual/en/migration56.openssl.php
SSL context options in PHP: http://php.net/manual/en/context.ssl.php

Enjoy coding…

readmore

Chrome 45+ is glitching on  WordPress admin menus.

Github Plugin version

readmore

WooCommerce provides great functionality, but loads a lot of resources even if not needed.

If a site loads longer than 5-7 seconds, potential customers already loose interest :)

UNLOAD ALL THAT IS NOT NEEDED

Add this to your functions.php:

Like always, make sure that nothing breaks. If things break or are required by certain pages add an exception for that!

Check WordPress Condional Tags.

Sources:

  1. How to Load WooCommerce Scripts and Styles Conditionally to Improve Page Load Speed
  2. Only load WooCommerce scripts on shop pages and checkout + cart

REMOVE GENERATOR META TAG

Enjoy coding …

readmore

SINGLE WEBSITE SETUP

Simple add this to your wp-config.php

MULTISITE SETUP

Use the MU-Domain-Mapping plugin for that.

Enjoy coding …

readmore

We often have some posts that we would like to promote and keep at the first page of the blog. When you are using pagination, the sticky posts will be added to the standard posts, making the post count per page uneven.

If you want to keep your posts per page count consistent, there is a way to do that.

PREPARE PAGINATION

SWITCH QUERY FOR FIRST PAGE

Enjoy coding …

readmore

Sometimes you want to add your own avatar for a user or build your own special predefined avatar selection :)

WHERE ARE THEY STORED

BuddyPress stores avatars in /wp-content/uploads/avatars/ – USERID – /

HOW ARE THEY STORED

BuddyPress hashes the original filename and stores full and thumbnail images in the above directory.

Now go ahead and build your own integration around that ;)

Enjoy coding …

readmore