sahilsaid
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Easy Modal] Modal suddenly stopped working properlyI found the issue.
It was due to updating this plugin to the latest version. Seems like the latest version is not compatible with wordpress 3.9.2
I downgraded this plugin back to Version 1.3.0.3 and everything is working fine now.
Forum: Plugins
In reply to: [Easy Modal] Modal suddenly stopped working properlyHey,
Thanks for your reply.
NO Sorry don’t have a live link.
Do you think it can be because of wordpress update to 3.9.2?
Forum: Plugins
In reply to: [Dynamic Featured Image] Featured image not available by JetPack REST APII have fixed this problem by adding the dynamic featured image meta key into allowed types for JSON API with the filter ‘rest_api_allowed_public_metadata’. I used the code below.
function custom_rest_api_allowed_public_metadata( $allowed_meta_keys ) { // only run for REST API requests if ( ! defined( 'REST_API_REQUEST' ) || ! REST_API_REQUEST ) return $allowed_meta_keys; $allowed_meta_keys[] = 'dfiFeatured'; return $allowed_meta_keys; } add_filter( 'rest_api_allowed_public_metadata', 'custom_rest_api_allowed_public_metadata' );Forum: Fixing WordPress
In reply to: WordPress custom loop and Gzip compression errorFound the answer:
paginator(); was the problem.
Removed it and it is now working.
Viewing 4 replies - 1 through 4 (of 4 total)