Buch & Berger

  • Angebot
  • Agentur
  • Blog
  • Kontakt
  • Search

Rubrik > Developer Notes

Rubrik

  • Über uns (25)
  • Projekte (17)
  • Tipps & Praxis (24)
  • Design & Development (20)
  • Developer Notes (47)

Auswahl

  • Orientierung für Neukunden (8)
  • Tipps für Redakteure (2)
  • Basiswissen Web (10)
  • Buchbranche (22)

Finde

Zeige alle ...

Generic filters

WooCommerce: Plugin Snippets

Datum: 2022-06-22In: Developer Notes

Change specific variation dropdown labels:

(Mehr)

Yoast SEO: Plugin Notes

Datum: 2022-04-26In: Developer Notes

Add Advanced Custom Fields to Yoast SEO Content Analysis Install the free plugin ACF Content Analysis for Yoast SEO to add ACF custom fields to Yoast SEO content analysis. The behavior of the plugin can be customized through the following filters. Check and Modify Analyzed Content Modify the content that should be analyzed by Yoast SEO to your needs and …

(Mehr)

Fork WordPress Plugin to Prevent Update Notifications

Datum: 2021-12-22In: Developer Notes

One way of preventing WordPress plugin update notifications is to fork the plugin by doing the following: Rename plugin folder and main PHP file in plugin root (e.g. append „-fork“ to the original name). Inside main PHP file change the plugin name (e.g. append „-fork“ to the original name). Remove or disable update checks within the plugin. They may also …

(Mehr)

Git for Windows: Notes

Datum: 2020-07-12In: Developer Notes

Update Git for Windows (since version 2.16): Open SSH: invalid format error Git for Windows not understanding new open ssh private key format. Convert to old format via putty on Windows.

(Mehr)

WordPress Post Navigation

Datum: 2020-06-07In: Developer Notes

Markup Simple post navigation implementation (previous / next post links): Alternative navigation with arrows only: Styles Alternative styles with arrows only:

(Mehr)

App Notes: OneTab Chrome Extension

Datum: 2020-01-27In: Developer Notes

Conflicts Causes the following console error (date: 2020-01-27): „Unchecked runtime.lastError: The message port closed before a response was received.“

(Mehr)

My Private Site: WP Plugin Notes

Datum: 2019-10-27In: Developer Notes

Conflicts Native WordPress function wptexturize() stopped working properly. Quotation marks aren’t being localized.

(Mehr)

Yoast SEO: WP Plugin Notes

Datum: 2019-10-14In: Developer Notes

Issues ** Leaves behind lots of database entries after uninstall, that can’t be removed easily.

(Mehr)

Ajax Search Pro: WP Plugin Notes

Datum: 2019-10-13In: Developer Notes

Code Snippets PHP JS

(Mehr)

WP CLI: Notes

Datum: 2019-10-01In: Developer Notes

Installation Note: WP-CLI comes pre-installed with some popular shared hosting providers (e.g. SiteGround). ** Download the wp-cli.phar file using wget or curl: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Note: With root access place the file in /usr/local/bin. On a shared hosting account place it directly in the home directory (~) or ~/bin. ** Verify that the WP-CLI file runs correctly: php wp-cli.phar –info …

(Mehr)

Events Manager: WP Plugin Notes

Datum: 2019-09-07In: Developer Notes

Plugin by Marcus Sykes. Google Maps Integration Required libraries for embedded maps: Geocoding API Maps Embed API Maps JavaScript API Places API Solve loading errors: Check payment data. Credit card expired? Check restriction settings for the API key on Google Cloud Platform. Force location to load map: Open respective location in admin area. Change country setting to random country and …

(Mehr)

Video Embeds: Notes

Datum: 2019-07-26In: Developer Notes

