Skip to content

Instantly share code, notes, and snippets.

@srdjan-jcc
srdjan-jcc / uncode-wpml-object-id.php
Created July 12, 2019 13:06
Uncode 'wpml_object_id' implementation
<?php
add_filter( 'uncode_wpml_object_id', 'uncode_wpml_object_id', 5 );
function uncode_wpml_object_id( $post_id ) {
if ( did_action( 'wpml_loaded' ) ) {
$post_type = get_post_type( $post_id );
$wpml_setting = apply_filters( 'wpml_setting', array(), 'custom_posts_sync_option' );
<?php
/*
Plugin Name: Register Book post type
Version: 0.1
*/
add_action( 'init', 'codex_book_init' );
/**
* Register a book post type.
*
@srdjan-jcc
srdjan-jcc / wpml-enhanced-media-library.php
Created October 24, 2018 12:33
Enhanced Media Library and WPML sync terms
<?php
/*
Plugin Name: Enhanced Media Library and WPML
Description: Synchronizes terms
Version: 0.0.1
*/
add_action( 'set_object_terms', 'wpml_eml_sync_terms', 10, 6 );
function wpml_eml_sync_terms( $object_id, $terms, $tt_ids, $taxonomy, $append, $old_tt_ids ) {
@srdjan-jcc
srdjan-jcc / wpml-ubermenu.php
Last active August 10, 2020 03:27
Ubermenu WPML menu sync
<?php
/**
* Ubermenu Multilingual
*
* @package wpml
* @author OnTheGoSystems
* @copyright 2018 OTGS
* @license GPL-2.0+
*
* @wordpress-plugin
@srdjan-jcc
srdjan-jcc / uncode-wpml-recommended-posts-widget.php
Created October 11, 2018 10:22
Uncode WPML recommended posts widget
@srdjan-jcc
srdjan-jcc / tiny-compress-images-wpml.php
Last active September 25, 2018 13:13
Compress JPEG & PNG images and WPML
<?php
/*
Plugin Name: Compress JPEG & PNG images and WPML
Description: Synchronizes localized images
Version: 0.0.2
*/
add_action( 'updated_tiny_postmeta', 'wpml_updated_tiny_postmeta', 10, 3 );
function wpml_updated_tiny_postmeta( $post_id, $meta_key, $meta_value ) {
@srdjan-jcc
srdjan-jcc / wpml-wptouch.php
Created September 7, 2018 12:14
WPML and WPTouch plugin
<?php
/*
Plugin Name: WPTouch and WPML
Version: 0.1
Description: Applies fixes.
*/
add_filter( 'foundation_is_custom_latest_posts_page', 'wpml_wptouch_is_custom_latest_posts_page_filter' );
function wpml_wptouch_is_custom_latest_posts_page_filter( $true, $latest_posts_page_id, $current_page_id ){
@srdjan-jcc
srdjan-jcc / wpml-relevanssi.php
Created September 6, 2018 11:03
WPML Relevanssi not indexing WooCommerce products
<?php
/*
Plugin Name: Relevanssi and WPML
Version: 0.1
Description: Applies fixes.
*/
add_action( 'wp_ajax_relevanssi_index_posts', 'relevanssi_wpml_remove_filters', 5 );
add_action( 'wp_ajax_relevanssi_index_taxonomies', 'relevanssi_wpml_remove_filters', 5 );
@srdjan-jcc
srdjan-jcc / all-in-one-seo-pack-wpml.php
Created August 30, 2018 08:41
All In One SEO Pack and WPML
<?php
/*
Plugin Name: All In One SEO Pack and WPML
Version: 0.1
Description: Applies fixes.
*/
add_action( 'wpml_loaded', 'wpml_aioseop_init' );
/**
@srdjan-jcc
srdjan-jcc / gp-wpml.php
Last active August 29, 2018 12:04
GeneratePress and WPML
<?php
/*
Plugin Name: GeneratePress and WPML
Version: 0.1
Description: Applies fixes.
*/
add_filter( 'generate_hook_element_display', 'wpml_generate_hook_element_display_filter', 10, 2 );
function wpml_generate_hook_element_display_filter( $display, $post_id ) {