Vimeo Hide text overlays in order to hide text overlays from a Vimeo video with a free account, add the following to the end of the video url inside your iframe code: ?title=0&byline=0&portrait=0 Example: <iframe src=“https://player.vimeo.com/video/36882647?title=0&byline=0&portrait=0″ width=“640″ height=“360″ frameborder=“0″ allow=“fullscreen“ allowfullscreen></iframe>

(Mehr)

Creating a Bootable Windows 10 USB Drive

Datum: 2019-02-17In: Developer Notes

Download Rufus freeware: https://rufus.ie/ Rufus Settings: Partition scheme: GPT partition scheme for UEFI File System: FAT32 Cluster Size: 16KB BIOS Settings: Disable Secure Boot if enabled (Supervisor password must be created). Enable F12 Boot Menu. Use F12 to enter the boot menu.

(Mehr)

WP Statistics: WP Plugin Notes

Datum: 2019-01-12In: Developer Notes

Issues Conflicting with wptexturize, resulting in quote marks not being localized.

(Mehr)

Post Type Switcher: WP Plugin Notes

Datum: 2018-10-29In: Developer Notes

Post Type Switcher adds a simple post-type drop-down to the post editor interface, allowing you to reassign any post to a new post type. Customization Use the pts_post_type_filter to enable all available post types: If too many drop downs are appearing in the quick edit area, from about line 145 change the function to this: Conflicts Admin Columns plugin (2018-07-11):  Prevents Post …

(Mehr)

Random Content and Values

Datum: 2018-10-14In: Developer Notes

Lorem Ipsum Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Massa eget egestas purus viverra accumsan in. Varius sit amet mattis vulputate enim nulla aliquet porttitor lacus. Tempor orci dapibus ultrices in iaculis. Magna fermentum iaculis eu non diam phasellus vestibulum lorem. Laoreet non curabitur gravida arcu ac tortor. …

(Mehr)

Windows Subsystem for Linux (WSL): Notes

Datum: 2018-09-09In: Developer Notes

WSL Setup ** Enable WSL and install Linux distribution of choice: Enable WSL: Search for “turn windows features on or off”. Use windows store app to search for and install desired distribution, e.g. „Ubuntu“. You’ll be prompted to create a new username and password for your Linux account. ** WSL location: With the deprecation of the legacy WSL/lxss, the location of …

(Mehr)

Duplicator: WP Plugin Notes

Datum: 2018-09-02In: Developer Notes

Troubleshooting Root folder permission error (Pro version) If WordPress is installed in a subdirectory, try setting ABSPATH as root path: Duplicator Pro > Settings > Packages > Advanced Settings. Subdirectory install ignored / Adding everything inside root folder (Pro version) Try setting ABSPATH as root path: Duplicator Pro > Settings > Packages > Advanced Settings. Ajax error during package building …

(Mehr)

SiteGround Web Hosting: Notes

Datum: 2018-08-02In: Developer Notes

Cache Controls Infos: https://www.siteground.com/kb/disable-dynamic-caching-website/ Forced Caching Issues Using WP Staging Plugin I started to use the plugin WP Staging to clone WordPress projects on a SiteGround shared hosting account. WP Staging copies the project files to a new folder within the root directory of the source project. Since the clone is kind of hidden there, it doesn’t appear in the …

(Mehr)

MySQL: Notes

Datum: 2018-07-03In: Developer Notes

Delete all records of a specific table in phpMyAdmin: DELETE FROM `bb863_postmeta`; ALTER TABLE `bb863_postmeta` AUTO_INCREMENT = 1 Deletes all table entries and resets indexing back to 1. „Truncate tableName“ would fail on a table with key constraint defined. It will also not reindex the table AUTO_INCREMENT value. More: https://stackoverflow.com/questions/18271951/delete-all-records-in-a-table-of-mysql-in-phpmyadmin Tags: MySQL, phpMyAdmin

(Mehr)
  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Vor   »

    nav-social-menu

    • LinkedIn
    • RSS
  • Impressum
  • Datenschutz
Top ▲
Top ▲
Finde

Zeige alle ...

Generic filters